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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
|
<?xml version="1.0" encoding="utf-8"?>
<doc>
<assembly>
<name>Refly</name>
</assembly>
<members>
<member name="T:Refly.CodeDom.AttributeArgument">
<summary>An attribute argument.</summary>
</member>
<member name="T:Refly.CodeDom.AttributeDeclaration">
<summary>An attribute declaration</summary>
</member>
<member name="T:Refly.CodeDom.AttributeDeclarationCollection">
<summary>A collection of elements of type AttributeDeclaration</summary>
</member>
<member name="M:Refly.CodeDom.AttributeDeclarationCollection.Add(Refly.CodeDom.ITypeDeclaration)">
<summary>Adds an instance of type AttributeDeclaration to the end of this AttributeDeclarationCollection.</summary>
<param name="value">The AttributeDeclaration to be added to the end of this AttributeDeclarationCollection.</param>
</member>
<member name="M:Refly.CodeDom.AttributeDeclarationCollection.Contains(Refly.CodeDom.AttributeDeclaration)">
<summary>Determines whether a specfic AttributeDeclaration value is in this AttributeDeclarationCollection.</summary>
<param name="value">The AttributeDeclaration value to locate in this AttributeDeclarationCollection.</param>
<returns>true if value is found in this AttributeDeclarationCollection; false otherwise.</returns>
</member>
<member name="M:Refly.CodeDom.AttributeDeclarationCollection.GetEnumerator">
<summary>Returns an enumerator that can iterate through the elements of this AttributeDeclarationCollection.</summary>
<returns>An object that implements System.Collections.IEnumerator.</returns>
</member>
<member name="M:Refly.CodeDom.AttributeDeclarationCollection.Insert(System.Int32,Refly.CodeDom.AttributeDeclaration)">
<summary>Inserts an element into the AttributeDeclarationCollection at the specified index</summary>
<param name="index">The index at which the AttributeDeclaration is to be inserted.</param>
<param name="value">The AttributeDeclaration to insert.</param>
</member>
<member name="M:Refly.CodeDom.AttributeDeclarationCollection.Remove(Refly.CodeDom.AttributeDeclaration)">
<summary>Removes the first occurrence of a specific AttributeDeclaration from this AttributeDeclarationCollection.</summary>
<param name="value">The AttributeDeclaration value to remove from this AttributeDeclarationCollection.</param>
</member>
<member name="T:Refly.CodeDom.AttributeDeclarationCollection.Enumerator">
<summary>Type-specific enumeration class, used by AttributeDeclarationCollection.GetEnumerator.</summary>
</member>
<member name="T:Refly.CodeDom.ClassDeclaration">
<summary>A class declaration</summary>
</member>
<member name="P:Refly.CodeDom.ClassDeclaration.OutputType">
<summary>Gets or sets the output type.</summary>
<value>A <see cref="T:Refly.CodeDom.ClassOutputType" /> instance.</value>
</member>
<member name="T:Refly.CodeDom.CodeGenerator">
<summary>A class that controls the generation of code.</summary>
</member>
<member name="T:Refly.CodeDom.ConstantDeclaration">
<summary>A constant value declaration.</summary>
</member>
<member name="T:Refly.CodeDom.ConstructorDeclaration">
<summary>A constructor declaration</summary>
</member>
<member name="T:Refly.CodeDom.Declaration">
<summary>Abstract base class for declarations. This class is <see langword="abstract" /> and so cannot be instantiated.</summary>
</member>
<member name="T:Refly.CodeDom.DelegateDeclaration">
<summary>A delegate declaration</summary>
</member>
<member name="T:Refly.CodeDom.EnumDeclaration">
<summary>A enum declaration</summary>
</member>
<member name="T:Refly.CodeDom.EventDeclaration">
<summary>A event declaration.</summary>
</member>
<member name="T:Refly.CodeDom.Expr">
<summary>Helper class containing static methods to create <see cref="T:Refly.CodeDom.Expressions.Expression" /> instances. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
</member>
<member name="P:Refly.CodeDom.Expr.Base">
<summary>Create a <c>base</c> reference expression</summary>
</member>
<member name="P:Refly.CodeDom.Expr.False">
<summary>Create a <c>false</c> expression</summary>
</member>
<member name="P:Refly.CodeDom.Expr.Null">
<summary>Create a <c>null</c> expression</summary>
</member>
<member name="P:Refly.CodeDom.Expr.This">
<summary>Create a <c>this</c> reference expression</summary>
</member>
<member name="P:Refly.CodeDom.Expr.True">
<summary>Create a <c>true</c> expression</summary>
</member>
<member name="P:Refly.CodeDom.Expr.Value">
<summary>Create a <c>value</c> reference expression of a <c>set</c> section inside a property</summary>
</member>
<member name="M:Refly.CodeDom.Expr.Arg(Refly.CodeDom.ParameterDeclaration)">
<summary>Creates a reference to a given argument</summary>
<param name="p">The <see cref="T:Refly.CodeDom.ParameterDeclaration" /> instance to reference.</param>
<returns>A <see cref="T:Refly.CodeDom.Expressions.ArgumentReferenceExpression" /> instance referencing <paramref name="p" />.</returns>
<exception cref="T:System.ArgumentNullException">
<paramref name="p" /> is a null reference (Noting in Visual Basic) </exception>
</member>
<member name="M:Refly.CodeDom.Expr.Cast(System.String,Refly.CodeDom.Expressions.Expression)">
<summary>Creates a case of the <see cref="T:Refly.CodeDom.Expressions.Expression" /><paramref name="e" /> to the <see cref="M:Refly.CodeDom.Expr.Type(System.String)" /><paramref name="type" />.</summary>
<param name="type">Target <see cref="M:Refly.CodeDom.Expr.Type(System.String)" /></param>
<param name="e">
<see cref="T:Refly.CodeDom.Expressions.Expression" /> instance to case</param>
<returns>A <see cref="!:CastExpressoin" /> that will generate the cast.</returns>
<exception cref="T:System.ArgumentNullException">
<paramref name="type" /> is a null reference (Noting in Visual Basic) </exception>
</member>
<member name="M:Refly.CodeDom.Expr.Cast(System.Type,Refly.CodeDom.Expressions.Expression)">
<summary>Creates a case of the <see cref="T:Refly.CodeDom.Expressions.Expression" /><paramref name="e" /> to the <see cref="M:Refly.CodeDom.Expr.Type(System.String)" /><paramref name="type" />.</summary>
<param name="type">Target <see cref="M:Refly.CodeDom.Expr.Type(System.String)" /></param>
<param name="e">
<see cref="T:Refly.CodeDom.Expressions.Expression" /> instance to case</param>
<returns>A <see cref="!:CastExpressoin" /> that will generate the cast.</returns>
<exception cref="T:System.ArgumentNullException">
<paramref name="type" /> is a null reference (Noting in Visual Basic) </exception>
</member>
<member name="M:Refly.CodeDom.Expr.Cast(Refly.CodeDom.ITypeDeclaration,Refly.CodeDom.Expressions.Expression)">
<summary>Creates a case of the <see cref="T:Refly.CodeDom.Expressions.Expression" /><paramref name="e" /> to the <see cref="M:Refly.CodeDom.Expr.Type(System.String)" /><paramref name="type" />.</summary>
<param name="type">Target <see cref="M:Refly.CodeDom.Expr.Type(System.String)" /></param>
<param name="e">
<see cref="T:Refly.CodeDom.Expressions.Expression" /> instance to case</param>
<returns>A <see cref="!:CastExpressoin" /> that will generate the cast.</returns>
<exception cref="T:System.ArgumentNullException">
<paramref name="type" /> is a null reference (Noting in Visual Basic) </exception>
</member>
<member name="M:Refly.CodeDom.Expr.Delegate(Refly.CodeDom.ITypeDeclaration,Refly.CodeDom.Expressions.MethodReferenceExpression)">
<summary>Creates a delegate constructr</summary>
<param name="delegateType">The delegate type</param>
<param name="method">The listener method</param>
<returns>A <see cref="T:Refly.CodeDom.Expressions.DelegateCreateExpression" /> representing the delegate creation.</returns>
<exception cref="T:System.ArgumentNullException">
<paramref name="delegateType" /> or <paramref name="method" /> is a null reference (Nothing in Visual Basic) </exception>
</member>
<member name="M:Refly.CodeDom.Expr.Delegate(System.String,Refly.CodeDom.Expressions.MethodReferenceExpression)">
<summary>Creates a delegate constructr</summary>
<param name="delegateType">The delegate type</param>
<param name="method">The listener method</param>
<returns>A <see cref="T:Refly.CodeDom.Expressions.DelegateCreateExpression" /> representing the delegate creation.</returns>
<exception cref="T:System.ArgumentNullException">
<paramref name="delegateType" /> or <paramref name="method" /> is a null reference (Nothing in Visual Basic) </exception>
</member>
<member name="M:Refly.CodeDom.Expr.Delegate(System.Type,Refly.CodeDom.Expressions.MethodReferenceExpression)">
<summary>Creates a delegate constructr</summary>
<param name="delegateType">The delegate type</param>
<param name="method">The listener method</param>
<returns>A <see cref="T:Refly.CodeDom.Expressions.DelegateCreateExpression" /> representing the delegate creation.</returns>
<exception cref="T:System.ArgumentNullException">
<paramref name="delegateType" /> or <paramref name="method" /> is a null reference (Nothing in Visual Basic) </exception>
</member>
<member name="M:Refly.CodeDom.Expr.New(System.String,Refly.CodeDom.Expressions.Expression[])">
<summary>Creates a <c>new type(...)</c> expression.</summary>
<param name="type">Target <see cref="M:Refly.CodeDom.Expr.Type(System.String)" /> name.</param>
<param name="parameters">Parameters of the construcotr.</param>
<exception cref="T:System.ArgumentNullException">
<paramref name="type" /> is a null reference (Noting in Visual Basic) </exception>
</member>
<member name="M:Refly.CodeDom.Expr.New(System.Type,Refly.CodeDom.Expressions.Expression[])">
<summary>Creates a <c>new type(...)</c> expression.</summary>
<param name="type">Target <see cref="M:Refly.CodeDom.Expr.Type(System.String)" />.</param>
<param name="parameters">Parameters of the construcotr.</param>
<exception cref="T:System.ArgumentNullException">
<paramref name="type" /> is a null reference (Noting in Visual Basic) </exception>
</member>
<member name="M:Refly.CodeDom.Expr.New(Refly.CodeDom.ITypeDeclaration,Refly.CodeDom.Expressions.Expression[])">
<summary>Creates a <c>new t(...)</c> expression.</summary>
<param name="type">Target <see cref="M:Refly.CodeDom.Expr.Type(System.String)" />.</param>
<param name="parameters">Parameters of the construcotr.</param>
<exception cref="T:System.ArgumentNullException">
<paramref name="type" /> is a null reference (Noting in Visual Basic) </exception>
</member>
<member name="M:Refly.CodeDom.Expr.NewArray(System.Type,System.Int32)">
<summary>Creates a <c>new type[size]</c> expression</summary>
<param name="type">Array item type</param>
<param name="size">Array size</param>
<returns>A <see cref="T:Refly.CodeDom.Expressions.ArrayCreationWithSizeExpression" /> instance</returns>
<exception cref="!:ArgumentNullExpression">
<paramref name="type" /> is a null reference. </exception>
</member>
<member name="M:Refly.CodeDom.Expr.NewArray(System.String,System.Int32)">
<summary>Creates a <c>new type[size]</c> expression</summary>
<param name="type">Array item type</param>
<param name="size">Array size</param>
<returns>A <see cref="T:Refly.CodeDom.Expressions.ArrayCreationWithSizeExpression" /> instance</returns>
<exception cref="!:ArgumentNullExpression">
<paramref name="type" /> is a null reference. </exception>
</member>
<member name="M:Refly.CodeDom.Expr.NewArray(Refly.CodeDom.ITypeDeclaration,System.Int32)">
<summary>Creates a <c>new type[size]</c> expression</summary>
<param name="type">Array item type</param>
<param name="size">Array size</param>
<returns>A <see cref="T:Refly.CodeDom.Expressions.ArrayCreationWithSizeExpression" /> instance</returns>
<exception cref="!:ArgumentNullExpression">
<paramref name="type" /> is a null reference. </exception>
</member>
<member name="M:Refly.CodeDom.Expr.NewArray(System.Type,Refly.CodeDom.Expressions.Expression)">
<summary>Creates a <c>new type[expression]</c> expression</summary>
<param name="type">Array item type</param>
<param name="sizeExpression">Array size <see cref="T:Refly.CodeDom.Expressions.Expression" /></param>
<returns>A <see cref="T:Refly.CodeDom.Expressions.ArrayCreationWithSizeExpression" /> instance</returns>
<exception cref="!:ArgumentNullExpression">
<paramref name="type" /> or <paramref name="sizeExpression" /> is a null reference. </exception>
</member>
<member name="M:Refly.CodeDom.Expr.NewArray(System.String,Refly.CodeDom.Expressions.Expression)">
<summary>Creates a <c>new type[expression]</c> expression</summary>
<param name="type">Array item type</param>
<param name="sizeExpression">Array size <see cref="T:Refly.CodeDom.Expressions.Expression" /></param>
<returns>A <see cref="T:Refly.CodeDom.Expressions.ArrayCreationWithSizeExpression" /> instance</returns>
<exception cref="!:ArgumentNullExpression">
<paramref name="type" /> or <paramref name="sizeExpression" /> is a null reference. </exception>
</member>
<member name="M:Refly.CodeDom.Expr.NewArray(Refly.CodeDom.ITypeDeclaration,Refly.CodeDom.Expressions.Expression)">
<summary>Creates a <c>new type[expression]</c> expression</summary>
<param name="type">Array item type</param>
<param name="sizeExpression">Array size <see cref="T:Refly.CodeDom.Expressions.Expression" /></param>
<returns>A <see cref="T:Refly.CodeDom.Expressions.ArrayCreationWithSizeExpression" /> instance</returns>
<exception cref="!:ArgumentNullExpression">
<paramref name="type" /> or <paramref name="sizeExpression" /> is a null reference. </exception>
</member>
<member name="M:Refly.CodeDom.Expr.NewArray(System.Type,Refly.CodeDom.Expressions.Expression[])">
<summary>Creates a <c>new type[] { initializers }</c> expression</summary>
<param name="type">Array item type</param>
<param name="">Array items</param>
<returns>A <see cref="T:Refly.CodeDom.Expressions.ArrayCreationWithInitializersExpression" /> instance</returns>
<exception cref="!:ArgumentNullExpression">
<paramref name="type" /> is a null reference. </exception>
</member>
<member name="M:Refly.CodeDom.Expr.NewArray(System.String,Refly.CodeDom.Expressions.Expression[])">
<summary>Creates a <c>new type[] { initializers }</c> expression</summary>
<param name="type">Array item type</param>
<param name="">Array items</param>
<returns>A <see cref="T:Refly.CodeDom.Expressions.ArrayCreationWithInitializersExpression" /> instance</returns>
<exception cref="!:ArgumentNullExpression">
<paramref name="type" /> is a null reference. </exception>
</member>
<member name="M:Refly.CodeDom.Expr.NewArray(Refly.CodeDom.ITypeDeclaration,Refly.CodeDom.Expressions.Expression[])">
<summary>Creates a <c>new type[] { initializers }</c> expression</summary>
<param name="type">Array item type</param>
<param name="">Array items</param>
<returns>A <see cref="T:Refly.CodeDom.Expressions.ArrayCreationWithInitializersExpression" /> instance</returns>
<exception cref="!:ArgumentNullExpression">
<paramref name="type" /> is a null reference. </exception>
</member>
<member name="M:Refly.CodeDom.Expr.Prim(System.Boolean)">
<summary>Creates a primitive <see cref="T:System.Boolean" /> value.</summary>
<param name="value">
<see cref="T:System.Boolean" /> value to generate.</param>
<returns>A <see cref="T:Refly.CodeDom.Expressions.PrimitiveExpression" /> instance that will generate the value.</returns>
</member>
<member name="M:Refly.CodeDom.Expr.Prim(System.String)">
<summary>Creates a primitive <see cref="T:System.String" /> value.</summary>
<param name="value">
<see cref="T:System.String" /> value to generate.</param>
<returns>A <see cref="T:Refly.CodeDom.Expressions.PrimitiveExpression" /> instance that will generate the value.</returns>
</member>
<member name="M:Refly.CodeDom.Expr.Prim(System.Int32)">
<summary>Creates a primitive <see cref="T:System.Int32" /> value.</summary>
<param name="value">
<see cref="T:System.Int32" /> value to generate.</param>
<returns>A <see cref="T:Refly.CodeDom.Expressions.PrimitiveExpression" /> instance that will generate the value.</returns>
</member>
<member name="M:Refly.CodeDom.Expr.Prim(System.Int64)">
<summary>Creates a primitive <see cref="T:System.Int64" /> value.</summary>
<param name="value">
<see cref="T:System.Int64" /> value to generate.</param>
<returns>A <see cref="T:Refly.CodeDom.Expressions.PrimitiveExpression" /> instance that will generate the value.</returns>
</member>
<member name="M:Refly.CodeDom.Expr.Prim(System.Decimal)">
<summary>Creates a primitive <see cref="T:System.Decimal" /> value.</summary>
<param name="value">
<see cref="T:System.Decimal" /> value to generate.</param>
<returns>A <see cref="T:Refly.CodeDom.Expressions.PrimitiveExpression" /> instance that will generate the value.</returns>
</member>
<member name="M:Refly.CodeDom.Expr.Prim(System.Double)">
<summary>Creates a primitive <see cref="T:System.Double" /> value.</summary>
<param name="value">
<see cref="T:System.Double" /> value to generate.</param>
<returns>A <see cref="T:Refly.CodeDom.Expressions.PrimitiveExpression" /> instance that will generate the value.</returns>
</member>
<member name="M:Refly.CodeDom.Expr.Prim(System.Int16)">
<summary>Creates a primitive <see cref="T:System.Int16" /> value.</summary>
<param name="value">
<see cref="T:System.Int16" /> value to generate.</param>
<returns>A <see cref="T:Refly.CodeDom.Expressions.PrimitiveExpression" /> instance that will generate the value.</returns>
</member>
<member name="M:Refly.CodeDom.Expr.Prim(System.Byte)">
<summary>Creates a primitive <see cref="T:System.Byte" /> value.</summary>
<param name="value">
<see cref="T:System.Byte" /> value to generate.</param>
<returns>A <see cref="T:Refly.CodeDom.Expressions.PrimitiveExpression" /> instance that will generate the value.</returns>
</member>
<member name="M:Refly.CodeDom.Expr.Prim(System.DateTime)">
<summary>Creates a primitive <see cref="T:System.DateTime" /> value.</summary>
<param name="value">
<see cref="T:System.DateTime" /> value to generate.</param>
<returns>A <see cref="T:Refly.CodeDom.Expressions.PrimitiveExpression" /> instance that will generate the value.</returns>
</member>
<member name="M:Refly.CodeDom.Expr.Snippet(System.String)">
<summary>Creates a snippet of code that will be outputed as such.</summary>
<param name="snippet">Snippet of code</param>
<returns>A <see cref="T:Refly.CodeDom.Expressions.NativeExpression" /> instance that will output the snippet.</returns>
</member>
<member name="M:Refly.CodeDom.Expr.Type(System.String)">
<summary>Creates a reference expression to a given <see cref="M:Refly.CodeDom.Expr.Type(System.String)" />.</summary>
<param name="type">Target <see cref="M:Refly.CodeDom.Expr.Type(System.String)" /> name</param>
<returns>A <see cref="T:Refly.CodeDom.Expressions.NativeExpression" /> that will generate the expression.</returns>
<exception cref="T:System.ArgumentNullException">
<paramref name="type" /> is a null reference (Nothing in Visual Basic) </exception>
</member>
<member name="M:Refly.CodeDom.Expr.Type(System.Type)">
<summary>Creates a reference expression to a given <see cref="M:Refly.CodeDom.Expr.Type(System.String)" />.</summary>
<param name="type">Target <see cref="M:Refly.CodeDom.Expr.Type(System.String)" /> name</param>
<returns>A <see cref="T:Refly.CodeDom.Expressions.NativeExpression" /> that will generate the expression.</returns>
<exception cref="T:System.ArgumentNullException">
<paramref name="type" /> is a null reference (Nothing in Visual Basic) </exception>
</member>
<member name="M:Refly.CodeDom.Expr.Type(Refly.CodeDom.ITypeDeclaration)">
<summary>Creates a reference expression to a given <see cref="M:Refly.CodeDom.Expr.Type(System.String)" />.</summary>
<param name="type">Target <see cref="M:Refly.CodeDom.Expr.Type(System.String)" /> name</param>
<returns>A <see cref="T:Refly.CodeDom.Expressions.NativeExpression" /> that will generate the expression.</returns>
<exception cref="T:System.ArgumentNullException">
<paramref name="type" /> is a null reference (Nothing in Visual Basic) </exception>
</member>
<member name="M:Refly.CodeDom.Expr.TypeOf(System.String)">
<summary>Creates a <c>typeof(type)</c> expression.</summary>
<param name="type">Target <see cref="M:Refly.CodeDom.Expr.Type(System.String)" /> name.</param>
<returns>A <see cref="T:Refly.CodeDom.Expressions.NativeExpression" /> that will generate the expression.</returns>
<exception cref="T:System.ArgumentNullException">
<paramref name="type" /> is a null reference (Nothing in Visual Basic) </exception>
</member>
<member name="M:Refly.CodeDom.Expr.TypeOf(System.Type)">
<summary>Creates a <c>typeof(type)</c> expression.</summary>
<param name="type">Target <see cref="M:Refly.CodeDom.Expr.Type(System.String)" /></param>
<returns>A <see cref="T:Refly.CodeDom.Expressions.NativeExpression" /> that will generate the expression.</returns>
<exception cref="T:System.ArgumentNullException">
<paramref name="type" /> is a null reference (Nothing in Visual Basic) </exception>
</member>
<member name="M:Refly.CodeDom.Expr.TypeOf(Refly.CodeDom.ITypeDeclaration)">
<summary>Creates a <c>typeof(type)</c> expression.</summary>
<param name="type">Target <see cref="M:Refly.CodeDom.Expr.Type(System.String)" /></param>
<returns>A <see cref="T:Refly.CodeDom.Expressions.NativeExpression" /> that will generate the expression.</returns>
<exception cref="T:System.ArgumentNullException">
<paramref name="type" /> is a null reference (Nothing in Visual Basic) </exception>
</member>
<member name="M:Refly.CodeDom.Expr.Var(Refly.CodeDom.Statements.VariableDeclarationStatement)">
<summary>Creates a reference to a given variable</summary>
<param name="p">The <see cref="T:Refly.CodeDom.Statements.VariableDeclarationStatement" /> instance to reference.</param>
<returns>A <see cref="T:Refly.CodeDom.Expressions.VariableReferenceExpression" /> instance referencing <paramref name="v" />.</returns>
<exception cref="T:System.ArgumentNullException">
<paramref name="v" /> is a null reference (Noting in Visual Basic) </exception>
</member>
<member name="T:Refly.CodeDom.FieldDeclaration">
<summary>A field declaration</summary>
</member>
<member name="T:Refly.CodeDom.ImplementationMemberDeclaration">
<summary>Abstract class for implementation members declarations. This class is <see langword="abstract" /> and so cannot be instantiated.</summary>
</member>
<member name="T:Refly.CodeDom.IndexerDeclaration">
<summary>A index declaration.</summary>
</member>
<member name="T:Refly.CodeDom.MemberDeclaration">
<summary>Abstract class for member declaration This class is <see langword="abstract" /> and so cannot be instantiated.</summary>
</member>
<member name="T:Refly.CodeDom.MethodDeclaration">
<summary>A method declaration</summary>
</member>
<member name="T:Refly.CodeDom.MethodSignature">
<summary>A method signature</summary>
</member>
<member name="T:Refly.CodeDom.NamespaceDeclaration">
<summary>A namespace declaration</summary>
</member>
<member name="T:Refly.CodeDom.ParameterDeclaration">
<summary>A parameter declaration</summary>
</member>
<member name="T:Refly.CodeDom.PropertyDeclaration">
<summary>A property declaration</summary>
</member>
<member name="T:Refly.CodeDom.Stm">
<summary>Helper containing static methods for creating statements. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
</member>
<member name="M:Refly.CodeDom.Stm.Assign(Refly.CodeDom.Expressions.Expression,Refly.CodeDom.Expressions.Expression)">
<summary>Creates an assign statement: <c>left = right</c></summary>
<param name="left">Left <see cref="T:Refly.CodeDom.Expressions.Expression" /> instance</param>
<param name="right">Right <see cref="T:Refly.CodeDom.Expressions.Expression" /> instance</param>
<returns>A <see cref="T:Refly.CodeDom.Statements.AssignStatement" /> instance.</returns>
<exception cref="T:System.ArgumentNullException">
<paramref name="left" /> or <paramref name="right" /> is a null reference (Nothing in Visual Basic) </exception>
</member>
<member name="T:Refly.CodeDom.TypeHelper">
<summary>Helper static class for Type related tasks This class cannot be inherited.</summary>
</member>
<member name="M:Refly.CodeDom.TypeHelper.GetFirstCustomAttribute(System.Type,System.Type)">
<summary>Gets the first instance of <paramref name="customAttributeType" /> from the type <paramref name="t" /> custom attributes.</summary>
<param name="t">type to test</param>
<param name="customAttributeType">custom attribute type to search</param>
<returns>First instance of <paramref name="customAttributeTyp" /> from the type <paramref name="t" /> custom attributes.</returns>
<exception cref="T:System.ArgumentNullException">
<paramref name="t" /> or <paramref name="customAttributeType" /> is a null reference </exception>
<exception cref="T:System.ArgumentException">
<paramref name="t" /> is not tagged by an attribute of type <paramref name="customAttributeType" /></exception>
</member>
<member name="M:Refly.CodeDom.TypeHelper.GetFirstCustomAttribute(System.Reflection.PropertyInfo,System.Type)">
<summary>Gets the first instance of <paramref name="customAttributeType" /> from the property <paramref name="mi" /> custom attributes.</summary>
<param name="mi">property to test</param>
<param name="customAttributeType">custom attribute type to search</param>
<returns>First instance of <paramref name="customAttributeTyp" /> from the property <paramref name="mi" /> custom attributes.</returns>
<exception cref="T:System.ArgumentNullException">
<paramref name="mi" /> or <paramref name="customAttributeType" /> is a null reference </exception>
<exception cref="T:System.ArgumentException">
<paramref name="mi" /> is not tagged by an attribute of type <paramref name="customAttributeType" /></exception>
</member>
<member name="M:Refly.CodeDom.TypeHelper.HasCustomAttribute(System.Type,System.Type)">
<summary>Gets a value indicating if the type <paramref name="t" /> is tagged by a <paramref name="customAttributeType" /> instance.</summary>
<param name="t">type to test</param>
<param name="customAttributeType">custom attribute type to search</param>
<returns>true if <param name="t" /> is tagged by a <paramref name="customAttributeType" /> attribute, false otherwise.</returns>
<exception cref="T:System.ArgumentNullException">
<paramref name="t" /> or <paramref name="customAttributeType" /> is a null reference </exception>
</member>
<member name="M:Refly.CodeDom.TypeHelper.HasCustomAttribute(System.Reflection.PropertyInfo,System.Type)">
<summary>Gets a value indicating if the property info <paramref name="t" /> is tagged by a <paramref name="customAttributeType" /> instance.</summary>
<param name="t">property to test</param>
<param name="customAttributeType">custom attribute type to search</param>
<returns>true if <param name="t" /> is tagged by a <paramref name="customAttributeType" /> attribute, false otherwise.</returns>
<exception cref="T:System.ArgumentNullException">
<paramref name="t" /> or <paramref name="customAttributeType" /> is a null reference </exception>
</member>
<member name="T:Refly.CodeDom.ITypeDeclaration">
<summary>A type declaration.</summary>
</member>
<member name="P:Refly.CodeDom.ITypeDeclaration.FullName">
<summary>Gets the type full name.</summary>
<value>Type full name</value>
</member>
<member name="P:Refly.CodeDom.ITypeDeclaration.Name">
<summary>Gets the type name.</summary>
<value>Type name</value>
</member>
<member name="P:Refly.CodeDom.ITypeDeclaration.TypeReference">
<summary>Gets the <see cref="T:System.CodeDom.CodeTypeReference" /></summary>
<value>Corresponding <see cref="T:System.CodeDom.CodeTypeReference" /> instance.</value>
</member>
<member name="T:Refly.CodeDom.ClassOutputType">
<summary>Different possible output types</summary>
</member>
<member name="F:Refly.CodeDom.ClassOutputType.Class">
<summary>Generates a class</summary>
</member>
<member name="F:Refly.CodeDom.ClassOutputType.Struct">
<summary>Generates a struct</summary>
</member>
<member name="F:Refly.CodeDom.ClassOutputType.ClassAndInterface">
<summary>Generates a class and it's interface</summary>
</member>
<member name="F:Refly.CodeDom.ClassOutputType.Interface">
<summary>Generates the interface only</summary>
</member>
<member name="T:Refly.CodeDom.Collections.AssemblyCollection">
<summary>A collection of elements of type Assembly</summary>
</member>
<member name="P:Refly.CodeDom.Collections.AssemblyCollection.Item(System.Int32)">
<summary>Gets or sets the Assembly at the given index in this AssemblyCollection.</summary>
</member>
<member name="M:Refly.CodeDom.Collections.AssemblyCollection.Add(System.Reflection.Assembly)">
<summary>Adds an instance of type Assembly to the end of this AssemblyCollection.</summary>
<param name="value">The Assembly to be added to the end of this AssemblyCollection.</param>
</member>
<member name="M:Refly.CodeDom.Collections.AssemblyCollection.AddRange(System.Reflection.Assembly[])">
<summary>Adds the elements of an array to the end of this AssemblyCollection.</summary>
<param name="items">The array whose elements are to be added to the end of this AssemblyCollection.</param>
</member>
<member name="M:Refly.CodeDom.Collections.AssemblyCollection.AddRange(Refly.CodeDom.Collections.AssemblyCollection)">
<summary>Adds the elements of another AssemblyCollection to the end of this AssemblyCollection.</summary>
<param name="items">The AssemblyCollection whose elements are to be added to the end of this AssemblyCollection.</param>
</member>
<member name="M:Refly.CodeDom.Collections.AssemblyCollection.Contains(System.Reflection.Assembly)">
<summary>Determines whether a specfic Assembly value is in this AssemblyCollection.</summary>
<param name="value">The Assembly value to locate in this AssemblyCollection.</param>
<returns>true if value is found in this AssemblyCollection; false otherwise.</returns>
</member>
<member name="M:Refly.CodeDom.Collections.AssemblyCollection.GetEnumerator">
<summary>Returns an enumerator that can iterate through the elements of this AssemblyCollection.</summary>
<returns>An object that implements System.Collections.IEnumerator.</returns>
</member>
<member name="M:Refly.CodeDom.Collections.AssemblyCollection.IndexOf(System.Reflection.Assembly)">
<summary>Return the zero-based index of the first occurrence of a specific value in this AssemblyCollection</summary>
<param name="value">The Assembly value to locate in the AssemblyCollection.</param>
<returns>The zero-based index of the first occurrence of the _ELEMENT value if found; -1 otherwise.</returns>
</member>
<member name="M:Refly.CodeDom.Collections.AssemblyCollection.Insert(System.Int32,System.Reflection.Assembly)">
<summary>Inserts an element into the AssemblyCollection at the specified index</summary>
<param name="index">The index at which the Assembly is to be inserted.</param>
<param name="value">The Assembly to insert.</param>
</member>
<member name="M:Refly.CodeDom.Collections.AssemblyCollection.Remove(System.Reflection.Assembly)">
<summary>Removes the first occurrence of a specific Assembly from this AssemblyCollection.</summary>
<param name="value">The Assembly value to remove from this AssemblyCollection.</param>
</member>
<member name="T:Refly.CodeDom.Collections.AssemblyCollection.Enumerator">
<summary>Type-specific enumeration class, used by AssemblyCollection.GetEnumerator.</summary>
</member>
<member name="T:Refly.CodeDom.Collections.CatchClauseCollection">
<summary>A collection of elements of type CatchClause</summary>
</member>
<member name="P:Refly.CodeDom.Collections.CatchClauseCollection.Item(System.Int32)">
<summary>Gets or sets the CatchClause at the given index in this CatchClauseCollection.</summary>
</member>
<member name="M:Refly.CodeDom.Collections.CatchClauseCollection.Add(Refly.CodeDom.Statements.CatchClause)">
<summary>Adds an instance of type CatchClause to the end of this CatchClauseCollection.</summary>
<param name="value">The CatchClause to be added to the end of this CatchClauseCollection.</param>
</member>
<member name="M:Refly.CodeDom.Collections.CatchClauseCollection.AddRange(Refly.CodeDom.Statements.CatchClause[])">
<summary>Adds the elements of an array to the end of this CatchClauseCollection.</summary>
<param name="items">The array whose elements are to be added to the end of this CatchClauseCollection.</param>
</member>
<member name="M:Refly.CodeDom.Collections.CatchClauseCollection.AddRange(Refly.CodeDom.Collections.CatchClauseCollection)">
<summary>Adds the elements of another CatchClauseCollection to the end of this CatchClauseCollection.</summary>
<param name="items">The CatchClauseCollection whose elements are to be added to the end of this CatchClauseCollection.</param>
</member>
<member name="M:Refly.CodeDom.Collections.CatchClauseCollection.Contains(Refly.CodeDom.Statements.CatchClause)">
<summary>Determines whether a specfic CatchClause value is in this CatchClauseCollection.</summary>
<param name="value">The CatchClause value to locate in this CatchClauseCollection.</param>
<returns>true if value is found in this CatchClauseCollection; false otherwise.</returns>
</member>
<member name="M:Refly.CodeDom.Collections.CatchClauseCollection.GetEnumerator">
<summary>Returns an enumerator that can iterate through the elements of this CatchClauseCollection.</summary>
<returns>An object that implements System.Collections.IEnumerator.</returns>
</member>
<member name="M:Refly.CodeDom.Collections.CatchClauseCollection.IndexOf(Refly.CodeDom.Statements.CatchClause)">
<summary>Return the zero-based index of the first occurrence of a specific value in this CatchClauseCollection</summary>
<param name="value">The CatchClause value to locate in the CatchClauseCollection.</param>
<returns>The zero-based index of the first occurrence of the _ELEMENT value if found; -1 otherwise.</returns>
</member>
<member name="M:Refly.CodeDom.Collections.CatchClauseCollection.Insert(System.Int32,Refly.CodeDom.Statements.CatchClause)">
<summary>Inserts an element into the CatchClauseCollection at the specified index</summary>
<param name="index">The index at which the CatchClause is to be inserted.</param>
<param name="value">The CatchClause to insert.</param>
</member>
<member name="M:Refly.CodeDom.Collections.CatchClauseCollection.Remove(Refly.CodeDom.Statements.CatchClause)">
<summary>Removes the first occurrence of a specific CatchClause from this CatchClauseCollection.</summary>
<param name="value">The CatchClause value to remove from this CatchClauseCollection.</param>
</member>
<member name="T:Refly.CodeDom.Collections.CatchClauseCollection.Enumerator">
<summary>Type-specific enumeration class, used by CatchClauseCollection.GetEnumerator.</summary>
</member>
<member name="T:Refly.CodeDom.Collections.ConstructorDeclarationCollection">
<summary>A collection of elements of type ConstructorDeclaration</summary>
</member>
<member name="P:Refly.CodeDom.Collections.ConstructorDeclarationCollection.Item(System.Int32)">
<summary>Gets or sets the ConstructorDeclaration at the given index in this ConstructorDeclarationCollection.</summary>
</member>
<member name="M:Refly.CodeDom.Collections.ConstructorDeclarationCollection.Add(Refly.CodeDom.ConstructorDeclaration)">
<summary>Adds an instance of type ConstructorDeclaration to the end of this ConstructorDeclarationCollection.</summary>
<param name="value">The ConstructorDeclaration to be added to the end of this ConstructorDeclarationCollection.</param>
</member>
<member name="M:Refly.CodeDom.Collections.ConstructorDeclarationCollection.AddRange(Refly.CodeDom.ConstructorDeclaration[])">
<summary>Adds the elements of an array to the end of this ConstructorDeclarationCollection.</summary>
<param name="items">The array whose elements are to be added to the end of this ConstructorDeclarationCollection.</param>
</member>
<member name="M:Refly.CodeDom.Collections.ConstructorDeclarationCollection.AddRange(Refly.CodeDom.Collections.ConstructorDeclarationCollection)">
<summary>Adds the elements of another ConstructorDeclarationCollection to the end of this ConstructorDeclarationCollection.</summary>
<param name="items">The ConstructorDeclarationCollection whose elements are to be added to the end of this ConstructorDeclarationCollection.</param>
</member>
<member name="M:Refly.CodeDom.Collections.ConstructorDeclarationCollection.Contains(Refly.CodeDom.ConstructorDeclaration)">
<summary>Determines whether a specfic ConstructorDeclaration value is in this ConstructorDeclarationCollection.</summary>
<param name="value">The ConstructorDeclaration value to locate in this ConstructorDeclarationCollection.</param>
<returns>true if value is found in this ConstructorDeclarationCollection; false otherwise.</returns>
</member>
<member name="M:Refly.CodeDom.Collections.ConstructorDeclarationCollection.GetEnumerator">
<summary>Returns an enumerator that can iterate through the elements of this ConstructorDeclarationCollection.</summary>
<returns>An object that implements System.Collections.IEnumerator.</returns>
</member>
<member name="M:Refly.CodeDom.Collections.ConstructorDeclarationCollection.IndexOf(Refly.CodeDom.ConstructorDeclaration)">
<summary>Return the zero-based index of the first occurrence of a specific value in this ConstructorDeclarationCollection</summary>
<param name="value">The ConstructorDeclaration value to locate in the ConstructorDeclarationCollection.</param>
<returns>The zero-based index of the first occurrence of the _ELEMENT value if found; -1 otherwise.</returns>
</member>
<member name="M:Refly.CodeDom.Collections.ConstructorDeclarationCollection.Insert(System.Int32,Refly.CodeDom.ConstructorDeclaration)">
<summary>Inserts an element into the ConstructorDeclarationCollection at the specified index</summary>
<param name="index">The index at which the ConstructorDeclaration is to be inserted.</param>
<param name="value">The ConstructorDeclaration to insert.</param>
</member>
<member name="M:Refly.CodeDom.Collections.ConstructorDeclarationCollection.Remove(Refly.CodeDom.ConstructorDeclaration)">
<summary>Removes the first occurrence of a specific ConstructorDeclaration from this ConstructorDeclarationCollection.</summary>
<param name="value">The ConstructorDeclaration value to remove from this ConstructorDeclarationCollection.</param>
</member>
<member name="T:Refly.CodeDom.Collections.ConstructorDeclarationCollection.Enumerator">
<summary>Type-specific enumeration class, used by ConstructorDeclarationCollection.GetEnumerator.</summary>
</member>
<member name="T:Refly.CodeDom.Collections.DelegateDeclarationCollection">
<summary>A collection of elements of type DelegateDeclaration</summary>
</member>
<member name="P:Refly.CodeDom.Collections.DelegateDeclarationCollection.Item(System.Int32)">
<summary>Gets or sets the DelegateDeclaration at the given index in this DelegateDeclarationCollection.</summary>
</member>
<member name="P:Refly.CodeDom.Collections.DelegateDeclarationCollection.Item(System.String)">
<summary>Gets or sets the DelegateDeclaration with the given name in this DelegateDeclarationCollection.</summary>
</member>
<member name="M:Refly.CodeDom.Collections.DelegateDeclarationCollection.Add(Refly.CodeDom.DelegateDeclaration)">
<summary>Adds an instance of type DelegateDeclaration to the end of this DelegateDeclarationCollection.</summary>
<param name="value">The DelegateDeclaration to be added to the end of this DelegateDeclarationCollection.</param>
</member>
<member name="M:Refly.CodeDom.Collections.DelegateDeclarationCollection.AddRange(Refly.CodeDom.DelegateDeclaration[])">
<summary>Adds the elements of an array to the end of this DelegateDeclarationCollection.</summary>
<param name="items">The array whose elements are to be added to the end of this DelegateDeclarationCollection.</param>
</member>
<member name="M:Refly.CodeDom.Collections.DelegateDeclarationCollection.AddRange(Refly.CodeDom.Collections.DelegateDeclarationCollection)">
<summary>Adds the elements of another DelegateDeclarationCollection to the end of this DelegateDeclarationCollection.</summary>
<param name="items">The DelegateDeclarationCollection whose elements are to be added to the end of this DelegateDeclarationCollection.</param>
</member>
<member name="M:Refly.CodeDom.Collections.DelegateDeclarationCollection.Contains(Refly.CodeDom.DelegateDeclaration)">
<summary>Determines whether a specfic DelegateDeclaration value is in this DelegateDeclarationCollection.</summary>
<param name="value">The DelegateDeclaration value to locate in this DelegateDeclarationCollection.</param>
<returns>true if value is found in this DelegateDeclarationCollection; false otherwise.</returns>
</member>
<member name="M:Refly.CodeDom.Collections.DelegateDeclarationCollection.ContainsDelegateName(System.String)">
<summary>Checks the existence of a method name.</summary>
<param name="Name" />
</member>
<member name="M:Refly.CodeDom.Collections.DelegateDeclarationCollection.GetEnumerator">
<summary>Returns an enumerator that can iterate through the elements of this DelegateDeclarationCollection.</summary>
<returns>An object that implements System.Collections.IEnumerator.</returns>
</member>
<member name="M:Refly.CodeDom.Collections.DelegateDeclarationCollection.IndexOf(Refly.CodeDom.DelegateDeclaration)">
<summary>Return the zero-based index of the first occurrence of a specific value in this DelegateDeclarationCollection</summary>
<param name="value">The DelegateDeclaration value to locate in the DelegateDeclarationCollection.</param>
<returns>The zero-based index of the first occurrence of the _ELEMENT value if found; -1 otherwise.</returns>
</member>
<member name="M:Refly.CodeDom.Collections.DelegateDeclarationCollection.Insert(System.Int32,Refly.CodeDom.DelegateDeclaration)">
<summary>Inserts an element into the DelegateDeclarationCollection at the specified index</summary>
<param name="index">The index at which the DelegateDeclaration is to be inserted.</param>
<param name="value">The DelegateDeclaration to insert.</param>
</member>
<member name="M:Refly.CodeDom.Collections.DelegateDeclarationCollection.Remove(Refly.CodeDom.DelegateDeclaration)">
<summary>Removes the first occurrence of a specific DelegateDeclaration from this DelegateDeclarationCollection.</summary>
<param name="value">The DelegateDeclaration value to remove from this DelegateDeclarationCollection.</param>
</member>
<member name="T:Refly.CodeDom.Collections.DelegateDeclarationCollection.Enumerator">
<summary>Type-specific enumeration class, used by DelegateDeclarationCollection.GetEnumerator.</summary>
</member>
<member name="T:Refly.CodeDom.Collections.EventDeclarationCollection">
<summary>A collection of elements of type EventDeclaration</summary>
</member>
<member name="P:Refly.CodeDom.Collections.EventDeclarationCollection.Item(System.Int32)">
<summary>Gets or sets the EventDeclaration at the given index in this EventDeclarationCollection.</summary>
</member>
<member name="M:Refly.CodeDom.Collections.EventDeclarationCollection.Add(Refly.CodeDom.EventDeclaration)">
<summary>Adds an instance of type EventDeclaration to the end of this EventDeclarationCollection.</summary>
<param name="value">The EventDeclaration to be added to the end of this EventDeclarationCollection.</param>
</member>
<member name="M:Refly.CodeDom.Collections.EventDeclarationCollection.AddRange(Refly.CodeDom.EventDeclaration[])">
<summary>Adds the elements of an array to the end of this EventDeclarationCollection.</summary>
<param name="items">The array whose elements are to be added to the end of this EventDeclarationCollection.</param>
</member>
<member name="M:Refly.CodeDom.Collections.EventDeclarationCollection.AddRange(Refly.CodeDom.Collections.EventDeclarationCollection)">
<summary>Adds the elements of another EventDeclarationCollection to the end of this EventDeclarationCollection.</summary>
<param name="items">The EventDeclarationCollection whose elements are to be added to the end of this EventDeclarationCollection.</param>
</member>
<member name="M:Refly.CodeDom.Collections.EventDeclarationCollection.Contains(Refly.CodeDom.EventDeclaration)">
<summary>Determines whether a specfic EventDeclaration value is in this EventDeclarationCollection.</summary>
<param name="value">The EventDeclaration value to locate in this EventDeclarationCollection.</param>
<returns>true if value is found in this EventDeclarationCollection; false otherwise.</returns>
</member>
<member name="M:Refly.CodeDom.Collections.EventDeclarationCollection.GetEnumerator">
<summary>Returns an enumerator that can iterate through the elements of this EventDeclarationCollection.</summary>
<returns>An object that implements System.Collections.IEnumerator.</returns>
</member>
<member name="M:Refly.CodeDom.Collections.EventDeclarationCollection.IndexOf(Refly.CodeDom.EventDeclaration)">
<summary>Return the zero-based index of the first occurrence of a specific value in this EventDeclarationCollection</summary>
<param name="value">The EventDeclaration value to locate in the EventDeclarationCollection.</param>
<returns>The zero-based index of the first occurrence of the _ELEMENT value if found; -1 otherwise.</returns>
</member>
<member name="M:Refly.CodeDom.Collections.EventDeclarationCollection.Insert(System.Int32,Refly.CodeDom.EventDeclaration)">
<summary>Inserts an element into the EventDeclarationCollection at the specified index</summary>
<param name="index">The index at which the EventDeclaration is to be inserted.</param>
<param name="value">The EventDeclaration to insert.</param>
</member>
<member name="M:Refly.CodeDom.Collections.EventDeclarationCollection.Remove(Refly.CodeDom.EventDeclaration)">
<summary>Removes the first occurrence of a specific EventDeclaration from this EventDeclarationCollection.</summary>
<param name="value">The EventDeclaration value to remove from this EventDeclarationCollection.</param>
</member>
<member name="T:Refly.CodeDom.Collections.EventDeclarationCollection.Enumerator">
<summary>Type-specific enumeration class, used by EventDeclarationCollection.GetEnumerator.</summary>
</member>
<member name="T:Refly.CodeDom.Collections.ExpressionCollection">
<summary>A collection of elements of type Expression</summary>
</member>
<member name="M:Refly.CodeDom.Collections.ExpressionCollection.Add(Refly.CodeDom.Expressions.Expression)">
<summary>Adds an instance of type Expression to the end of this ExpressionCollection.</summary>
<param name="value">The Expression to be added to the end of this ExpressionCollection.</param>
</member>
<member name="M:Refly.CodeDom.Collections.ExpressionCollection.AddRange(Refly.CodeDom.Expressions.Expression[])">
<summary>Adds the elements of an array to the end of this ExpressionCollection.</summary>
<param name="items">The array whose elements are to be added to the end of this ExpressionCollection.</param>
</member>
<member name="M:Refly.CodeDom.Collections.ExpressionCollection.AddRange(Refly.CodeDom.Collections.ExpressionCollection)">
<summary>Adds the elements of another ExpressionCollection to the end of this ExpressionCollection.</summary>
<param name="items">The ExpressionCollection whose elements are to be added to the end of this ExpressionCollection.</param>
</member>
<member name="M:Refly.CodeDom.Collections.ExpressionCollection.GetEnumerator">
<summary>Returns an enumerator that can iterate through the elements of this ExpressionCollection.</summary>
<returns>An object that implements System.Collections.IEnumerator.</returns>
</member>
<member name="T:Refly.CodeDom.Collections.ExpressionCollection.Enumerator">
<summary>Type-specific enumeration class, used by ExpressionCollection.GetEnumerator.</summary>
</member>
<member name="T:Refly.CodeDom.Collections.FieldDeclarationCollection">
<summary>A collection of elements of type FieldDeclaration</summary>
</member>
<member name="P:Refly.CodeDom.Collections.FieldDeclarationCollection.Item(System.Int32)">
<summary>Gets or sets the FieldDeclaration at the given index in this FieldDeclarationCollection.</summary>
</member>
<member name="M:Refly.CodeDom.Collections.FieldDeclarationCollection.Add(Refly.CodeDom.FieldDeclaration)">
<summary>Adds an instance of type FieldDeclaration to the end of this FieldDeclarationCollection.</summary>
<param name="value">The FieldDeclaration to be added to the end of this FieldDeclarationCollection.</param>
</member>
<member name="M:Refly.CodeDom.Collections.FieldDeclarationCollection.AddRange(Refly.CodeDom.FieldDeclaration[])">
<summary>Adds the elements of an array to the end of this FieldDeclarationCollection.</summary>
<param name="items">The array whose elements are to be added to the end of this FieldDeclarationCollection.</param>
</member>
<member name="M:Refly.CodeDom.Collections.FieldDeclarationCollection.AddRange(Refly.CodeDom.Collections.FieldDeclarationCollection)">
<summary>Adds the elements of another FieldDeclarationCollection to the end of this FieldDeclarationCollection.</summary>
<param name="items">The FieldDeclarationCollection whose elements are to be added to the end of this FieldDeclarationCollection.</param>
</member>
<member name="M:Refly.CodeDom.Collections.FieldDeclarationCollection.Contains(Refly.CodeDom.FieldDeclaration)">
<summary>Determines whether a specfic FieldDeclaration value is in this FieldDeclarationCollection.</summary>
<param name="value">The FieldDeclaration value to locate in this FieldDeclarationCollection.</param>
<returns>true if value is found in this FieldDeclarationCollection; false otherwise.</returns>
</member>
<member name="M:Refly.CodeDom.Collections.FieldDeclarationCollection.GetEnumerator">
<summary>Returns an enumerator that can iterate through the elements of this FieldDeclarationCollection.</summary>
<returns>An object that implements System.Collections.IEnumerator.</returns>
</member>
<member name="M:Refly.CodeDom.Collections.FieldDeclarationCollection.IndexOf(Refly.CodeDom.FieldDeclaration)">
<summary>Return the zero-based index of the first occurrence of a specific value in this FieldDeclarationCollection</summary>
<param name="value">The FieldDeclaration value to locate in the FieldDeclarationCollection.</param>
<returns>The zero-based index of the first occurrence of the _ELEMENT value if found; -1 otherwise.</returns>
</member>
<member name="M:Refly.CodeDom.Collections.FieldDeclarationCollection.Insert(System.Int32,Refly.CodeDom.FieldDeclaration)">
<summary>Inserts an element into the FieldDeclarationCollection at the specified index</summary>
<param name="index">The index at which the FieldDeclaration is to be inserted.</param>
<param name="value">The FieldDeclaration to insert.</param>
</member>
<member name="M:Refly.CodeDom.Collections.FieldDeclarationCollection.Remove(Refly.CodeDom.FieldDeclaration)">
<summary>Removes the first occurrence of a specific FieldDeclaration from this FieldDeclarationCollection.</summary>
<param name="value">The FieldDeclaration value to remove from this FieldDeclarationCollection.</param>
</member>
<member name="T:Refly.CodeDom.Collections.FieldDeclarationCollection.Enumerator">
<summary>Type-specific enumeration class, used by FieldDeclarationCollection.GetEnumerator.</summary>
</member>
<member name="T:Refly.CodeDom.Collections.IndexerDeclarationCollection">
<summary>A collection of elements of type IndexerDeclaration</summary>
</member>
<member name="P:Refly.CodeDom.Collections.IndexerDeclarationCollection.Item(System.Int32)">
<summary>Gets or sets the IndexerDeclaration at the given index in this IndexerDeclarationCollection.</summary>
</member>
<member name="M:Refly.CodeDom.Collections.IndexerDeclarationCollection.Add(Refly.CodeDom.IndexerDeclaration)">
<summary>Adds an instance of type IndexerDeclaration to the end of this IndexerDeclarationCollection.</summary>
<param name="value">The IndexerDeclaration to be added to the end of this IndexerDeclarationCollection.</param>
</member>
<member name="M:Refly.CodeDom.Collections.IndexerDeclarationCollection.AddRange(Refly.CodeDom.IndexerDeclaration[])">
<summary>Adds the elements of an array to the end of this IndexerDeclarationCollection.</summary>
<param name="items">The array whose elements are to be added to the end of this IndexerDeclarationCollection.</param>
</member>
<member name="M:Refly.CodeDom.Collections.IndexerDeclarationCollection.AddRange(Refly.CodeDom.Collections.IndexerDeclarationCollection)">
<summary>Adds the elements of another IndexerDeclarationCollection to the end of this IndexerDeclarationCollection.</summary>
<param name="items">The IndexerDeclarationCollection whose elements are to be added to the end of this IndexerDeclarationCollection.</param>
</member>
<member name="M:Refly.CodeDom.Collections.IndexerDeclarationCollection.Contains(Refly.CodeDom.IndexerDeclaration)">
<summary>Determines whether a specfic IndexerDeclaration value is in this IndexerDeclarationCollection.</summary>
<param name="value">The IndexerDeclaration value to locate in this IndexerDeclarationCollection.</param>
<returns>true if value is found in this IndexerDeclarationCollection; false otherwise.</returns>
</member>
<member name="M:Refly.CodeDom.Collections.IndexerDeclarationCollection.GetEnumerator">
<summary>Returns an enumerator that can iterate through the elements of this IndexerDeclarationCollection.</summary>
<returns>An object that implements System.Collections.IEnumerator.</returns>
</member>
<member name="M:Refly.CodeDom.Collections.IndexerDeclarationCollection.IndexOf(Refly.CodeDom.IndexerDeclaration)">
<summary>Return the zero-based index of the first occurrence of a specific value in this IndexerDeclarationCollection</summary>
<param name="value">The IndexerDeclaration value to locate in the IndexerDeclarationCollection.</param>
<returns>The zero-based index of the first occurrence of the _ELEMENT value if found; -1 otherwise.</returns>
</member>
<member name="M:Refly.CodeDom.Collections.IndexerDeclarationCollection.Insert(System.Int32,Refly.CodeDom.IndexerDeclaration)">
<summary>Inserts an element into the IndexerDeclarationCollection at the specified index</summary>
<param name="index">The index at which the IndexerDeclaration is to be inserted.</param>
<param name="value">The IndexerDeclaration to insert.</param>
</member>
<member name="M:Refly.CodeDom.Collections.IndexerDeclarationCollection.Remove(Refly.CodeDom.IndexerDeclaration)">
<summary>Removes the first occurrence of a specific IndexerDeclaration from this IndexerDeclarationCollection.</summary>
<param name="value">The IndexerDeclaration value to remove from this IndexerDeclarationCollection.</param>
</member>
<member name="T:Refly.CodeDom.Collections.IndexerDeclarationCollection.Enumerator">
<summary>Type-specific enumeration class, used by IndexerDeclarationCollection.GetEnumerator.</summary>
</member>
<member name="T:Refly.CodeDom.Collections.MethodDeclarationCollection">
<summary>A collection of elements of type MethodDeclaration</summary>
</member>
<member name="P:Refly.CodeDom.Collections.MethodDeclarationCollection.Item(System.Int32)">
<summary>Gets or sets the MethodDeclaration at the given index in this MethodDeclarationCollection.</summary>
</member>
<member name="P:Refly.CodeDom.Collections.MethodDeclarationCollection.Item(System.String)">
<summary>Gets or sets the MethodDeclaration with the given name in this MethodDeclarationCollection.</summary>
</member>
<member name="M:Refly.CodeDom.Collections.MethodDeclarationCollection.Add(Refly.CodeDom.MethodDeclaration)">
<summary>Adds an instance of type MethodDeclaration to the end of this MethodDeclarationCollection.</summary>
<param name="value">The MethodDeclaration to be added to the end of this MethodDeclarationCollection.</param>
</member>
<member name="M:Refly.CodeDom.Collections.MethodDeclarationCollection.AddRange(Refly.CodeDom.MethodDeclaration[])">
<summary>Adds the elements of an array to the end of this MethodDeclarationCollection.</summary>
<param name="items">The array whose elements are to be added to the end of this MethodDeclarationCollection.</param>
</member>
<member name="M:Refly.CodeDom.Collections.MethodDeclarationCollection.AddRange(Refly.CodeDom.Collections.MethodDeclarationCollection)">
<summary>Adds the elements of another MethodDeclarationCollection to the end of this MethodDeclarationCollection.</summary>
<param name="items">The MethodDeclarationCollection whose elements are to be added to the end of this MethodDeclarationCollection.</param>
</member>
<member name="M:Refly.CodeDom.Collections.MethodDeclarationCollection.Contains(Refly.CodeDom.MethodDeclaration)">
<summary>Determines whether a specfic MethodDeclaration value is in this MethodDeclarationCollection.</summary>
<param name="value">The MethodDeclaration value to locate in this MethodDeclarationCollection.</param>
<returns>true if value is found in this MethodDeclarationCollection; false otherwise.</returns>
</member>
<member name="M:Refly.CodeDom.Collections.MethodDeclarationCollection.ContainsMethodName(System.String)">
<summary>Checks the existence of a method name.</summary>
<param name="Name" />
</member>
<member name="M:Refly.CodeDom.Collections.MethodDeclarationCollection.GetEnumerator">
<summary>Returns an enumerator that can iterate through the elements of this MethodDeclarationCollection.</summary>
<returns>An object that implements System.Collections.IEnumerator.</returns>
</member>
<member name="M:Refly.CodeDom.Collections.MethodDeclarationCollection.IndexOf(Refly.CodeDom.MethodDeclaration)">
<summary>Return the zero-based index of the first occurrence of a specific value in this MethodDeclarationCollection</summary>
<param name="value">The MethodDeclaration value to locate in the MethodDeclarationCollection.</param>
<returns>The zero-based index of the first occurrence of the _ELEMENT value if found; -1 otherwise.</returns>
</member>
<member name="M:Refly.CodeDom.Collections.MethodDeclarationCollection.Insert(System.Int32,Refly.CodeDom.MethodDeclaration)">
<summary>Inserts an element into the MethodDeclarationCollection at the specified index</summary>
<param name="index">The index at which the MethodDeclaration is to be inserted.</param>
<param name="value">The MethodDeclaration to insert.</param>
</member>
<member name="M:Refly.CodeDom.Collections.MethodDeclarationCollection.Remove(Refly.CodeDom.MethodDeclaration)">
<summary>Removes the first occurrence of a specific MethodDeclaration from this MethodDeclarationCollection.</summary>
<param name="value">The MethodDeclaration value to remove from this MethodDeclarationCollection.</param>
</member>
<member name="T:Refly.CodeDom.Collections.MethodDeclarationCollection.Enumerator">
<summary>Type-specific enumeration class, used by MethodDeclarationCollection.GetEnumerator.</summary>
</member>
<member name="T:Refly.CodeDom.Collections.ParameterDeclarationCollection">
<summary>A collection of elements of type ParameterDeclaration</summary>
</member>
<member name="P:Refly.CodeDom.Collections.ParameterDeclarationCollection.Item(System.Int32)">
<summary>Gets or sets the ParameterDeclaration at the given index in this ParameterDeclarationCollection.</summary>
</member>
<member name="M:Refly.CodeDom.Collections.ParameterDeclarationCollection.AddRange(Refly.CodeDom.ParameterDeclaration[])">
<summary>Adds the elements of an array to the end of this ParameterDeclarationCollection.</summary>
<param name="items">The array whose elements are to be added to the end of this ParameterDeclarationCollection.</param>
</member>
<member name="M:Refly.CodeDom.Collections.ParameterDeclarationCollection.AddRange(Refly.CodeDom.Collections.ParameterDeclarationCollection)">
<summary>Adds the elements of another ParameterDeclarationCollection to the end of this ParameterDeclarationCollection.</summary>
<param name="items">The ParameterDeclarationCollection whose elements are to be added to the end of this ParameterDeclarationCollection.</param>
</member>
<member name="M:Refly.CodeDom.Collections.ParameterDeclarationCollection.Contains(Refly.CodeDom.ParameterDeclaration)">
<summary>Determines whether a specfic ParameterDeclaration value is in this ParameterDeclarationCollection.</summary>
<param name="value">The ParameterDeclaration value to locate in this ParameterDeclarationCollection.</param>
<returns>true if value is found in this ParameterDeclarationCollection; false otherwise.</returns>
</member>
<member name="M:Refly.CodeDom.Collections.ParameterDeclarationCollection.GetEnumerator">
<summary>Returns an enumerator that can iterate through the elements of this ParameterDeclarationCollection.</summary>
<returns>An object that implements System.Collections.IEnumerator.</returns>
</member>
<member name="M:Refly.CodeDom.Collections.ParameterDeclarationCollection.IndexOf(Refly.CodeDom.ParameterDeclaration)">
<summary>Return the zero-based index of the first occurrence of a specific value in this ParameterDeclarationCollection</summary>
<param name="value">The ParameterDeclaration value to locate in the ParameterDeclarationCollection.</param>
<returns>The zero-based index of the first occurrence of the _ELEMENT value if found; -1 otherwise.</returns>
</member>
<member name="M:Refly.CodeDom.Collections.ParameterDeclarationCollection.Insert(System.Int32,Refly.CodeDom.ParameterDeclaration)">
<summary>Inserts an element into the ParameterDeclarationCollection at the specified index</summary>
<param name="index">The index at which the ParameterDeclaration is to be inserted.</param>
<param name="value">The ParameterDeclaration to insert.</param>
</member>
<member name="M:Refly.CodeDom.Collections.ParameterDeclarationCollection.Remove(Refly.CodeDom.ParameterDeclaration)">
<summary>Removes the first occurrence of a specific ParameterDeclaration from this ParameterDeclarationCollection.</summary>
<param name="value">The ParameterDeclaration value to remove from this ParameterDeclarationCollection.</param>
</member>
<member name="T:Refly.CodeDom.Collections.ParameterDeclarationCollection.Enumerator">
<summary>Type-specific enumeration class, used by ParameterDeclarationCollection.GetEnumerator.</summary>
</member>
<member name="T:Refly.CodeDom.Collections.PropertyDeclarationCollection">
<summary>A collection of elements of type PropertyDeclaration</summary>
</member>
<member name="P:Refly.CodeDom.Collections.PropertyDeclarationCollection.Item(System.Int32)">
<summary>Gets or sets the PropertyDeclaration at the given index in this PropertyDeclarationCollection.</summary>
</member>
<member name="M:Refly.CodeDom.Collections.PropertyDeclarationCollection.Add(Refly.CodeDom.PropertyDeclaration)">
<summary>Adds an instance of type PropertyDeclaration to the end of this PropertyDeclarationCollection.</summary>
<param name="value">The PropertyDeclaration to be added to the end of this PropertyDeclarationCollection.</param>
</member>
<member name="M:Refly.CodeDom.Collections.PropertyDeclarationCollection.AddRange(Refly.CodeDom.PropertyDeclaration[])">
<summary>Adds the elements of an array to the end of this PropertyDeclarationCollection.</summary>
<param name="items">The array whose elements are to be added to the end of this PropertyDeclarationCollection.</param>
</member>
<member name="M:Refly.CodeDom.Collections.PropertyDeclarationCollection.AddRange(Refly.CodeDom.Collections.PropertyDeclarationCollection)">
<summary>Adds the elements of another PropertyDeclarationCollection to the end of this PropertyDeclarationCollection.</summary>
<param name="items">The PropertyDeclarationCollection whose elements are to be added to the end of this PropertyDeclarationCollection.</param>
</member>
<member name="M:Refly.CodeDom.Collections.PropertyDeclarationCollection.Contains(Refly.CodeDom.PropertyDeclaration)">
<summary>Determines whether a specfic PropertyDeclaration value is in this PropertyDeclarationCollection.</summary>
<param name="value">The PropertyDeclaration value to locate in this PropertyDeclarationCollection.</param>
<returns>true if value is found in this PropertyDeclarationCollection; false otherwise.</returns>
</member>
<member name="M:Refly.CodeDom.Collections.PropertyDeclarationCollection.GetEnumerator">
<summary>Returns an enumerator that can iterate through the elements of this PropertyDeclarationCollection.</summary>
<returns>An object that implements System.Collections.IEnumerator.</returns>
</member>
<member name="M:Refly.CodeDom.Collections.PropertyDeclarationCollection.IndexOf(Refly.CodeDom.PropertyDeclaration)">
<summary>Return the zero-based index of the first occurrence of a specific value in this PropertyDeclarationCollection</summary>
<param name="value">The PropertyDeclaration value to locate in the PropertyDeclarationCollection.</param>
<returns>The zero-based index of the first occurrence of the _ELEMENT value if found; -1 otherwise.</returns>
</member>
<member name="M:Refly.CodeDom.Collections.PropertyDeclarationCollection.Insert(System.Int32,Refly.CodeDom.PropertyDeclaration)">
<summary>Inserts an element into the PropertyDeclarationCollection at the specified index</summary>
<param name="index">The index at which the PropertyDeclaration is to be inserted.</param>
<param name="value">The PropertyDeclaration to insert.</param>
</member>
<member name="M:Refly.CodeDom.Collections.PropertyDeclarationCollection.Remove(Refly.CodeDom.PropertyDeclaration)">
<summary>Removes the first occurrence of a specific PropertyDeclaration from this PropertyDeclarationCollection.</summary>
<param name="value">The PropertyDeclaration value to remove from this PropertyDeclarationCollection.</param>
</member>
<member name="T:Refly.CodeDom.Collections.PropertyDeclarationCollection.Enumerator">
<summary>Type-specific enumeration class, used by PropertyDeclarationCollection.GetEnumerator.</summary>
</member>
<member name="T:Refly.CodeDom.Collections.StatementCollection">
<summary>A collection of elements of type Statement</summary>
</member>
<member name="M:Refly.CodeDom.Collections.StatementCollection.Add(Refly.CodeDom.Statements.Statement)">
<summary>Adds an instance of type Statement to the end of this StatementCollection.</summary>
<param name="value">The Statement to be added to the end of this StatementCollection.</param>
</member>
<member name="M:Refly.CodeDom.Collections.StatementCollection.AddRange(Refly.CodeDom.Statements.Statement[])">
<summary>Adds the elements of an array to the end of this StatementCollection.</summary>
<param name="items">The array whose elements are to be added to the end of this StatementCollection.</param>
</member>
<member name="M:Refly.CodeDom.Collections.StatementCollection.AddRange(Refly.CodeDom.Collections.StatementCollection)">
<summary>Adds the elements of another StatementCollection to the end of this StatementCollection.</summary>
<param name="items">The StatementCollection whose elements are to be added to the end of this StatementCollection.</param>
</member>
<member name="M:Refly.CodeDom.Collections.StatementCollection.GetEnumerator">
<summary>Returns an enumerator that can iterate through the elements of this StatementCollection.</summary>
<returns>An object that implements System.Collections.IEnumerator.</returns>
</member>
<member name="T:Refly.CodeDom.Collections.StatementCollection.Enumerator">
<summary>Type-specific enumeration class, used by StatementCollection.GetEnumerator.</summary>
</member>
<member name="T:Refly.CodeDom.Collections.StringAttributeArgumentDictionary">
<summary>A dictionary with keys of type string and values of type AttributeArgument</summary>
</member>
<member name="P:Refly.CodeDom.Collections.StringAttributeArgumentDictionary.Item(System.String)">
<summary>Gets or sets the AttributeArgument associated with the given string</summary>
<param name="key">The string whose value to get or set.</param>
</member>
<member name="P:Refly.CodeDom.Collections.StringAttributeArgumentDictionary.Keys">
<summary>Gets a collection containing the keys in this StringAttributeArgumentDictionary.</summary>
</member>
<member name="P:Refly.CodeDom.Collections.StringAttributeArgumentDictionary.Values">
<summary>Gets a collection containing the values in this StringAttributeArgumentDictionary.</summary>
</member>
<member name="M:Refly.CodeDom.Collections.StringAttributeArgumentDictionary.Add(System.String,Refly.CodeDom.Expressions.Expression)">
<summary>Adds an element with the specified key and value to this StringAttributeArgumentDictionary.</summary>
<param name="key">The string key of the element to add.</param>
<param name="value">The AttributeArgument value of the element to add.</param>
</member>
<member name="M:Refly.CodeDom.Collections.StringAttributeArgumentDictionary.Contains(System.String)">
<summary>Determines whether this StringAttributeArgumentDictionary contains a specific key.</summary>
<param name="key">The string key to locate in this StringAttributeArgumentDictionary.</param>
<returns>true if this StringAttributeArgumentDictionary contains an element with the specified key; otherwise, false.</returns>
</member>
<member name="M:Refly.CodeDom.Collections.StringAttributeArgumentDictionary.ContainsKey(System.String)">
<summary>Determines whether this StringAttributeArgumentDictionary contains a specific key.</summary>
<param name="key">The string key to locate in this StringAttributeArgumentDictionary.</param>
<returns>true if this StringAttributeArgumentDictionary contains an element with the specified key; otherwise, false.</returns>
</member>
<member name="M:Refly.CodeDom.Collections.StringAttributeArgumentDictionary.Remove(System.String)">
<summary>Removes the element with the specified key from this StringAttributeArgumentDictionary.</summary>
<param name="key">The string key of the element to remove.</param>
</member>
<member name="T:Refly.CodeDom.Collections.StringClassDeclarationDictionary">
<summary>A dictionary with keys of type String and values of type ClassDeclaration</summary>
</member>
<member name="P:Refly.CodeDom.Collections.StringClassDeclarationDictionary.Item(System.String)">
<summary>Gets or sets the ClassDeclaration associated with the given String</summary>
<param name="key">The String whose value to get or set.</param>
</member>
<member name="P:Refly.CodeDom.Collections.StringClassDeclarationDictionary.Keys">
<summary>Gets a collection containing the keys in this StringClassDeclarationDictionary.</summary>
</member>
<member name="P:Refly.CodeDom.Collections.StringClassDeclarationDictionary.Values">
<summary>Gets a collection containing the values in this StringClassDeclarationDictionary.</summary>
</member>
<member name="M:Refly.CodeDom.Collections.StringClassDeclarationDictionary.Add(Refly.CodeDom.ClassDeclaration)">
<summary>Adds an element with the specified key and value to this StringClassDeclarationDictionary.</summary>
<param name="key">The String key of the element to add.</param>
<param name="value">The ClassDeclaration value of the element to add.</param>
</member>
<member name="M:Refly.CodeDom.Collections.StringClassDeclarationDictionary.Contains(System.String)">
<summary>Determines whether this StringClassDeclarationDictionary contains a specific key.</summary>
<param name="key">The String key to locate in this StringClassDeclarationDictionary.</param>
<returns>true if this StringClassDeclarationDictionary contains an element with the specified key; otherwise, false.</returns>
</member>
<member name="M:Refly.CodeDom.Collections.StringClassDeclarationDictionary.ContainsKey(System.String)">
<summary>Determines whether this StringClassDeclarationDictionary contains a specific key.</summary>
<param name="key">The String key to locate in this StringClassDeclarationDictionary.</param>
<returns>true if this StringClassDeclarationDictionary contains an element with the specified key; otherwise, false.</returns>
</member>
<member name="M:Refly.CodeDom.Collections.StringClassDeclarationDictionary.ContainsValue(Refly.CodeDom.ClassDeclaration)">
<summary>Determines whether this StringClassDeclarationDictionary contains a specific value.</summary>
<param name="value">The ClassDeclaration value to locate in this StringClassDeclarationDictionary.</param>
<returns>true if this StringClassDeclarationDictionary contains an element with the specified value; otherwise, false.</returns>
</member>
<member name="M:Refly.CodeDom.Collections.StringClassDeclarationDictionary.Remove(System.String)">
<summary>Removes the element with the specified key from this StringClassDeclarationDictionary.</summary>
<param name="key">The String key of the element to remove.</param>
</member>
<member name="T:Refly.CodeDom.Collections.StringConstantDeclaration">
<summary>A dictionary with keys of type String and values of type ConstantDeclaration</summary>
</member>
<member name="P:Refly.CodeDom.Collections.StringConstantDeclaration.Item(System.String)">
<summary>Gets or sets the ConstantDeclaration associated with the given String</summary>
<param name="key">The String whose value to get or set.</param>
</member>
<member name="P:Refly.CodeDom.Collections.StringConstantDeclaration.Keys">
<summary>Gets a collection containing the keys in this StringConstantDeclaration.</summary>
</member>
<member name="P:Refly.CodeDom.Collections.StringConstantDeclaration.Values">
<summary>Gets a collection containing the values in this StringConstantDeclaration.</summary>
</member>
<member name="M:Refly.CodeDom.Collections.StringConstantDeclaration.Add(Refly.CodeDom.ConstantDeclaration)">
<summary>Adds an element with the specified key and value to this StringConstantDeclaration.</summary>
<param name="key">The String key of the element to add.</param>
<param name="value">The ConstantDeclaration value of the element to add.</param>
</member>
<member name="M:Refly.CodeDom.Collections.StringConstantDeclaration.Contains(System.String)">
<summary>Determines whether this StringConstantDeclaration contains a specific key.</summary>
<param name="key">The String key to locate in this StringConstantDeclaration.</param>
<returns>true if this StringConstantDeclaration contains an element with the specified key; otherwise, false.</returns>
</member>
<member name="M:Refly.CodeDom.Collections.StringConstantDeclaration.Remove(System.String)">
<summary>Removes the element with the specified key from this StringConstantDeclaration.</summary>
<param name="key">The String key of the element to remove.</param>
</member>
<member name="T:Refly.CodeDom.Collections.StringEnumDeclarationDictionary">
<summary>A dictionary with keys of type String and values of type EnumDeclaration</summary>
</member>
<member name="P:Refly.CodeDom.Collections.StringEnumDeclarationDictionary.Item(System.String)">
<summary>Gets or sets the EnumDeclaration associated with the given String</summary>
<param name="key">The String whose value to get or set.</param>
</member>
<member name="P:Refly.CodeDom.Collections.StringEnumDeclarationDictionary.Keys">
<summary>Gets a collection containing the keys in this StringEnumDeclarationDictionary.</summary>
</member>
<member name="P:Refly.CodeDom.Collections.StringEnumDeclarationDictionary.Values">
<summary>Gets a collection containing the values in this StringEnumDeclarationDictionary.</summary>
</member>
<member name="M:Refly.CodeDom.Collections.StringEnumDeclarationDictionary.Add(Refly.CodeDom.EnumDeclaration)">
<summary>Adds an element with the specified key and value to this StringEnumDeclarationDictionary.</summary>
<param name="key">The String key of the element to add.</param>
<param name="value">The EnumDeclaration value of the element to add.</param>
</member>
<member name="M:Refly.CodeDom.Collections.StringEnumDeclarationDictionary.Contains(System.String)">
<summary>Determines whether this StringEnumDeclarationDictionary contains a specific key.</summary>
<param name="key">The String key to locate in this StringEnumDeclarationDictionary.</param>
<returns>true if this StringEnumDeclarationDictionary contains an element with the specified key; otherwise, false.</returns>
</member>
<member name="M:Refly.CodeDom.Collections.StringEnumDeclarationDictionary.ContainsKey(System.String)">
<summary>Determines whether this StringEnumDeclarationDictionary contains a specific key.</summary>
<param name="key">The String key to locate in this StringEnumDeclarationDictionary.</param>
<returns>true if this StringEnumDeclarationDictionary contains an element with the specified key; otherwise, false.</returns>
</member>
<member name="M:Refly.CodeDom.Collections.StringEnumDeclarationDictionary.ContainsValue(Refly.CodeDom.EnumDeclaration)">
<summary>Determines whether this StringEnumDeclarationDictionary contains a specific value.</summary>
<param name="value">The EnumDeclaration value to locate in this StringEnumDeclarationDictionary.</param>
<returns>true if this StringEnumDeclarationDictionary contains an element with the specified value; otherwise, false.</returns>
</member>
<member name="M:Refly.CodeDom.Collections.StringEnumDeclarationDictionary.Remove(System.String)">
<summary>Removes the element with the specified key from this StringEnumDeclarationDictionary.</summary>
<param name="key">The String key of the element to remove.</param>
</member>
<member name="T:Refly.CodeDom.Collections.StringFieldDeclarationDictionary">
<summary>A dictionary with keys of type String and values of type FieldDeclaration</summary>
</member>
<member name="P:Refly.CodeDom.Collections.StringFieldDeclarationDictionary.Item(System.String)">
<summary>Gets or sets the FieldDeclaration associated with the given String</summary>
<param name="key">The String whose value to get or set.</param>
</member>
<member name="P:Refly.CodeDom.Collections.StringFieldDeclarationDictionary.Keys">
<summary>Gets a collection containing the keys in this StringFieldDeclarationDictionary.</summary>
</member>
<member name="P:Refly.CodeDom.Collections.StringFieldDeclarationDictionary.Values">
<summary>Gets a collection containing the values in this StringFieldDeclarationDictionary.</summary>
</member>
<member name="M:Refly.CodeDom.Collections.StringFieldDeclarationDictionary.Add(Refly.CodeDom.FieldDeclaration)">
<summary>Adds an element with the specified key and value to this StringFieldDeclarationDictionary.</summary>
<param name="key">The String key of the element to add.</param>
<param name="value">The FieldDeclaration value of the element to add.</param>
</member>
<member name="M:Refly.CodeDom.Collections.StringFieldDeclarationDictionary.Contains(System.String)">
<summary>Determines whether this StringFieldDeclarationDictionary contains a specific key.</summary>
<param name="key">The String key to locate in this StringFieldDeclarationDictionary.</param>
<returns>true if this StringFieldDeclarationDictionary contains an element with the specified key; otherwise, false.</returns>
</member>
<member name="M:Refly.CodeDom.Collections.StringFieldDeclarationDictionary.ContainsKey(System.String)">
<summary>Determines whether this StringFieldDeclarationDictionary contains a specific key.</summary>
<param name="key">The String key to locate in this StringFieldDeclarationDictionary.</param>
<returns>true if this StringFieldDeclarationDictionary contains an element with the specified key; otherwise, false.</returns>
</member>
<member name="M:Refly.CodeDom.Collections.StringFieldDeclarationDictionary.ContainsValue(Refly.CodeDom.FieldDeclaration)">
<summary>Determines whether this StringFieldDeclarationDictionary contains a specific value.</summary>
<param name="value">The FieldDeclaration value to locate in this StringFieldDeclarationDictionary.</param>
<returns>true if this StringFieldDeclarationDictionary contains an element with the specified value; otherwise, false.</returns>
</member>
<member name="M:Refly.CodeDom.Collections.StringFieldDeclarationDictionary.Remove(System.String)">
<summary>Removes the element with the specified key from this StringFieldDeclarationDictionary.</summary>
<param name="key">The String key of the element to remove.</param>
</member>
<member name="T:Refly.CodeDom.Collections.StringNamespaceDeclarationDictionary">
<summary>A dictionary with keys of type String and values of type NamespaceDeclaration</summary>
</member>
<member name="P:Refly.CodeDom.Collections.StringNamespaceDeclarationDictionary.Item(System.String)">
<summary>Gets or sets the NamespaceDeclaration associated with the given String</summary>
<param name="key">The String whose value to get or set.</param>
</member>
<member name="P:Refly.CodeDom.Collections.StringNamespaceDeclarationDictionary.Keys">
<summary>Gets a collection containing the keys in this StringNamespaceDeclarationDictionary.</summary>
</member>
<member name="P:Refly.CodeDom.Collections.StringNamespaceDeclarationDictionary.Values">
<summary>Gets a collection containing the values in this StringNamespaceDeclarationDictionary.</summary>
</member>
<member name="M:Refly.CodeDom.Collections.StringNamespaceDeclarationDictionary.Add(System.String,Refly.CodeDom.NamespaceDeclaration)">
<summary>Adds an element with the specified key and value to this StringNamespaceDeclarationDictionary.</summary>
<param name="key">The String key of the element to add.</param>
<param name="value">The NamespaceDeclaration value of the element to add.</param>
</member>
<member name="M:Refly.CodeDom.Collections.StringNamespaceDeclarationDictionary.Contains(System.String)">
<summary>Determines whether this StringNamespaceDeclarationDictionary contains a specific key.</summary>
<param name="key">The String key to locate in this StringNamespaceDeclarationDictionary.</param>
<returns>true if this StringNamespaceDeclarationDictionary contains an element with the specified key; otherwise, false.</returns>
</member>
<member name="M:Refly.CodeDom.Collections.StringNamespaceDeclarationDictionary.ContainsKey(System.String)">
<summary>Determines whether this StringNamespaceDeclarationDictionary contains a specific key.</summary>
<param name="key">The String key to locate in this StringNamespaceDeclarationDictionary.</param>
<returns>true if this StringNamespaceDeclarationDictionary contains an element with the specified key; otherwise, false.</returns>
</member>
<member name="M:Refly.CodeDom.Collections.StringNamespaceDeclarationDictionary.ContainsValue(Refly.CodeDom.NamespaceDeclaration)">
<summary>Determines whether this StringNamespaceDeclarationDictionary contains a specific value.</summary>
<param name="value">The NamespaceDeclaration value to locate in this StringNamespaceDeclarationDictionary.</param>
<returns>true if this StringNamespaceDeclarationDictionary contains an element with the specified value; otherwise, false.</returns>
</member>
<member name="M:Refly.CodeDom.Collections.StringNamespaceDeclarationDictionary.Remove(System.String)">
<summary>Removes the element with the specified key from this StringNamespaceDeclarationDictionary.</summary>
<param name="key">The String key of the element to remove.</param>
</member>
<member name="T:Refly.CodeDom.Collections.ThrowedExceptionDeclarationCollection">
<summary>A collection of elements of type ThrowedExceptionDeclaration</summary>
</member>
<member name="P:Refly.CodeDom.Collections.ThrowedExceptionDeclarationCollection.Item(System.Int32)">
<summary>Gets or sets the ThrowedExceptionDeclaration at the given index in this ThrowedExceptionDeclarationCollection.</summary>
</member>
<member name="M:Refly.CodeDom.Collections.ThrowedExceptionDeclarationCollection.Add(Refly.CodeDom.ThrowedExceptionDeclaration)">
<summary>Adds an instance of type ThrowedExceptionDeclaration to the end of this ThrowedExceptionDeclarationCollection.</summary>
<param name="value">The ThrowedExceptionDeclaration to be added to the end of this ThrowedExceptionDeclarationCollection.</param>
</member>
<member name="M:Refly.CodeDom.Collections.ThrowedExceptionDeclarationCollection.AddRange(Refly.CodeDom.ThrowedExceptionDeclaration[])">
<summary>Adds the elements of an array to the end of this ThrowedExceptionDeclarationCollection.</summary>
<param name="items">The array whose elements are to be added to the end of this ThrowedExceptionDeclarationCollection.</param>
</member>
<member name="M:Refly.CodeDom.Collections.ThrowedExceptionDeclarationCollection.AddRange(Refly.CodeDom.Collections.ThrowedExceptionDeclarationCollection)">
<summary>Adds the elements of another ThrowedExceptionDeclarationCollection to the end of this ThrowedExceptionDeclarationCollection.</summary>
<param name="items">The ThrowedExceptionDeclarationCollection whose elements are to be added to the end of this ThrowedExceptionDeclarationCollection.</param>
</member>
<member name="M:Refly.CodeDom.Collections.ThrowedExceptionDeclarationCollection.Contains(Refly.CodeDom.ThrowedExceptionDeclaration)">
<summary>Determines whether a specfic ThrowedExceptionDeclaration value is in this ThrowedExceptionDeclarationCollection.</summary>
<param name="value">The ThrowedExceptionDeclaration value to locate in this ThrowedExceptionDeclarationCollection.</param>
<returns>true if value is found in this ThrowedExceptionDeclarationCollection; false otherwise.</returns>
</member>
<member name="M:Refly.CodeDom.Collections.ThrowedExceptionDeclarationCollection.GetEnumerator">
<summary>Returns an enumerator that can iterate through the elements of this ThrowedExceptionDeclarationCollection.</summary>
<returns>An object that implements System.Collections.IEnumerator.</returns>
</member>
<member name="M:Refly.CodeDom.Collections.ThrowedExceptionDeclarationCollection.IndexOf(Refly.CodeDom.ThrowedExceptionDeclaration)">
<summary>Return the zero-based index of the first occurrence of a specific value in this ThrowedExceptionDeclarationCollection</summary>
<param name="value">The ThrowedExceptionDeclaration value to locate in the ThrowedExceptionDeclarationCollection.</param>
<returns>The zero-based index of the first occurrence of the _ELEMENT value if found; -1 otherwise.</returns>
</member>
<member name="M:Refly.CodeDom.Collections.ThrowedExceptionDeclarationCollection.Insert(System.Int32,Refly.CodeDom.ThrowedExceptionDeclaration)">
<summary>Inserts an element into the ThrowedExceptionDeclarationCollection at the specified index</summary>
<param name="index">The index at which the ThrowedExceptionDeclaration is to be inserted.</param>
<param name="value">The ThrowedExceptionDeclaration to insert.</param>
</member>
<member name="M:Refly.CodeDom.Collections.ThrowedExceptionDeclarationCollection.Remove(Refly.CodeDom.ThrowedExceptionDeclaration)">
<summary>Removes the first occurrence of a specific ThrowedExceptionDeclaration from this ThrowedExceptionDeclarationCollection.</summary>
<param name="value">The ThrowedExceptionDeclaration value to remove from this ThrowedExceptionDeclarationCollection.</param>
</member>
<member name="T:Refly.CodeDom.Collections.ThrowedExceptionDeclarationCollection.Enumerator">
<summary>Type-specific enumeration class, used by ThrowedExceptionDeclarationCollection.GetEnumerator.</summary>
</member>
<member name="T:Refly.CodeDom.Collections.TypeCollection">
<summary>A collection of elements of type Type</summary>
</member>
<member name="P:Refly.CodeDom.Collections.TypeCollection.Item(System.Int32)">
<summary>Gets or sets the Type at the given index in this TypeCollection.</summary>
</member>
<member name="M:Refly.CodeDom.Collections.TypeCollection.Add(System.Type)">
<summary>Adds an instance of type Type to the end of this TypeCollection.</summary>
<param name="value">The Type to be added to the end of this TypeCollection.</param>
</member>
<member name="M:Refly.CodeDom.Collections.TypeCollection.AddRange(System.Type[])">
<summary>Adds the elements of an array to the end of this TypeCollection.</summary>
<param name="items">The array whose elements are to be added to the end of this TypeCollection.</param>
</member>
<member name="M:Refly.CodeDom.Collections.TypeCollection.AddRange(Refly.CodeDom.Collections.TypeCollection)">
<summary>Adds the elements of another TypeCollection to the end of this TypeCollection.</summary>
<param name="items">The TypeCollection whose elements are to be added to the end of this TypeCollection.</param>
</member>
<member name="M:Refly.CodeDom.Collections.TypeCollection.Contains(System.Type)">
<summary>Determines whether a specfic Type value is in this TypeCollection.</summary>
<param name="value">The Type value to locate in this TypeCollection.</param>
<returns>true if value is found in this TypeCollection; false otherwise.</returns>
</member>
<member name="M:Refly.CodeDom.Collections.TypeCollection.GetEnumerator">
<summary>Returns an enumerator that can iterate through the elements of this TypeCollection.</summary>
<returns>An object that implements System.Collections.IEnumerator.</returns>
</member>
<member name="M:Refly.CodeDom.Collections.TypeCollection.IndexOf(System.Type)">
<summary>Return the zero-based index of the first occurrence of a specific value in this TypeCollection</summary>
<param name="value">The Type value to locate in the TypeCollection.</param>
<returns>The zero-based index of the first occurrence of the _ELEMENT value if found; -1 otherwise.</returns>
</member>
<member name="M:Refly.CodeDom.Collections.TypeCollection.Insert(System.Int32,System.Type)">
<summary>Inserts an element into the TypeCollection at the specified index</summary>
<param name="index">The index at which the Type is to be inserted.</param>
<param name="value">The Type to insert.</param>
</member>
<member name="M:Refly.CodeDom.Collections.TypeCollection.Remove(System.Type)">
<summary>Removes the first occurrence of a specific Type from this TypeCollection.</summary>
<param name="value">The Type value to remove from this TypeCollection.</param>
</member>
<member name="T:Refly.CodeDom.Collections.TypeCollection.Enumerator">
<summary>Type-specific enumeration class, used by TypeCollection.GetEnumerator.</summary>
</member>
<member name="T:Refly.CodeDom.Collections.TypeDeclarationCollection">
<summary>A collection of elements of type ITypeDeclaration</summary>
</member>
<member name="P:Refly.CodeDom.Collections.TypeDeclarationCollection.Item(System.Int32)">
<summary>Gets or sets the ITypeDeclaration at the given index in this TypeDeclarationCollection.</summary>
</member>
<member name="M:Refly.CodeDom.Collections.TypeDeclarationCollection.Add(Refly.CodeDom.ITypeDeclaration)">
<summary>Adds an instance of type ITypeDeclaration to the end of this TypeDeclarationCollection.</summary>
<param name="value">The ITypeDeclaration to be added to the end of this TypeDeclarationCollection.</param>
</member>
<member name="M:Refly.CodeDom.Collections.TypeDeclarationCollection.AddRange(Refly.CodeDom.ITypeDeclaration[])">
<summary>Adds the elements of an array to the end of this TypeDeclarationCollection.</summary>
<param name="items">The array whose elements are to be added to the end of this TypeDeclarationCollection.</param>
</member>
<member name="M:Refly.CodeDom.Collections.TypeDeclarationCollection.AddRange(Refly.CodeDom.Collections.TypeDeclarationCollection)">
<summary>Adds the elements of another TypeDeclarationCollection to the end of this TypeDeclarationCollection.</summary>
<param name="items">The TypeDeclarationCollection whose elements are to be added to the end of this TypeDeclarationCollection.</param>
</member>
<member name="M:Refly.CodeDom.Collections.TypeDeclarationCollection.Contains(Refly.CodeDom.ITypeDeclaration)">
<summary>Determines whether a specfic ITypeDeclaration value is in this TypeDeclarationCollection.</summary>
<param name="value">The ITypeDeclaration value to locate in this TypeDeclarationCollection.</param>
<returns>true if value is found in this TypeDeclarationCollection; false otherwise.</returns>
</member>
<member name="M:Refly.CodeDom.Collections.TypeDeclarationCollection.GetEnumerator">
<summary>Returns an enumerator that can iterate through the elements of this TypeDeclarationCollection.</summary>
<returns>An object that implements System.Collections.IEnumerator.</returns>
</member>
<member name="M:Refly.CodeDom.Collections.TypeDeclarationCollection.IndexOf(Refly.CodeDom.ITypeDeclaration)">
<summary>Return the zero-based index of the first occurrence of a specific value in this TypeDeclarationCollection</summary>
<param name="value">The ITypeDeclaration value to locate in the TypeDeclarationCollection.</param>
<returns>The zero-based index of the first occurrence of the _ELEMENT value if found; -1 otherwise.</returns>
</member>
<member name="M:Refly.CodeDom.Collections.TypeDeclarationCollection.Insert(System.Int32,Refly.CodeDom.ITypeDeclaration)">
<summary>Inserts an element into the TypeDeclarationCollection at the specified index</summary>
<param name="index">The index at which the ITypeDeclaration is to be inserted.</param>
<param name="value">The ITypeDeclaration to insert.</param>
</member>
<member name="M:Refly.CodeDom.Collections.TypeDeclarationCollection.Remove(Refly.CodeDom.ITypeDeclaration)">
<summary>Removes the first occurrence of a specific ITypeDeclaration from this TypeDeclarationCollection.</summary>
<param name="value">The ITypeDeclaration value to remove from this TypeDeclarationCollection.</param>
</member>
<member name="T:Refly.CodeDom.Collections.TypeDeclarationCollection.Enumerator">
<summary>Type-specific enumeration class, used by TypeDeclarationCollection.GetEnumerator.</summary>
</member>
<member name="T:Refly.CodeDom.Collections.TypeTypeDeclarationDictionary">
<summary>A dictionary with keys of type Type and values of type ITypeDeclaration</summary>
</member>
<member name="P:Refly.CodeDom.Collections.TypeTypeDeclarationDictionary.Item(System.Type)">
<summary>Gets or sets the ITypeDeclaration associated with the given Type</summary>
<param name="key">The Type whose value to get or set.</param>
</member>
<member name="P:Refly.CodeDom.Collections.TypeTypeDeclarationDictionary.Keys">
<summary>Gets a collection containing the keys in this TypeTypeDeclarationDictionary.</summary>
</member>
<member name="P:Refly.CodeDom.Collections.TypeTypeDeclarationDictionary.Values">
<summary>Gets a collection containing the values in this TypeTypeDeclarationDictionary.</summary>
</member>
<member name="M:Refly.CodeDom.Collections.TypeTypeDeclarationDictionary.Add(System.Type,Refly.CodeDom.ITypeDeclaration)">
<summary>Adds an element with the specified key and value to this TypeTypeDeclarationDictionary.</summary>
<param name="key">The Type key of the element to add.</param>
<param name="value">The ITypeDeclaration value of the element to add.</param>
</member>
<member name="M:Refly.CodeDom.Collections.TypeTypeDeclarationDictionary.Contains(System.Type)">
<summary>Determines whether this TypeTypeDeclarationDictionary contains a specific key.</summary>
<param name="key">The Type key to locate in this TypeTypeDeclarationDictionary.</param>
<returns>true if this TypeTypeDeclarationDictionary contains an element with the specified key; otherwise, false.</returns>
</member>
<member name="M:Refly.CodeDom.Collections.TypeTypeDeclarationDictionary.ContainsKey(System.Type)">
<summary>Determines whether this TypeTypeDeclarationDictionary contains a specific key.</summary>
<param name="key">The Type key to locate in this TypeTypeDeclarationDictionary.</param>
<returns>true if this TypeTypeDeclarationDictionary contains an element with the specified key; otherwise, false.</returns>
</member>
<member name="M:Refly.CodeDom.Collections.TypeTypeDeclarationDictionary.ContainsValue(Refly.CodeDom.ITypeDeclaration)">
<summary>Determines whether this TypeTypeDeclarationDictionary contains a specific value.</summary>
<param name="value">The ITypeDeclaration value to locate in this TypeTypeDeclarationDictionary.</param>
<returns>true if this TypeTypeDeclarationDictionary contains an element with the specified value; otherwise, false.</returns>
</member>
<member name="M:Refly.CodeDom.Collections.TypeTypeDeclarationDictionary.Remove(System.Type)">
<summary>Removes the element with the specified key from this TypeTypeDeclarationDictionary.</summary>
<param name="key">The Type key of the element to remove.</param>
</member>
</members>
</doc>
|