forked from FIMTooler/csReporter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcsReporter3.cs
1468 lines (1429 loc) · 52.2 KB
/
csReporter3.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/*
MIT License
Copyright (c) 2017 David Cassady
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
*/
//using System;
//using System.Collections.Generic;
//using System.Collections.Concurrent;
//using System.ComponentModel;
//using System.Text;
//using System.Threading;
//using System.Xml;
//namespace csReporter
//{
// class csObject
// {
// private int strCSdn;
// private int strID;
// private int strObjectType;
// private Delta unappliedExport;
// private Delta escrowedExport;
// private Delta unconfirmedExport;
// private Delta pendingImport;
// private Entry syncHologram;
// private Entry unappliedExportHologram;
// private Entry escrowedExportHologram;
// private Entry unconfirmedExportHologram;
// private Entry pendingImportHologram;
// private bool? bConnector;
// private int strConnState;
// private bool bImportSeen;
// private bool bRebuilding;
// private bool bObsoletion;
// private bool bNeedFS;
// private bool bPlaceHolderParent;
// private bool bPlaceHolderLink;
// private bool bPlaceHolderDelete;
// private bool bPending;
// private bool bRefRetry;
// private bool bRenameRetry;
// private int strImportDeltaOp;
// private int strExportDeltaOp;
// private bool bPendingRefDelete;
// private int strMAid;
// private int strMAname;
// private int strPartionID;
// private int strDisconnectionType;
// private int strDisconnectionID;
// private DateTime disconTime;
// private DateTime lastImportDeltaTime;
// private DateTime lastExportDeltaTime;
// private int strFQDN;
// private int strDomain;
// private int strAccountName;
// private int strPartitionName;
// private Sequencer csSequencer;
// private int strUPN;
// private DateTime connectedTime;
// private int connectionOperation;
// private ExportError exportError;
// private StringContainer strContainer;
// public csObject(XmlNode csObjectNode)
// {
// try
// {
// strContainer = new StringContainer(100);
// foreach (XmlAttribute xmlAttr in csObjectNode.Attributes)
// {
// switch (xmlAttr.Name)
// {
// case "cs-dn":
// strCSdn = strContainer.Add(xmlAttr.Value);
// break;
// case "object-type":
// strObjectType = strContainer.Add(xmlAttr.Value);
// break;
// case "id":
// strID = strContainer.Add(xmlAttr.Value);
// break;
// }
// }
// foreach (XmlNode childNode in csObjectNode.ChildNodes)
// {
// switch (childNode.Name)
// {
// case "connector":
// bConnector = Convert.ToBoolean(Convert.ToInt16(childNode.InnerText));
// break;
// case "connector-state":
// strConnState = strContainer.Add(childNode.InnerText);
// break;
// case "seen-by-import":
// bImportSeen = Convert.ToBoolean(Convert.ToInt16(childNode.InnerText));
// break;
// case "rebuild-in-progress":
// bRebuilding = Convert.ToBoolean(Convert.ToInt16(childNode.InnerText));
// break;
// case "obsoletion":
// bObsoletion = Convert.ToBoolean(Convert.ToInt16(childNode.InnerText));
// break;
// case "need-full-sync":
// bNeedFS = Convert.ToBoolean(Convert.ToInt16(childNode.InnerText));
// break;
// case "placeholder-parent":
// bPlaceHolderParent = Convert.ToBoolean(Convert.ToInt16(childNode.InnerText));
// break;
// case "placeholder-link":
// bPlaceHolderLink = Convert.ToBoolean(Convert.ToInt16(childNode.InnerText));
// break;
// case "placeholder-delete":
// bPlaceHolderDelete = Convert.ToBoolean(Convert.ToInt16(childNode.InnerText));
// break;
// case "pending":
// bPending = Convert.ToBoolean(Convert.ToInt16(childNode.InnerText));
// break;
// case "ref-retry":
// bRefRetry = Convert.ToBoolean(Convert.ToInt16(childNode.InnerText));
// break;
// case "rename-retry":
// bRenameRetry = Convert.ToBoolean(Convert.ToInt16(childNode.InnerText));
// break;
// case "import-delta-operation":
// strImportDeltaOp = strContainer.Add(childNode.InnerText);
// break;
// case "export-delta-operation":
// strExportDeltaOp = strContainer.Add(childNode.InnerText);
// break;
// case "pending-ref-delete":
// bPendingRefDelete = Convert.ToBoolean(Convert.ToInt16(childNode.InnerText));
// break;
// case "ma-id":
// strMAid = strContainer.Add(childNode.InnerText);
// break;
// case "ma-name":
// strMAname = strContainer.Add(childNode.InnerText);
// break;
// case "partition-id":
// strPartionID = strContainer.Add(childNode.InnerText);
// break;
// case "disconnection-type":
// strDisconnectionType = strContainer.Add(childNode.InnerText);
// break;
// case "disconnection-id":
// strDisconnectionID = strContainer.Add(childNode.InnerText);
// break;
// case "disconnection-time":
// disconTime = Convert.ToDateTime(childNode.InnerText);
// break;
// case "last-import-delta-time":
// lastImportDeltaTime = Convert.ToDateTime(childNode.InnerText);
// break;
// case "last-export-delta-time":
// lastExportDeltaTime = Convert.ToDateTime(childNode.InnerText);
// break;
// case "full-qualified-domain-name":
// strFQDN = strContainer.Add(childNode.InnerText);
// break;
// case "domain-name":
// strDomain = strContainer.Add(childNode.InnerText);
// break;
// case "account-name":
// strAccountName = strContainer.Add(childNode.InnerText);
// break;
// case "partition-name":
// strPartitionName = strContainer.Add(childNode.InnerText);
// break;
// case "user-principal-name":
// strUPN = strContainer.Add(childNode.InnerText);
// break;
// case "cs-mv-links":
// foreach (XmlNode subNode in childNode)
// {
// if (subNode.Name == "cs-mv-value")
// {
// foreach (XmlAttribute xmlAttr in subNode.Attributes)
// {
// switch (xmlAttr.Name)
// {
// case "lineage-time":
// connectedTime = Convert.ToDateTime(xmlAttr.Value);
// break;
// case "lineage-type":
// connectionOperation = strContainer.Add(xmlAttr.Value);
// break;
// }
// }
// }
// }
// break;
// case "mv-link":
// foreach (XmlAttribute xmlAttr in childNode.Attributes)
// {
// switch (xmlAttr.Name)
// {
// case "lineage-time":
// connectedTime = Convert.ToDateTime(xmlAttr.Value);
// break;
// case "lineage-type":
// connectionOperation = strContainer.Add(xmlAttr.Value);
// break;
// }
// }
// break;
// case "unapplied-export":
// unappliedExport = new Delta(childNode.FirstChild, strContainer);
// break;
// case "escrowed-export":
// escrowedExport = new Delta(childNode.FirstChild, strContainer);
// break;
// case "unconfirmed-export":
// unconfirmedExport = new Delta(childNode.FirstChild, strContainer);
// break;
// case "pending-import":
// pendingImport = new Delta(childNode.FirstChild, strContainer);
// break;
// case "synchronized-hologram":
// if (childNode.FirstChild != null)
// {
// syncHologram = new Entry(childNode.FirstChild, this, strContainer);
// }
// break;
// case "unapplied-export-hologram":
// if (childNode.FirstChild != null)
// {
// unappliedExportHologram = new Entry(childNode.FirstChild, this, strContainer);
// }
// break;
// case "escrowed-export-hologram":
// if (childNode.FirstChild != null)
// {
// escrowedExportHologram = new Entry(childNode.FirstChild, this, strContainer);
// }
// break;
// case "unconfirmed-export-hologram":
// if (childNode.FirstChild != null)
// {
// unconfirmedExportHologram = new Entry(childNode.FirstChild, this, strContainer);
// }
// break;
// case "pending-import-hologram":
// if (childNode.FirstChild != null)
// {
// pendingImportHologram = new Entry(childNode.FirstChild, this, strContainer);
// }
// break;
// case "sequencers":
// csSequencer = new Sequencer(childNode);
// break;
// case "export-errordetail":
// exportError = new ExportError(childNode);
// break;
// }
// }
// strContainer.TrimExcess();
// //if (syncHologram == null) { syncHologram = new Entry(); }
// //if (unappliedExportHologram == null) { unappliedExportHologram = new Entry(); }
// //if (escrowedExportHologram == null) { escrowedExportHologram = new Entry(); }
// //if (unconfirmedExportHologram == null) { unconfirmedExportHologram = new Entry(); }
// //if (pendingImportHologram == null) { pendingImportHologram = new Entry(); }
// }
// catch (Exception ex)
// {
// if (strContainer[strCSdn] != null)
// {
// throw new Exception("Error occurred in csObject object constructor. csDN=" + strCSdn, ex);
// }
// else
// {
// throw new Exception("Error occurred in csObject object constructor.", ex);
// }
// }
// }
// public string csDN
// {
// get
// {
// return strContainer[strCSdn];
// }
// }
// public string ObjectType
// {
// get
// {
// return strContainer[strObjectType];
// }
// }
// public string ID
// {
// get
// {
// return strContainer[strID];
// }
// }
// public bool? Connector
// {
// get
// {
// return bConnector;
// }
// }
// public string ConnectorState
// {
// get
// {
// return strContainer[strConnState];
// }
// }
// public bool ImportSeen
// {
// get
// {
// return bImportSeen;
// }
// }
// public bool Rebuilding
// {
// get
// {
// return bRebuilding;
// }
// }
// public bool Obsoletion
// {
// get
// {
// return bObsoletion;
// }
// }
// public bool NeedFullSync
// {
// get
// {
// return bNeedFS;
// }
// }
// public bool PlaceHolderParent
// {
// get
// {
// return bPlaceHolderParent;
// }
// }
// public bool PlaceHolderLink
// {
// get
// {
// return bPlaceHolderLink;
// }
// }
// public bool PlaceHolderDelete
// {
// get
// {
// return bPlaceHolderDelete;
// }
// }
// public bool Pending
// {
// get
// {
// return Pending;
// }
// }
// public bool ReferenceRetry
// {
// get
// {
// return bRefRetry;
// }
// }
// public bool RenameRetry
// {
// get
// {
// return bRenameRetry;
// }
// }
// public string ImportDeltaOperation
// {
// get
// {
// return strContainer[strImportDeltaOp];
// }
// }
// public string ExportDeltaOperation
// {
// get
// {
// return strContainer[strExportDeltaOp];
// }
// }
// public bool PendingRefeDelete
// {
// get
// {
// return bPendingRefDelete;
// }
// }
// public string MAid
// {
// get
// {
// return strContainer[strMAid];
// }
// }
// public string MAname
// {
// get
// {
// return strContainer[strMAname];
// }
// }
// public string PartitionID
// {
// get
// {
// return strContainer[strPartionID];
// }
// }
// public string DisconnectionType
// {
// get
// {
// return strContainer[strDisconnectionType];
// }
// }
// public string DisconnectionID
// {
// get
// {
// return strContainer[strDisconnectionID];
// }
// }
// public DateTime DisconnectionTime
// {
// get
// {
// return disconTime;
// }
// }
// public DateTime LastImportDeltaTime
// {
// get
// {
// return lastImportDeltaTime;
// }
// }
// public DateTime LastExportDeltaTime
// {
// get
// {
// return lastImportDeltaTime;
// }
// }
// public string FQDN
// {
// get
// {
// return strContainer[strFQDN];
// }
// }
// public string Domain
// {
// get
// {
// return strContainer[strDomain];
// }
// }
// public string AccountName
// {
// get
// {
// return strContainer[strAccountName];
// }
// }
// public string PartitionName
// {
// get
// {
// return strContainer[strPartitionName];
// }
// }
// public Delta UnappliedExport
// {
// get
// {
// return unappliedExport;
// }
// }
// public Delta EscrowedExport
// {
// get
// {
// return escrowedExport;
// }
// }
// public Delta UnconfirmedExport
// {
// get
// {
// return unconfirmedExport;
// }
// }
// public Delta PendingImport
// {
// get
// {
// return pendingImport;
// }
// }
// public Delta Delta(State state)
// {
// switch (state)
// {
// case State.EscrowedExport:
// return escrowedExport;
// case State.None:
// return null;
// case State.PendingImport:
// return pendingImport;
// case State.UnappliedExport:
// return unappliedExport;
// case State.UnconfirmedExport:
// return unconfirmedExport;
// default:
// return null;
// }
// }
// public Entry SynchronizedHologram
// {
// get
// {
// return syncHologram;
// }
// }
// public Entry UnappliedExportHologram
// {
// get
// {
// return unappliedExportHologram;
// }
// }
// public Entry EscrowedExportHologram
// {
// get
// {
// return escrowedExportHologram;
// }
// }
// public Entry UnconfirmedExportHologram
// {
// get
// {
// return unconfirmedExportHologram;
// }
// }
// public Entry PendingImportHologram
// {
// get
// {
// return pendingImportHologram;
// }
// }
// public Entry Hologram(State state)
// {
// switch (state)
// {
// case State.EscrowedExport:
// return escrowedExportHologram;
// case State.None:
// return syncHologram;
// case State.PendingImport:
// return pendingImportHologram;
// case State.UnappliedExport:
// return unappliedExportHologram;
// case State.UnconfirmedExport:
// return unconfirmedExportHologram;
// default:
// return null;
// }
// }
// public Sequencer Sequencers
// {
// get
// {
// return csSequencer;
// }
// }
// public string UserPrincipalName
// {
// get
// {
// return strContainer[strUPN];
// }
// }
// public DateTime ConnectionTime
// {
// get
// {
// return connectedTime;
// }
// }
// public string ConnectionOperation
// {
// get
// {
// return strContainer[connectionOperation];
// }
// }
// public ExportError ExportError
// {
// get
// {
// return exportError;
// }
// }
// public StringContainer Container
// {
// get
// {
// return strContainer;
// }
// }
// }
// class Delta
// {
// private operation opOperation;
// private int strDN;
// private List<Attribute> attr = new List<Attribute>();
// private StringContainer strContainer;
// public Delta(XmlNode deltaNode, StringContainer container)
// {
// try
// {
// strContainer = container;
// foreach (XmlAttribute xmlAttr in deltaNode.Attributes)
// {
// switch (xmlAttr.Name)
// {
// case "operation":
// switch (xmlAttr.Value)
// {
// case "delete-add":
// opOperation = operation.deleteAdd;
// break;
// case "add":
// opOperation = operation.add;
// break;
// case "replace":
// opOperation = operation.replace;
// break;
// case "update":
// opOperation = operation.update;
// break;
// case "delete":
// opOperation = operation.delete;
// break;
// case "none":
// opOperation = operation.none;
// break;
// }
// break;
// case "dn":
// strDN = strContainer.Add(xmlAttr.Value);
// break;
// case "newdn":
// attr.Add(new Attribute(xmlAttr.Value, strContainer));
// break;
// }
// }
// foreach (XmlNode childNode in deltaNode.ChildNodes)
// {
// switch (childNode.Name)
// {
// case "attr":
// attr.Add(new Attribute(childNode, strContainer));
// break;
// case "dn-attr":
// attr.Add(new Attribute(childNode, strContainer));
// break;
// }
// }
// }
// catch (Exception ex)
// {
// throw new Exception("Error occurred in Delta object constructor.", ex);
// }
// }
// public operation Operation
// {
// get
// {
// return opOperation;
// }
// }
// public string DN
// {
// get
// {
// return strContainer[strDN];
// }
// }
// public List<Attribute> Attributes
// {
// get
// {
// return attr;
// }
// }
// public List<string> AttributeNames
// {
// get
// {
// if (attr == null)
// {
// return null;
// }
// else
// {
// List<string> Names = new List<string>();
// foreach (Attribute bute in attr)
// {
// Names.Add(bute.Name);
// }
// return Names;
// }
// }
// }
// public Attribute AttributeByName(string AttributeName)
// {
// foreach (Attribute attrib in attr)
// {
// if (attrib.Name == AttributeName)
// {
// return attrib;
// }
// }
// return null;
// }
// public int AttribIndexByName(string AttributeName)
// {
// for (int i = 0; i < attr.Count; i++)
// {
// if (attr[i].Name == AttributeName)
// {
// return i;
// }
// }
// return -1;
// }
// }
// class Entry
// {
// private int strDN;
// private int strPrimaryObjectClass;
// private string[] strObjectClass = new string[0];
// private List<Attribute> attr = new List<Attribute>();
// private csObject parent;
// private StringContainer strContainer;
// public Entry(XmlNode entryNode, csObject parentCSobject, StringContainer container)
// {
// try
// {
// if (parentCSobject != null)
// {
// parent = parentCSobject;
// }
// strContainer = container;
// if (entryNode.Attributes.GetNamedItem("dn") != null)
// {
// strDN = strContainer.Add(entryNode.Attributes.GetNamedItem("dn").Value);
// attr.Add(new Attribute(strContainer[strDN], strContainer));
// }
// //Attribute tempAttribute = new Attribute();
// foreach (XmlNode childNode in entryNode.ChildNodes)
// {
// switch (childNode.Name)
// {
// case "primary-objectclass":
// strPrimaryObjectClass = strContainer.Add(childNode.InnerText);
// break;
// case "objectclass":
// strObjectClass = new string[entryNode.SelectNodes("oc-value").Count];
// int counter = 0;
// foreach (XmlNode ocVal in entryNode.SelectNodes("oc-value"))
// {
// strObjectClass[counter] = ocVal.InnerText;
// counter++;
// }
// break;
// case "attr":
// //tempAttribute = new Attribute(childNode);
// //attr.Add(tempAttribute);
// attr.Add(new Attribute(childNode, strContainer));
// break;
// case "dn-attr":
// //tempAttribute = new Attribute(childNode);
// //attr.Add(tempAttribute);
// attr.Add(new Attribute(childNode, strContainer));
// break;
// }
// }
// }
// catch (Exception ex)
// {
// throw new Exception("Error occurred in Entry object constructor.", ex);
// }
// }
// public string DN
// {
// get
// {
// return strContainer[strDN];
// }
// }
// public string PrimaryObjectClass
// {
// get
// {
// return strContainer[strPrimaryObjectClass];
// }
// }
// public string[] ObjectClass
// {
// get
// {
// return strObjectClass;
// }
// }
// public List<Attribute> Attributes
// {
// get
// {
// return attr;
// }
// }
// public List<string> AttributeNames
// {
// get
// {
// if (attr == null)
// {
// return null;
// }
// else
// {
// List<string> Names = new List<string>();
// foreach (Attribute bute in attr)
// {
// Names.Add(bute.Name);
// }
// return Names;
// }
// }
// }
// public Attribute AttributeByName(string AttributeName)
// {
// foreach (Attribute attrib in attr)
// {
// if (attrib.Name == AttributeName)
// {
// return attrib;
// }
// }
// return null;
// }
// public int AttribIndexByName(string AttributeName)
// {
// for (int i = 0; i < attr.Count; i++)
// {
// if (attr[i].Name == AttributeName)
// {
// return i;
// }
// }
// return -1;
// }
// public csObject Parent
// {
// get
// {
// return parent;
// }
// }
// }
// class Attribute
// {
// private int strName;
// private int strType;
// private operation opOperation;
// private bool bMultivalued;
// private List<AttributeValue> vals = new List<AttributeValue>();
// private bool bDNattr;
// private StringContainer strContainer;
// public Attribute(XmlNode attributeNode, StringContainer container)
// {
// try
// {
// strContainer = container;
// foreach (XmlAttribute xmlAttr in attributeNode.Attributes)
// {
// switch (xmlAttr.Name)
// {
// case "name":
// strName = strContainer.Add(xmlAttr.Value);
// break;
// case "type":
// strType = strContainer.Add(xmlAttr.Value);
// break;
// case "operation":
// switch (xmlAttr.Value)
// {
// case "delete-add":
// opOperation = operation.deleteAdd;
// break;
// case "add":
// opOperation = operation.add;
// break;
// case "replace":
// opOperation = operation.replace;
// break;
// case "update":
// opOperation = operation.update;
// break;
// case "delete":
// opOperation = operation.delete;
// break;
// case "none":
// opOperation = operation.none;
// break;
// }
// break;
// case "multivalued":
// bMultivalued = Convert.ToBoolean(xmlAttr.Value);
// break;
// }
// }
// switch (attributeNode.Name)
// {
// case "attr":
// bDNattr = false;
// foreach (XmlNode childNode in attributeNode.ChildNodes)
// {
// if (childNode.Name == "value")
// {
// vals.Add(new AttributeValue(childNode, strContainer));
// }
// }
// break;
// case "dn-attr":
// bDNattr = true;
// foreach (XmlNode childNode in attributeNode.ChildNodes)
// {
// if (childNode.Name == "dn-value")
// {
// foreach (XmlNode subNode in childNode)
// {
// if (subNode.Name == "dn")
// {
// vals.Add(new AttributeValue(subNode, strContainer));