System.CodeDom.xml
363.7 KB
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
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
<?xml version="1.0" encoding="utf-8"?><span>
<doc>
<assembly>
<name>System.CodeDom</name>
</assembly>
<members>
<member name="T:System.CodeDom.CodeTypeReference">
<summary>Represents a reference to a type.</summary>
</member>
<member name="M:System.CodeDom.CodeTypeReference.#ctor">
<summary>Initializes a new instance of the <see cref="T:System.CodeDom.CodeTypeReference"></see> class.</summary>
</member>
<member name="M:System.CodeDom.CodeTypeReference.#ctor(System.CodeDom.CodeTypeParameter)">
<summary>Initializes a new instance of the <see cref="T:System.CodeDom.CodeTypeReference"></see> class using the specified code type parameter.</summary>
<param name="typeParameter">A <see cref="T:System.CodeDom.CodeTypeParameter"></see> that represents the type of the type parameter.</param>
</member>
<member name="M:System.CodeDom.CodeTypeReference.#ctor(System.String)">
<summary>Initializes a new instance of the <see cref="T:System.CodeDom.CodeTypeReference"></see> class using the specified type name.</summary>
<param name="typeName">The name of the type to reference.</param>
</member>
<member name="M:System.CodeDom.CodeTypeReference.#ctor(System.Type)">
<summary>Initializes a new instance of the <see cref="T:System.CodeDom.CodeTypeReference"></see> class using the specified type.</summary>
<param name="type">The <see cref="T:System.Type"></see> to reference.</param>
<exception cref="T:System.ArgumentNullException"><paramref name="type">type</paramref> is null.</exception>
</member>
<member name="M:System.CodeDom.CodeTypeReference.#ctor(System.CodeDom.CodeTypeReference,System.Int32)">
<summary>Initializes a new instance of the <see cref="T:System.CodeDom.CodeTypeReference"></see> class using the specified array type and rank.</summary>
<param name="arrayType">A <see cref="T:System.CodeDom.CodeTypeReference"></see> that indicates the type of the array.</param>
<param name="rank">The number of dimensions in the array.</param>
</member>
<member name="M:System.CodeDom.CodeTypeReference.#ctor(System.String,System.CodeDom.CodeTypeReference[])">
<summary>Initializes a new instance of the <see cref="T:System.CodeDom.CodeTypeReference"></see> class using the specified type name and type arguments.</summary>
<param name="typeName">The name of the type to reference.</param>
<param name="typeArguments">An array of <see cref="T:System.CodeDom.CodeTypeReference"></see> values.</param>
</member>
<member name="M:System.CodeDom.CodeTypeReference.#ctor(System.String,System.CodeDom.CodeTypeReferenceOptions)">
<summary>Initializes a new instance of the <see cref="T:System.CodeDom.CodeTypeReference"></see> class using the specified type name and code type reference option.</summary>
<param name="typeName">The name of the type to reference.</param>
<param name="codeTypeReferenceOption">The code type reference option, one of the <see cref="T:System.CodeDom.CodeTypeReferenceOptions"></see> values.</param>
</member>
<member name="M:System.CodeDom.CodeTypeReference.#ctor(System.String,System.Int32)">
<summary>Initializes a new instance of the <see cref="T:System.CodeDom.CodeTypeReference"></see> class using the specified array type name and rank.</summary>
<param name="baseType">The name of the type of the elements of the array.</param>
<param name="rank">The number of dimensions of the array.</param>
</member>
<member name="M:System.CodeDom.CodeTypeReference.#ctor(System.Type,System.CodeDom.CodeTypeReferenceOptions)">
<summary>Initializes a new instance of the <see cref="T:System.CodeDom.CodeTypeReference"></see> class using the specified type and code type reference.</summary>
<param name="type">The <see cref="T:System.Type"></see> to reference.</param>
<param name="codeTypeReferenceOption">The code type reference option, one of the <see cref="T:System.CodeDom.CodeTypeReferenceOptions"></see> values.</param>
</member>
<member name="P:System.CodeDom.CodeTypeReference.ArrayElementType">
<summary>Gets or sets the type of the elements in the array.</summary>
<returns>A <see cref="T:System.CodeDom.CodeTypeReference"></see> that indicates the type of the array elements.</returns>
</member>
<member name="P:System.CodeDom.CodeTypeReference.ArrayRank">
<summary>Gets or sets the array rank of the array.</summary>
<returns>The number of dimensions of the array.</returns>
</member>
<member name="P:System.CodeDom.CodeTypeReference.BaseType">
<summary>Gets or sets the name of the type being referenced.</summary>
<returns>The name of the type being referenced.</returns>
</member>
<member name="P:System.CodeDom.CodeTypeReference.Options">
<summary>Gets or sets the code type reference option.</summary>
<returns>A bitwise combination of the <see cref="T:System.CodeDom.CodeTypeReferenceOptions"></see> values.</returns>
</member>
<member name="P:System.CodeDom.CodeTypeReference.TypeArguments">
<summary>Gets the type arguments for the current generic type reference.</summary>
<returns>A <see cref="T:System.CodeDom.CodeTypeReferenceCollection"></see> containing the type arguments for the current <see cref="T:System.CodeDom.CodeTypeReference"></see> object.</returns>
</member>
<member name="T:System.CodeDom.CodeTypeReferenceCollection">
<summary>Represents a collection of <see cref="T:System.CodeDom.CodeTypeReference"></see> objects.</summary>
</member>
<member name="M:System.CodeDom.CodeTypeReferenceCollection.#ctor">
<summary>Initializes a new instance of the <see cref="T:System.CodeDom.CodeTypeReferenceCollection"></see> class.</summary>
</member>
<member name="M:System.CodeDom.CodeTypeReferenceCollection.#ctor(System.CodeDom.CodeTypeReference[])">
<summary>Initializes a new instance of the <see cref="T:System.CodeDom.CodeTypeReferenceCollection"></see> class containing the specified array of <see cref="T:System.CodeDom.CodeTypeReference"></see> objects.</summary>
<param name="value">An array of <see cref="T:System.CodeDom.CodeTypeReference"></see> objects with which to initialize the collection.</param>
</member>
<member name="M:System.CodeDom.CodeTypeReferenceCollection.#ctor(System.CodeDom.CodeTypeReferenceCollection)">
<summary>Initializes a new instance of the <see cref="T:System.CodeDom.CodeTypeReferenceCollection"></see> class containing the elements of the specified source collection.</summary>
<param name="value">A <see cref="T:System.CodeDom.CodeTypeReferenceCollection"></see> with which to initialize the collection.</param>
</member>
<member name="M:System.CodeDom.CodeTypeReferenceCollection.Add(System.CodeDom.CodeTypeReference)">
<summary>Adds the specified <see cref="T:System.CodeDom.CodeTypeReference"></see> to the collection.</summary>
<param name="value">The <see cref="T:System.CodeDom.CodeTypeReference"></see> to add.</param>
<returns>The index at which the new element was inserted.</returns>
</member>
<member name="M:System.CodeDom.CodeTypeReferenceCollection.Add(System.String)">
<summary>Adds a <see cref="T:System.CodeDom.CodeTypeReference"></see> to the collection using the specified data type name.</summary>
<param name="value">The name of a data type for which to add a <see cref="T:System.CodeDom.CodeTypeReference"></see> to the collection.</param>
</member>
<member name="M:System.CodeDom.CodeTypeReferenceCollection.Add(System.Type)">
<summary>Adds a <see cref="T:System.CodeDom.CodeTypeReference"></see> to the collection using the specified data type.</summary>
<param name="value">The data type for which to add a <see cref="T:System.CodeDom.CodeTypeReference"></see> to the collection.</param>
</member>
<member name="M:System.CodeDom.CodeTypeReferenceCollection.AddRange(System.CodeDom.CodeTypeReference[])">
<summary>Copies the elements of the specified <see cref="T:System.CodeDom.CodeTypeReference"></see> array to the end of the collection.</summary>
<param name="value">An array of type <see cref="T:System.CodeDom.CodeTypeReference"></see> containing the objects to add to the collection.</param>
<exception cref="T:System.ArgumentNullException"><paramref name="value">value</paramref> is null.</exception>
</member>
<member name="M:System.CodeDom.CodeTypeReferenceCollection.AddRange(System.CodeDom.CodeTypeReferenceCollection)">
<summary>Adds the contents of the specified <see cref="T:System.CodeDom.CodeTypeReferenceCollection"></see> to the end of the collection.</summary>
<param name="value">A <see cref="T:System.CodeDom.CodeTypeReferenceCollection"></see> containing the objects to add to the collection.</param>
<exception cref="T:System.ArgumentNullException"><paramref name="value">value</paramref> is null.</exception>
</member>
<member name="M:System.CodeDom.CodeTypeReferenceCollection.Contains(System.CodeDom.CodeTypeReference)">
<summary>Gets a value indicating whether the collection contains the specified <see cref="T:System.CodeDom.CodeTypeReference"></see>.</summary>
<param name="value">The <see cref="T:System.CodeDom.CodeTypeReference"></see> to search for in the collection.</param>
<returns>true if the <see cref="T:System.CodeDom.CodeTypeReference"></see> is contained in the collection; otherwise, false.</returns>
</member>
<member name="M:System.CodeDom.CodeTypeReferenceCollection.CopyTo(System.CodeDom.CodeTypeReference[],System.Int32)">
<summary>Copies the items in the collection to the specified one-dimensional <see cref="T:System.Array"></see> at the specified index.</summary>
<param name="array">The one-dimensional <see cref="T:System.Array"></see> that is the destination of the values copied from the collection.</param>
<param name="index">The index of the array at which to begin inserting.</param>
<exception cref="T:System.ArgumentException">The <paramref name="array">array</paramref> parameter is multidimensional. -or- The number of elements in the <see cref="T:System.CodeDom.CodeTypeReferenceCollection"></see> is greater than the available space between the index of the target array specified by the <paramref name="index">index</paramref> parameter and the end of the target array.</exception>
<exception cref="T:System.ArgumentNullException">The <paramref name="array">array</paramref> parameter is null.</exception>
<exception cref="T:System.ArgumentOutOfRangeException">The <paramref name="index">index</paramref> parameter is less than the target array's minimum index.</exception>
</member>
<member name="M:System.CodeDom.CodeTypeReferenceCollection.IndexOf(System.CodeDom.CodeTypeReference)">
<summary>Gets the index in the collection of the specified <see cref="T:System.CodeDom.CodeTypeReference"></see>, if it exists in the collection.</summary>
<param name="value">The <see cref="T:System.CodeDom.CodeTypeReference"></see> to locate in the collection.</param>
<returns>The index of the specified <see cref="T:System.CodeDom.CodeTypeReference"></see> in the collection if found; otherwise, -1.</returns>
</member>
<member name="M:System.CodeDom.CodeTypeReferenceCollection.Insert(System.Int32,System.CodeDom.CodeTypeReference)">
<summary>Inserts a <see cref="T:System.CodeDom.CodeTypeReference"></see> into the collection at the specified index.</summary>
<param name="index">The zero-based index where the item should be inserted.</param>
<param name="value">The <see cref="T:System.CodeDom.CodeTypeReference"></see> to insert.</param>
</member>
<member name="P:System.CodeDom.CodeTypeReferenceCollection.Item(System.Int32)">
<summary>Gets or sets the <see cref="T:System.CodeDom.CodeTypeReference"></see> at the specified index in the collection.</summary>
<param name="index">The index of the collection to access.</param>
<returns>A <see cref="T:System.CodeDom.CodeTypeReference"></see> at each valid index.</returns>
<exception cref="T:System.ArgumentOutOfRangeException">The <paramref name="index">index</paramref> parameter is outside the valid range of indexes for the collection.</exception>
</member>
<member name="M:System.CodeDom.CodeTypeReferenceCollection.Remove(System.CodeDom.CodeTypeReference)">
<summary>Removes the specified <see cref="T:System.CodeDom.CodeTypeReference"></see> from the collection.</summary>
<param name="value">The <see cref="T:System.CodeDom.CodeTypeReference"></see> to remove from the collection.</param>
<exception cref="T:System.ArgumentException">The specified object is not found in the collection.</exception>
</member>
<member name="T:System.CodeDom.CodeTypeReferenceExpression">
<summary>Represents a reference to a data type.</summary>
</member>
<member name="M:System.CodeDom.CodeTypeReferenceExpression.#ctor">
<summary>Initializes a new instance of the <see cref="T:System.CodeDom.CodeTypeReferenceExpression"></see> class.</summary>
</member>
<member name="M:System.CodeDom.CodeTypeReferenceExpression.#ctor(System.CodeDom.CodeTypeReference)">
<summary>Initializes a new instance of the <see cref="T:System.CodeDom.CodeTypeReferenceExpression"></see> class using the specified type.</summary>
<param name="type">A <see cref="T:System.CodeDom.CodeTypeReference"></see> that indicates the data type to reference.</param>
</member>
<member name="M:System.CodeDom.CodeTypeReferenceExpression.#ctor(System.String)">
<summary>Initializes a new instance of the <see cref="T:System.CodeDom.CodeTypeReferenceExpression"></see> class using the specified data type name.</summary>
<param name="type">The name of the data type to reference.</param>
</member>
<member name="M:System.CodeDom.CodeTypeReferenceExpression.#ctor(System.Type)">
<summary>Initializes a new instance of the <see cref="T:System.CodeDom.CodeTypeReferenceExpression"></see> class using the specified data type.</summary>
<param name="type">An instance of the data type to reference.</param>
</member>
<member name="P:System.CodeDom.CodeTypeReferenceExpression.Type">
<summary>Gets or sets the data type to reference.</summary>
<returns>A <see cref="T:System.CodeDom.CodeTypeReference"></see> that indicates the data type to reference.</returns>
</member>
<member name="T:System.CodeDom.CodeTypeReferenceOptions">
<summary>Specifies how the code type reference is to be resolved.</summary>
</member>
<member name="F:System.CodeDom.CodeTypeReferenceOptions.GenericTypeParameter">
<summary>Resolve the type from the type parameter.</summary>
<returns></returns>
</member>
<member name="F:System.CodeDom.CodeTypeReferenceOptions.GlobalReference">
<summary>Resolve the type from the root namespace.</summary>
<returns></returns>
</member>
<member name="T:System.CodeDom.CodeVariableDeclarationStatement">
<summary>Represents a variable declaration.</summary>
</member>
<member name="M:System.CodeDom.CodeVariableDeclarationStatement.#ctor">
<summary>Initializes a new instance of the <see cref="T:System.CodeDom.CodeVariableDeclarationStatement"></see> class.</summary>
</member>
<member name="M:System.CodeDom.CodeVariableDeclarationStatement.#ctor(System.CodeDom.CodeTypeReference,System.String)">
<summary>Initializes a new instance of the <see cref="T:System.CodeDom.CodeVariableDeclarationStatement"></see> class using the specified type and name.</summary>
<param name="type">A <see cref="T:System.CodeDom.CodeTypeReference"></see> that indicates the data type of the variable.</param>
<param name="name">The name of the variable.</param>
</member>
<member name="M:System.CodeDom.CodeVariableDeclarationStatement.#ctor(System.String,System.String)">
<summary>Initializes a new instance of the <see cref="T:System.CodeDom.CodeVariableDeclarationStatement"></see> class using the specified data type name and variable name.</summary>
<param name="type">The name of the data type of the variable.</param>
<param name="name">The name of the variable.</param>
</member>
<member name="M:System.CodeDom.CodeVariableDeclarationStatement.#ctor(System.Type,System.String)">
<summary>Initializes a new instance of the <see cref="T:System.CodeDom.CodeVariableDeclarationStatement"></see> class using the specified data type and variable name.</summary>
<param name="type">The data type for the variable.</param>
<param name="name">The name of the variable.</param>
</member>
<member name="M:System.CodeDom.CodeVariableDeclarationStatement.#ctor(System.CodeDom.CodeTypeReference,System.String,System.CodeDom.CodeExpression)">
<summary>Initializes a new instance of the <see cref="T:System.CodeDom.CodeVariableDeclarationStatement"></see> class using the specified data type, variable name, and initialization expression.</summary>
<param name="type">A <see cref="T:System.CodeDom.CodeTypeReference"></see> that indicates the type of the variable.</param>
<param name="name">The name of the variable.</param>
<param name="initExpression">A <see cref="T:System.CodeDom.CodeExpression"></see> that indicates the initialization expression for the variable.</param>
</member>
<member name="M:System.CodeDom.CodeVariableDeclarationStatement.#ctor(System.String,System.String,System.CodeDom.CodeExpression)">
<summary>Initializes a new instance of the <see cref="T:System.CodeDom.CodeVariableDeclarationStatement"></see> class using the specified data type, variable name, and initialization expression.</summary>
<param name="type">The name of the data type of the variable.</param>
<param name="name">The name of the variable.</param>
<param name="initExpression">A <see cref="T:System.CodeDom.CodeExpression"></see> that indicates the initialization expression for the variable.</param>
</member>
<member name="M:System.CodeDom.CodeVariableDeclarationStatement.#ctor(System.Type,System.String,System.CodeDom.CodeExpression)">
<summary>Initializes a new instance of the <see cref="T:System.CodeDom.CodeVariableDeclarationStatement"></see> class using the specified data type, variable name, and initialization expression.</summary>
<param name="type">The data type of the variable.</param>
<param name="name">The name of the variable.</param>
<param name="initExpression">A <see cref="T:System.CodeDom.CodeExpression"></see> that indicates the initialization expression for the variable.</param>
</member>
<member name="P:System.CodeDom.CodeVariableDeclarationStatement.InitExpression">
<summary>Gets or sets the initialization expression for the variable.</summary>
<returns>A <see cref="T:System.CodeDom.CodeExpression"></see> that indicates the initialization expression for the variable.</returns>
</member>
<member name="P:System.CodeDom.CodeVariableDeclarationStatement.Name">
<summary>Gets or sets the name of the variable.</summary>
<returns>The name of the variable.</returns>
</member>
<member name="P:System.CodeDom.CodeVariableDeclarationStatement.Type">
<summary>Gets or sets the data type of the variable.</summary>
<returns>A <see cref="T:System.CodeDom.CodeTypeReference"></see> that indicates the data type of the variable.</returns>
</member>
<member name="T:System.CodeDom.CodeVariableReferenceExpression">
<summary>Represents a reference to a local variable.</summary>
</member>
<member name="M:System.CodeDom.CodeVariableReferenceExpression.#ctor">
<summary>Initializes a new instance of the <see cref="T:System.CodeDom.CodeVariableReferenceExpression"></see> class.</summary>
</member>
<member name="M:System.CodeDom.CodeVariableReferenceExpression.#ctor(System.String)">
<summary>Initializes a new instance of the <see cref="T:System.CodeDom.CodeVariableReferenceExpression"></see> class using the specified local variable name.</summary>
<param name="variableName">The name of the local variable to reference.</param>
</member>
<member name="P:System.CodeDom.CodeVariableReferenceExpression.VariableName">
<summary>Gets or sets the name of the local variable to reference.</summary>
<returns>The name of the local variable to reference.</returns>
</member>
<member name="T:System.CodeDom.Compiler.CodeCompiler">
<summary>Provides an example implementation of the <see cref="T:System.CodeDom.Compiler.ICodeCompiler"></see> interface.</summary>
</member>
<member name="M:System.CodeDom.Compiler.CodeCompiler.#ctor">
<summary>Initializes a new instance of the <see cref="T:System.CodeDom.Compiler.CodeCompiler"></see> class.</summary>
</member>
<member name="M:System.CodeDom.Compiler.CodeCompiler.CmdArgsFromParameters(System.CodeDom.Compiler.CompilerParameters)">
<summary>Gets the command arguments to be passed to the compiler from the specified <see cref="T:System.CodeDom.Compiler.CompilerParameters"></see>.</summary>
<param name="options">A <see cref="T:System.CodeDom.Compiler.CompilerParameters"></see> that indicates the compiler options.</param>
<returns>The command arguments.</returns>
</member>
<member name="P:System.CodeDom.Compiler.CodeCompiler.CompilerName">
<summary>Gets the name of the compiler executable.</summary>
<returns>The name of the compiler executable.</returns>
</member>
<member name="P:System.CodeDom.Compiler.CodeCompiler.FileExtension">
<summary>Gets the file name extension to use for source files.</summary>
<returns>The file name extension to use for source files.</returns>
</member>
<member name="M:System.CodeDom.Compiler.CodeCompiler.FromDom(System.CodeDom.Compiler.CompilerParameters,System.CodeDom.CodeCompileUnit)">
<summary>Compiles the specified compile unit using the specified options, and returns the results from the compilation.</summary>
<param name="options">A <see cref="T:System.CodeDom.Compiler.CompilerParameters"></see> object that indicates the compiler options.</param>
<param name="e">A <see cref="T:System.CodeDom.CodeCompileUnit"></see> object that indicates the source to compile.</param>
<returns>The results of compilation.</returns>
<exception cref="T:System.ArgumentNullException"><paramref name="options">options</paramref> is null.</exception>
</member>
<member name="M:System.CodeDom.Compiler.CodeCompiler.FromDomBatch(System.CodeDom.Compiler.CompilerParameters,System.CodeDom.CodeCompileUnit[])">
<summary>Compiles the specified compile units using the specified options, and returns the results from the compilation.</summary>
<param name="options">A <see cref="T:System.CodeDom.Compiler.CompilerParameters"></see> object that indicates the compiler options.</param>
<param name="ea">An array of <see cref="T:System.CodeDom.CodeCompileUnit"></see> objects that indicates the source to compile.</param>
<returns>The results of compilation.</returns>
<exception cref="T:System.ArgumentNullException"><paramref name="options">options</paramref> is null. -or- <paramref name="ea">ea</paramref> is null.</exception>
</member>
<member name="M:System.CodeDom.Compiler.CodeCompiler.FromFile(System.CodeDom.Compiler.CompilerParameters,System.String)">
<summary>Compiles the specified file using the specified options, and returns the results from the compilation.</summary>
<param name="options">A <see cref="T:System.CodeDom.Compiler.CompilerParameters"></see> object that indicates the compiler options.</param>
<param name="fileName">The file name to compile.</param>
<returns>The results of compilation.</returns>
<exception cref="T:System.ArgumentNullException"><paramref name="options">options</paramref> is null. -or- <paramref name="fileName">fileName</paramref> is null.</exception>
</member>
<member name="M:System.CodeDom.Compiler.CodeCompiler.FromFileBatch(System.CodeDom.Compiler.CompilerParameters,System.String[])">
<summary>Compiles the specified files using the specified options, and returns the results from the compilation.</summary>
<param name="options">A <see cref="T:System.CodeDom.Compiler.CompilerParameters"></see> object that indicates the compiler options.</param>
<param name="fileNames">An array of strings that indicates the file names of the files to compile.</param>
<returns>The results of compilation.</returns>
<exception cref="T:System.ArgumentNullException"><paramref name="options">options</paramref> is null. -or- <paramref name="fileNames">fileNames</paramref> is null.</exception>
</member>
<member name="M:System.CodeDom.Compiler.CodeCompiler.FromSource(System.CodeDom.Compiler.CompilerParameters,System.String)">
<summary>Compiles the specified source code string using the specified options, and returns the results from the compilation.</summary>
<param name="options">A <see cref="T:System.CodeDom.Compiler.CompilerParameters"></see> object that indicates the compiler options.</param>
<param name="source">The source code string to compile.</param>
<returns>The results of compilation.</returns>
<exception cref="T:System.ArgumentNullException"><paramref name="options">options</paramref> is null.</exception>
</member>
<member name="M:System.CodeDom.Compiler.CodeCompiler.FromSourceBatch(System.CodeDom.Compiler.CompilerParameters,System.String[])">
<summary>Compiles the specified source code strings using the specified options, and returns the results from the compilation.</summary>
<param name="options">A <see cref="T:System.CodeDom.Compiler.CompilerParameters"></see> object that indicates the compiler options.</param>
<param name="sources">An array of strings containing the source code to compile.</param>
<returns>The results of compilation.</returns>
<exception cref="T:System.ArgumentNullException"><paramref name="options">options</paramref> is null. -or- <paramref name="sources">sources</paramref> is null.</exception>
</member>
<member name="M:System.CodeDom.Compiler.CodeCompiler.GetResponseFileCmdArgs(System.CodeDom.Compiler.CompilerParameters,System.String)">
<summary>Gets the command arguments to use when invoking the compiler to generate a response file.</summary>
<param name="options">A <see cref="T:System.CodeDom.Compiler.CompilerParameters"></see> object that indicates the compiler options.</param>
<param name="cmdArgs">A command arguments string.</param>
<returns>The command arguments to use to generate a response file, or null if there are no response file arguments.</returns>
</member>
<member name="M:System.CodeDom.Compiler.CodeCompiler.JoinStringArray(System.String[],System.String)">
<summary>Joins the specified string arrays.</summary>
<param name="sa">The array of strings to join.</param>
<param name="separator">The separator to use.</param>
<returns>The concatenated string.</returns>
</member>
<member name="M:System.CodeDom.Compiler.CodeCompiler.ProcessCompilerOutputLine(System.CodeDom.Compiler.CompilerResults,System.String)">
<summary>Processes the specified line from the specified <see cref="T:System.CodeDom.Compiler.CompilerResults"></see>.</summary>
<param name="results">A <see cref="T:System.CodeDom.Compiler.CompilerResults"></see> that indicates the results of compilation.</param>
<param name="line">The line to process.</param>
</member>
<member name="M:System.CodeDom.Compiler.CodeCompiler.System#CodeDom#Compiler#ICodeCompiler#CompileAssemblyFromDom(System.CodeDom.Compiler.CompilerParameters,System.CodeDom.CodeCompileUnit)">
<summary>For a description of this member, see <see cref="M:System.CodeDom.Compiler.ICodeCompiler.CompileAssemblyFromDom(System.CodeDom.Compiler.CompilerParameters,System.CodeDom.CodeCompileUnit)"></see>.</summary>
<param name="options">A <see cref="T:System.CodeDom.Compiler.CompilerParameters"></see> object that indicates the compiler options.</param>
<param name="e">A <see cref="T:System.CodeDom.CodeCompileUnit"></see> that indicates the source to compile.</param>
<returns>The results of compilation.</returns>
<exception cref="T:System.ArgumentNullException"><paramref name="options">options</paramref> is null.</exception>
</member>
<member name="M:System.CodeDom.Compiler.CodeCompiler.System#CodeDom#Compiler#ICodeCompiler#CompileAssemblyFromDomBatch(System.CodeDom.Compiler.CompilerParameters,System.CodeDom.CodeCompileUnit[])">
<summary>For a description of this member, see <see cref="M:System.CodeDom.Compiler.ICodeCompiler.CompileAssemblyFromDomBatch(System.CodeDom.Compiler.CompilerParameters,System.CodeDom.CodeCompileUnit[])"></see>.</summary>
<param name="options">A <see cref="T:System.CodeDom.Compiler.CompilerParameters"></see> object that indicates the compiler options.</param>
<param name="ea">An array of <see cref="T:System.CodeDom.CodeCompileUnit"></see> objects that indicates the source to compile.</param>
<returns>The results of compilation.</returns>
</member>
<member name="M:System.CodeDom.Compiler.CodeCompiler.System#CodeDom#Compiler#ICodeCompiler#CompileAssemblyFromFile(System.CodeDom.Compiler.CompilerParameters,System.String)">
<summary>For a description of this member, see <see cref="M:System.CodeDom.Compiler.ICodeCompiler.CompileAssemblyFromFile(System.CodeDom.Compiler.CompilerParameters,System.String)"></see>.</summary>
<param name="options">A <see cref="T:System.CodeDom.Compiler.CompilerParameters"></see> object that indicates the compiler options.</param>
<param name="fileName">The file name to compile.</param>
<returns>The results of compilation.</returns>
<exception cref="T:System.ArgumentNullException"><paramref name="options">options</paramref> is null.</exception>
</member>
<member name="M:System.CodeDom.Compiler.CodeCompiler.System#CodeDom#Compiler#ICodeCompiler#CompileAssemblyFromFileBatch(System.CodeDom.Compiler.CompilerParameters,System.String[])">
<summary>For a description of this member, see <see cref="M:System.CodeDom.Compiler.ICodeCompiler.CompileAssemblyFromFileBatch(System.CodeDom.Compiler.CompilerParameters,System.String[])"></see>.</summary>
<param name="options">A <see cref="T:System.CodeDom.Compiler.CompilerParameters"></see> object that indicates the compiler options.</param>
<param name="fileNames">An array of strings that indicates the file names to compile.</param>
<returns>The results of compilation.</returns>
</member>
<member name="M:System.CodeDom.Compiler.CodeCompiler.System#CodeDom#Compiler#ICodeCompiler#CompileAssemblyFromSource(System.CodeDom.Compiler.CompilerParameters,System.String)">
<summary>For a description of this member, see <see cref="M:System.CodeDom.Compiler.ICodeCompiler.CompileAssemblyFromSource(System.CodeDom.Compiler.CompilerParameters,System.String)"></see>.</summary>
<param name="options">A <see cref="T:System.CodeDom.Compiler.CompilerParameters"></see> object that indicates the compiler options.</param>
<param name="source">A string that indicates the source code to compile.</param>
<returns>The results of compilation.</returns>
<exception cref="T:System.ArgumentNullException"><paramref name="options">options</paramref> is null.</exception>
</member>
<member name="M:System.CodeDom.Compiler.CodeCompiler.System#CodeDom#Compiler#ICodeCompiler#CompileAssemblyFromSourceBatch(System.CodeDom.Compiler.CompilerParameters,System.String[])">
<summary>For a description of this member, see <see cref="M:System.CodeDom.Compiler.ICodeCompiler.CompileAssemblyFromSourceBatch(System.CodeDom.Compiler.CompilerParameters,System.String[])"></see>.</summary>
<param name="options">A <see cref="T:System.CodeDom.Compiler.CompilerParameters"></see> object that indicates the compiler options.</param>
<param name="sources">An array of strings that indicates the source code to compile.</param>
<returns>The results of compilation.</returns>
<exception cref="T:System.ArgumentNullException"><paramref name="options">options</paramref> is null.</exception>
</member>
<member name="T:System.CodeDom.Compiler.CodeDomProvider">
<summary>Provides a base class for <see cref="T:System.CodeDom.Compiler.CodeDomProvider"></see> implementations. This class is abstract.</summary>
</member>
<member name="M:System.CodeDom.Compiler.CodeDomProvider.#ctor">
<summary>Initializes a new instance of the <see cref="T:System.CodeDom.Compiler.CodeDomProvider"></see> class.</summary>
</member>
<member name="M:System.CodeDom.Compiler.CodeDomProvider.CompileAssemblyFromDom(System.CodeDom.Compiler.CompilerParameters,System.CodeDom.CodeCompileUnit[])">
<summary>Compiles an assembly based on the <see cref="N:System.CodeDom"></see> trees contained in the specified array of <see cref="T:System.CodeDom.CodeCompileUnit"></see> objects, using the specified compiler settings.</summary>
<param name="options">A <see cref="T:System.CodeDom.Compiler.CompilerParameters"></see> object that indicates the settings for the compilation.</param>
<param name="compilationUnits">An array of type <see cref="T:System.CodeDom.CodeCompileUnit"></see> that indicates the code to compile.</param>
<returns>A <see cref="T:System.CodeDom.Compiler.CompilerResults"></see> object that indicates the results of the compilation.</returns>
<exception cref="T:System.NotImplementedException">Neither this method nor the <see cref="M:System.CodeDom.Compiler.CodeDomProvider.CreateCompiler"></see> method is overridden in a derived class.</exception>
</member>
<member name="M:System.CodeDom.Compiler.CodeDomProvider.CompileAssemblyFromFile(System.CodeDom.Compiler.CompilerParameters,System.String[])">
<summary>Compiles an assembly from the source code contained in the specified files, using the specified compiler settings.</summary>
<param name="options">A <see cref="T:System.CodeDom.Compiler.CompilerParameters"></see> object that indicates the settings for the compilation.</param>
<param name="fileNames">An array of the names of the files to compile.</param>
<returns>A <see cref="T:System.CodeDom.Compiler.CompilerResults"></see> object that indicates the results of compilation.</returns>
<exception cref="T:System.NotImplementedException">Neither this method nor the <see cref="M:System.CodeDom.Compiler.CodeDomProvider.CreateCompiler"></see> method is overridden in a derived class.</exception>
</member>
<member name="M:System.CodeDom.Compiler.CodeDomProvider.CompileAssemblyFromSource(System.CodeDom.Compiler.CompilerParameters,System.String[])">
<summary>Compiles an assembly from the specified array of strings containing source code, using the specified compiler settings.</summary>
<param name="options">A <see cref="T:System.CodeDom.Compiler.CompilerParameters"></see> object that indicates the compiler settings for this compilation.</param>
<param name="sources">An array of source code strings to compile.</param>
<returns>A <see cref="T:System.CodeDom.Compiler.CompilerResults"></see> object that indicates the results of compilation.</returns>
<exception cref="T:System.NotImplementedException">Neither this method nor the <see cref="M:System.CodeDom.Compiler.CodeDomProvider.CreateCompiler"></see> method is overridden in a derived class.</exception>
</member>
<member name="M:System.CodeDom.Compiler.CodeDomProvider.CreateCompiler">
<summary>When overridden in a derived class, creates a new code compiler.</summary>
<returns>An <see cref="T:System.CodeDom.Compiler.ICodeCompiler"></see> that can be used for compilation of <see cref="N:System.CodeDom"></see> based source code representations.</returns>
</member>
<member name="M:System.CodeDom.Compiler.CodeDomProvider.CreateEscapedIdentifier(System.String)">
<summary>Creates an escaped identifier for the specified value.</summary>
<param name="value">The string for which to create an escaped identifier.</param>
<returns>The escaped identifier for the value.</returns>
<exception cref="T:System.NotImplementedException">Neither this method nor the <see cref="M:System.CodeDom.Compiler.CodeDomProvider.CreateGenerator"></see> method is overridden in a derived class.</exception>
</member>
<member name="M:System.CodeDom.Compiler.CodeDomProvider.CreateGenerator">
<summary>When overridden in a derived class, creates a new code generator.</summary>
<returns>An <see cref="T:System.CodeDom.Compiler.ICodeGenerator"></see> that can be used to generate <see cref="N:System.CodeDom"></see> based source code representations.</returns>
</member>
<member name="M:System.CodeDom.Compiler.CodeDomProvider.CreateGenerator(System.IO.TextWriter)">
<summary>When overridden in a derived class, creates a new code generator using the specified <see cref="T:System.IO.TextWriter"></see> for output.</summary>
<param name="output">A <see cref="T:System.IO.TextWriter"></see> to use to output.</param>
<returns>An <see cref="T:System.CodeDom.Compiler.ICodeGenerator"></see> that can be used to generate <see cref="N:System.CodeDom"></see> based source code representations.</returns>
</member>
<member name="M:System.CodeDom.Compiler.CodeDomProvider.CreateGenerator(System.String)">
<summary>When overridden in a derived class, creates a new code generator using the specified file name for output.</summary>
<param name="fileName">The file name to output to.</param>
<returns>An <see cref="T:System.CodeDom.Compiler.ICodeGenerator"></see> that can be used to generate <see cref="N:System.CodeDom"></see> based source code representations.</returns>
</member>
<member name="M:System.CodeDom.Compiler.CodeDomProvider.CreateParser">
<summary>When overridden in a derived class, creates a new code parser.</summary>
<returns>An <see cref="T:System.CodeDom.Compiler.ICodeParser"></see> that can be used to parse source code. The base implementation always returns null.</returns>
</member>
<member name="M:System.CodeDom.Compiler.CodeDomProvider.CreateProvider(System.String)">
<summary>Gets a <see cref="T:System.CodeDom.Compiler.CodeDomProvider"></see> instance for the specified language.</summary>
<param name="language">The language name.</param>
<returns>A CodeDOM provider that is implemented for the specified language name.</returns>
<exception cref="T:System.Configuration.ConfigurationErrorsException">The <paramref name="language">language</paramref> does not have a configured provider on this computer.</exception>
<exception cref="T:System.ArgumentNullException">The <paramref name="language">language</paramref> is null.</exception>
<exception cref="T:System.Security.SecurityException">The caller does not have the required permission.</exception>
</member>
<member name="M:System.CodeDom.Compiler.CodeDomProvider.CreateProvider(System.String,System.Collections.Generic.IDictionary{System.String,System.String})">
<summary>Gets a <see cref="T:System.CodeDom.Compiler.CodeDomProvider"></see> instance for the specified language and provider options.</summary>
<param name="language">The language name.</param>
<param name="providerOptions">A collection of provider options from the configuration file.</param>
<returns>A CodeDOM provider that is implemented for the specified language name and options.</returns>
</member>
<member name="M:System.CodeDom.Compiler.CodeDomProvider.CreateValidIdentifier(System.String)">
<summary>Creates a valid identifier for the specified value.</summary>
<param name="value">The string for which to generate a valid identifier.</param>
<returns>A valid identifier for the specified value.</returns>
<exception cref="T:System.NotImplementedException">Neither this method nor the <see cref="M:System.CodeDom.Compiler.CodeDomProvider.CreateGenerator"></see> method is overridden in a derived class.</exception>
</member>
<member name="P:System.CodeDom.Compiler.CodeDomProvider.FileExtension">
<summary>Gets the default file name extension to use for source code files in the current language.</summary>
<returns>A file name extension corresponding to the extension of the source files of the current language. The base implementation always returns <see cref="F:System.String.Empty"></see>.</returns>
</member>
<member name="M:System.CodeDom.Compiler.CodeDomProvider.GenerateCodeFromCompileUnit(System.CodeDom.CodeCompileUnit,System.IO.TextWriter,System.CodeDom.Compiler.CodeGeneratorOptions)">
<summary>Generates code for the specified Code Document Object Model (CodeDOM) compilation unit and sends it to the specified text writer, using the specified options.</summary>
<param name="compileUnit">A <see cref="T:System.CodeDom.CodeCompileUnit"></see> for which to generate code.</param>
<param name="writer">The <see cref="T:System.IO.TextWriter"></see> to which the output code is sent.</param>
<param name="options">A <see cref="T:System.CodeDom.Compiler.CodeGeneratorOptions"></see> that indicates the options to use for generating code.</param>
<exception cref="T:System.NotImplementedException">Neither this method nor the <see cref="M:System.CodeDom.Compiler.CodeDomProvider.CreateGenerator"></see> method is overridden in a derived class.</exception>
</member>
<member name="M:System.CodeDom.Compiler.CodeDomProvider.GenerateCodeFromExpression(System.CodeDom.CodeExpression,System.IO.TextWriter,System.CodeDom.Compiler.CodeGeneratorOptions)">
<summary>Generates code for the specified Code Document Object Model (CodeDOM) expression and sends it to the specified text writer, using the specified options.</summary>
<param name="expression">A <see cref="T:System.CodeDom.CodeExpression"></see> object that indicates the expression for which to generate code.</param>
<param name="writer">The <see cref="T:System.IO.TextWriter"></see> to which output code is sent.</param>
<param name="options">A <see cref="T:System.CodeDom.Compiler.CodeGeneratorOptions"></see> that indicates the options to use for generating code.</param>
<exception cref="T:System.NotImplementedException">Neither this method nor the <see cref="M:System.CodeDom.Compiler.CodeDomProvider.CreateGenerator"></see> method is overridden in a derived class.</exception>
</member>
<member name="M:System.CodeDom.Compiler.CodeDomProvider.GenerateCodeFromMember(System.CodeDom.CodeTypeMember,System.IO.TextWriter,System.CodeDom.Compiler.CodeGeneratorOptions)">
<summary>Generates code for the specified Code Document Object Model (CodeDOM) member declaration and sends it to the specified text writer, using the specified options.</summary>
<param name="member">A <see cref="T:System.CodeDom.CodeTypeMember"></see> object that indicates the member for which to generate code.</param>
<param name="writer">The <see cref="T:System.IO.TextWriter"></see> to which output code is sent.</param>
<param name="options">A <see cref="T:System.CodeDom.Compiler.CodeGeneratorOptions"></see> that indicates the options to use for generating code.</param>
<exception cref="T:System.NotImplementedException">This method is not overridden in a derived class.</exception>
</member>
<member name="M:System.CodeDom.Compiler.CodeDomProvider.GenerateCodeFromNamespace(System.CodeDom.CodeNamespace,System.IO.TextWriter,System.CodeDom.Compiler.CodeGeneratorOptions)">
<summary>Generates code for the specified Code Document Object Model (CodeDOM) namespace and sends it to the specified text writer, using the specified options.</summary>
<param name="codeNamespace">A <see cref="T:System.CodeDom.CodeNamespace"></see> object that indicates the namespace for which to generate code.</param>
<param name="writer">The <see cref="T:System.IO.TextWriter"></see> to which output code is sent.</param>
<param name="options">A <see cref="T:System.CodeDom.Compiler.CodeGeneratorOptions"></see> that indicates the options to use for generating code.</param>
<exception cref="T:System.NotImplementedException">Neither this method nor the <see cref="M:System.CodeDom.Compiler.CodeDomProvider.CreateGenerator"></see> method is overridden in a derived class.</exception>
</member>
<member name="M:System.CodeDom.Compiler.CodeDomProvider.GenerateCodeFromStatement(System.CodeDom.CodeStatement,System.IO.TextWriter,System.CodeDom.Compiler.CodeGeneratorOptions)">
<summary>Generates code for the specified Code Document Object Model (CodeDOM) statement and sends it to the specified text writer, using the specified options.</summary>
<param name="statement">A <see cref="T:System.CodeDom.CodeStatement"></see> containing the CodeDOM elements for which to generate code.</param>
<param name="writer">The <see cref="T:System.IO.TextWriter"></see> to which output code is sent.</param>
<param name="options">A <see cref="T:System.CodeDom.Compiler.CodeGeneratorOptions"></see> that indicates the options to use for generating code.</param>
<exception cref="T:System.NotImplementedException">Neither this method nor the <see cref="M:System.CodeDom.Compiler.CodeDomProvider.CreateGenerator"></see> method is overridden in a derived class.</exception>
</member>
<member name="M:System.CodeDom.Compiler.CodeDomProvider.GenerateCodeFromType(System.CodeDom.CodeTypeDeclaration,System.IO.TextWriter,System.CodeDom.Compiler.CodeGeneratorOptions)">
<summary>Generates code for the specified Code Document Object Model (CodeDOM) type declaration and sends it to the specified text writer, using the specified options.</summary>
<param name="codeType">A <see cref="T:System.CodeDom.CodeTypeDeclaration"></see> object that indicates the type for which to generate code.</param>
<param name="writer">The <see cref="T:System.IO.TextWriter"></see> to which output code is sent.</param>
<param name="options">A <see cref="T:System.CodeDom.Compiler.CodeGeneratorOptions"></see> that indicates the options to use for generating code.</param>
<exception cref="T:System.NotImplementedException">Neither this method nor the <see cref="M:System.CodeDom.Compiler.CodeDomProvider.CreateGenerator"></see> method is overridden in a derived class.</exception>
</member>
<member name="M:System.CodeDom.Compiler.CodeDomProvider.GetAllCompilerInfo">
<summary>Returns the language provider and compiler configuration settings for this computer.</summary>
<returns>An array of type <see cref="T:System.CodeDom.Compiler.CompilerInfo"></see> representing the settings of all configured <see cref="T:System.CodeDom.Compiler.CodeDomProvider"></see> implementations.</returns>
<exception cref="T:System.Security.SecurityException">The caller does not have the required permission.</exception>
</member>
<member name="M:System.CodeDom.Compiler.CodeDomProvider.GetCompilerInfo(System.String)">
<summary>Returns the language provider and compiler configuration settings for the specified language.</summary>
<param name="language">A language name.</param>
<returns>A <see cref="T:System.CodeDom.Compiler.CompilerInfo"></see> object populated with settings of the configured <see cref="T:System.CodeDom.Compiler.CodeDomProvider"></see> implementation.</returns>
<exception cref="T:System.Configuration.ConfigurationException">The <paramref name="language">language</paramref> does not have a configured provider on this computer.</exception>
<exception cref="T:System.Configuration.ConfigurationErrorsException">The <paramref name="language">language</paramref> is null.</exception>
<exception cref="T:System.Security.SecurityException">The caller does not have the required permission.</exception>
</member>
<member name="M:System.CodeDom.Compiler.CodeDomProvider.GetConverter(System.Type)">
<summary>Gets a <see cref="T:System.ComponentModel.TypeConverter"></see> for the specified data type.</summary>
<param name="type">The type of object to retrieve a type converter for.</param>
<returns>A <see cref="T:System.ComponentModel.TypeConverter"></see> for the specified type, or null if a <see cref="T:System.ComponentModel.TypeConverter"></see> for the specified type cannot be found.</returns>
</member>
<member name="M:System.CodeDom.Compiler.CodeDomProvider.GetLanguageFromExtension(System.String)">
<summary>Returns a language name associated with the specified file name extension, as configured in the <see cref="T:System.CodeDom.Compiler.CodeDomProvider"></see> compiler configuration section.</summary>
<param name="extension">A file name extension.</param>
<returns>A language name associated with the file name extension, as configured in the <see cref="T:System.CodeDom.Compiler.CodeDomProvider"></see> compiler configuration settings.</returns>
<exception cref="T:System.Configuration.ConfigurationException">The <paramref name="extension">extension</paramref> does not have a configured language provider on this computer.</exception>
<exception cref="T:System.Configuration.ConfigurationErrorsException">The <paramref name="extension">extension</paramref> is null.</exception>
<exception cref="T:System.Security.SecurityException">The caller does not have the required permission.</exception>
</member>
<member name="M:System.CodeDom.Compiler.CodeDomProvider.GetTypeOutput(System.CodeDom.CodeTypeReference)">
<summary>Gets the type indicated by the specified <see cref="T:System.CodeDom.CodeTypeReference"></see>.</summary>
<param name="type">A <see cref="T:System.CodeDom.CodeTypeReference"></see> that indicates the type to return.</param>
<returns>A text representation of the specified type, formatted for the language in which code is generated by this code generator. In Visual Basic, for example, passing in a <see cref="T:System.CodeDom.CodeTypeReference"></see> for the <see cref="T:System.Int32"></see> type will return "Integer".</returns>
<exception cref="T:System.NotImplementedException">Neither this method nor the <see cref="M:System.CodeDom.Compiler.CodeDomProvider.CreateGenerator"></see> method is overridden in a derived class.</exception>
</member>
<member name="M:System.CodeDom.Compiler.CodeDomProvider.IsDefinedExtension(System.String)">
<summary>Tests whether a file name extension has an associated <see cref="T:System.CodeDom.Compiler.CodeDomProvider"></see> implementation configured on the computer.</summary>
<param name="extension">A file name extension.</param>
<returns>true if a <see cref="T:System.CodeDom.Compiler.CodeDomProvider"></see> implementation is configured for the specified file name extension; otherwise, false.</returns>
<exception cref="T:System.ArgumentNullException">The <paramref name="extension">extension</paramref> is null.</exception>
<exception cref="T:System.Security.SecurityException">The caller does not have the required permission.</exception>
</member>
<member name="M:System.CodeDom.Compiler.CodeDomProvider.IsDefinedLanguage(System.String)">
<summary>Tests whether a language has a <see cref="T:System.CodeDom.Compiler.CodeDomProvider"></see> implementation configured on the computer.</summary>
<param name="language">The language name.</param>
<returns>true if a <see cref="T:System.CodeDom.Compiler.CodeDomProvider"></see> implementation is configured for the specified language; otherwise, false.</returns>
<exception cref="T:System.ArgumentNullException">The <paramref name="language">language</paramref> is null.</exception>
<exception cref="T:System.Security.SecurityException">The caller does not have the required permission.</exception>
</member>
<member name="M:System.CodeDom.Compiler.CodeDomProvider.IsValidIdentifier(System.String)">
<summary>Returns a value that indicates whether the specified value is a valid identifier for the current language.</summary>
<param name="value">The value to verify as a valid identifier.</param>
<returns>true if the <paramref name="value">value</paramref> parameter is a valid identifier; otherwise, false.</returns>
<exception cref="T:System.NotImplementedException">Neither this method nor the <see cref="M:System.CodeDom.Compiler.CodeDomProvider.CreateGenerator"></see> method is overridden in a derived class.</exception>
</member>
<member name="P:System.CodeDom.Compiler.CodeDomProvider.LanguageOptions">
<summary>Gets a language features identifier.</summary>
<returns>A <see cref="T:System.CodeDom.Compiler.LanguageOptions"></see> that indicates special features of the language.</returns>
</member>
<member name="M:System.CodeDom.Compiler.CodeDomProvider.Parse(System.IO.TextReader)">
<summary>Compiles the code read from the specified text stream into a <see cref="T:System.CodeDom.CodeCompileUnit"></see>.</summary>
<param name="codeStream">A <see cref="T:System.IO.TextReader"></see> object that is used to read the code to be parsed.</param>
<returns>A <see cref="T:System.CodeDom.CodeCompileUnit"></see> that contains a representation of the parsed code.</returns>
<exception cref="T:System.NotImplementedException">Neither this method nor the <see cref="M:System.CodeDom.Compiler.CodeDomProvider.CreateGenerator"></see> method is overridden in a derived class.</exception>
</member>
<member name="M:System.CodeDom.Compiler.CodeDomProvider.Supports(System.CodeDom.Compiler.GeneratorSupport)">
<summary>Returns a value indicating whether the specified code generation support is provided.</summary>
<param name="generatorSupport"></param>
<returns>true if the specified code generation support is provided; otherwise, false.</returns>
<exception cref="T:System.NotImplementedException">Neither this method nor the <see cref="M:System.CodeDom.Compiler.CodeDomProvider.CreateGenerator"></see> method is overridden in a derived class.</exception>
</member>
<member name="T:System.CodeDom.Compiler.CodeGenerator">
<summary>Provides an example implementation of the <see cref="T:System.CodeDom.Compiler.ICodeGenerator"></see> interface. This class is abstract.</summary>
</member>
<member name="M:System.CodeDom.Compiler.CodeGenerator.#ctor">
<summary>Initializes a new instance of the <see cref="T:System.CodeDom.Compiler.CodeGenerator"></see> class.</summary>
</member>
<member name="M:System.CodeDom.Compiler.CodeGenerator.ContinueOnNewLine(System.String)">
<summary>Generates a line-continuation character and outputs the specified string on a new line.</summary>
<param name="st">The string to write on the new line.</param>
</member>
<member name="M:System.CodeDom.Compiler.CodeGenerator.CreateEscapedIdentifier(System.String)">
<summary>Creates an escaped identifier for the specified value.</summary>
<param name="value">The string to create an escaped identifier for.</param>
<returns>The escaped identifier for the value.</returns>
</member>
<member name="M:System.CodeDom.Compiler.CodeGenerator.CreateValidIdentifier(System.String)">
<summary>Creates a valid identifier for the specified value.</summary>
<param name="value">A string to create a valid identifier for.</param>
<returns>A valid identifier for the value.</returns>
</member>
<member name="P:System.CodeDom.Compiler.CodeGenerator.CurrentClass">
<summary>Gets the code type declaration for the current class.</summary>
<returns>The code type declaration for the current class.</returns>
</member>
<member name="P:System.CodeDom.Compiler.CodeGenerator.CurrentMember">
<summary>Gets the current member of the class.</summary>
<returns>The current member of the class.</returns>
</member>
<member name="P:System.CodeDom.Compiler.CodeGenerator.CurrentMemberName">
<summary>Gets the current member name.</summary>
<returns>The name of the current member.</returns>
</member>
<member name="P:System.CodeDom.Compiler.CodeGenerator.CurrentTypeName">
<summary>Gets the current class name.</summary>
<returns>The current class name.</returns>
</member>
<member name="M:System.CodeDom.Compiler.CodeGenerator.GenerateArgumentReferenceExpression(System.CodeDom.CodeArgumentReferenceExpression)">
<summary>Generates code for the specified argument reference expression.</summary>
<param name="e">A <see cref="T:System.CodeDom.CodeArgumentReferenceExpression"></see> that indicates the expression to generate code for.</param>
</member>
<member name="M:System.CodeDom.Compiler.CodeGenerator.GenerateArrayCreateExpression(System.CodeDom.CodeArrayCreateExpression)">
<summary>Generates code for the specified array creation expression.</summary>
<param name="e">A <see cref="T:System.CodeDom.CodeArrayCreateExpression"></see> that indicates the expression to generate code for.</param>
</member>
<member name="M:System.CodeDom.Compiler.CodeGenerator.GenerateArrayIndexerExpression(System.CodeDom.CodeArrayIndexerExpression)">
<summary>Generates code for the specified array indexer expression.</summary>
<param name="e">A <see cref="T:System.CodeDom.CodeArrayIndexerExpression"></see> that indicates the expression to generate code for.</param>
</member>
<member name="M:System.CodeDom.Compiler.CodeGenerator.GenerateAssignStatement(System.CodeDom.CodeAssignStatement)">
<summary>Generates code for the specified assignment statement.</summary>
<param name="e">A <see cref="T:System.CodeDom.CodeAssignStatement"></see> that indicates the statement to generate code for.</param>
</member>
<member name="M:System.CodeDom.Compiler.CodeGenerator.GenerateAttachEventStatement(System.CodeDom.CodeAttachEventStatement)">
<summary>Generates code for the specified attach event statement.</summary>
<param name="e">A <see cref="T:System.CodeDom.CodeAttachEventStatement"></see> that indicates the statement to generate code for.</param>
</member>
<member name="M:System.CodeDom.Compiler.CodeGenerator.GenerateAttributeDeclarationsEnd(System.CodeDom.CodeAttributeDeclarationCollection)">
<summary>Generates code for the specified attribute block end.</summary>
<param name="attributes">A <see cref="T:System.CodeDom.CodeAttributeDeclarationCollection"></see> that indicates the end of the attribute block to generate code for.</param>
</member>
<member name="M:System.CodeDom.Compiler.CodeGenerator.GenerateAttributeDeclarationsStart(System.CodeDom.CodeAttributeDeclarationCollection)">
<summary>Generates code for the specified attribute block start.</summary>
<param name="attributes">A <see cref="T:System.CodeDom.CodeAttributeDeclarationCollection"></see> that indicates the start of the attribute block to generate code for.</param>
</member>
<member name="M:System.CodeDom.Compiler.CodeGenerator.GenerateBaseReferenceExpression(System.CodeDom.CodeBaseReferenceExpression)">
<summary>Generates code for the specified base reference expression.</summary>
<param name="e">A <see cref="T:System.CodeDom.CodeBaseReferenceExpression"></see> that indicates the expression to generate code for.</param>
</member>
<member name="M:System.CodeDom.Compiler.CodeGenerator.GenerateBinaryOperatorExpression(System.CodeDom.CodeBinaryOperatorExpression)">
<summary>Generates code for the specified binary operator expression.</summary>
<param name="e">A <see cref="T:System.CodeDom.CodeBinaryOperatorExpression"></see> that indicates the expression to generate code for.</param>
<exception cref="T:System.ArgumentNullException"><paramref name="e">e</paramref> is null.</exception>
</member>
<member name="M:System.CodeDom.Compiler.CodeGenerator.GenerateCastExpression(System.CodeDom.CodeCastExpression)">
<summary>Generates code for the specified cast expression.</summary>
<param name="e">A <see cref="T:System.CodeDom.CodeCastExpression"></see> that indicates the expression to generate code for.</param>
</member>
<member name="M:System.CodeDom.Compiler.CodeGenerator.GenerateCodeFromMember(System.CodeDom.CodeTypeMember,System.IO.TextWriter,System.CodeDom.Compiler.CodeGeneratorOptions)">
<summary>Generates code for the specified class member using the specified text writer and code generator options.</summary>
<param name="member">The class member to generate code for.</param>
<param name="writer">The text writer to output code to.</param>
<param name="options">The options to use when generating the code.</param>
<exception cref="T:System.InvalidOperationException">The <see cref="P:System.CodeDom.Compiler.CodeGenerator.Output"></see> property is not null.</exception>
</member>
<member name="M:System.CodeDom.Compiler.CodeGenerator.GenerateComment(System.CodeDom.CodeComment)">
<summary>Generates code for the specified comment.</summary>
<param name="e">A <see cref="T:System.CodeDom.CodeComment"></see> to generate code for.</param>
</member>
<member name="M:System.CodeDom.Compiler.CodeGenerator.GenerateCommentStatement(System.CodeDom.CodeCommentStatement)">
<summary>Generates code for the specified comment statement.</summary>
<param name="e">The statement to generate code for.</param>
<exception cref="T:System.ArgumentException">The <see cref="P:System.CodeDom.CodeCommentStatement.Comment"></see> property of <paramref name="e">e</paramref> is not set.</exception>
</member>
<member name="M:System.CodeDom.Compiler.CodeGenerator.GenerateCommentStatements(System.CodeDom.CodeCommentStatementCollection)">
<summary>Generates code for the specified comment statements.</summary>
<param name="e">The expression to generate code for.</param>
</member>
<member name="M:System.CodeDom.Compiler.CodeGenerator.GenerateCompileUnit(System.CodeDom.CodeCompileUnit)">
<summary>Generates code for the specified compile unit.</summary>
<param name="e">The compile unit to generate code for.</param>
</member>
<member name="M:System.CodeDom.Compiler.CodeGenerator.GenerateCompileUnitEnd(System.CodeDom.CodeCompileUnit)">
<summary>Generates code for the end of a compile unit.</summary>
<param name="e">The compile unit to generate code for.</param>
</member>
<member name="M:System.CodeDom.Compiler.CodeGenerator.GenerateCompileUnitStart(System.CodeDom.CodeCompileUnit)">
<summary>Generates code for the start of a compile unit.</summary>
<param name="e">The compile unit to generate code for.</param>
</member>
<member name="M:System.CodeDom.Compiler.CodeGenerator.GenerateConditionStatement(System.CodeDom.CodeConditionStatement)">
<summary>Generates code for the specified conditional statement.</summary>
<param name="e">The statement to generate code for.</param>
</member>
<member name="M:System.CodeDom.Compiler.CodeGenerator.GenerateConstructor(System.CodeDom.CodeConstructor,System.CodeDom.CodeTypeDeclaration)">
<summary>Generates code for the specified constructor.</summary>
<param name="e">The constructor to generate code for.</param>
<param name="c">The type of the object that this constructor constructs.</param>
</member>
<member name="M:System.CodeDom.Compiler.CodeGenerator.GenerateDecimalValue(System.Decimal)">
<summary>Generates code for the specified decimal value.</summary>
<param name="d">The decimal value to generate code for.</param>
</member>
<member name="M:System.CodeDom.Compiler.CodeGenerator.GenerateDefaultValueExpression(System.CodeDom.CodeDefaultValueExpression)">
<summary>Generates code for the specified reference to a default value.</summary>
<param name="e">The reference to generate code for.</param>
</member>
<member name="M:System.CodeDom.Compiler.CodeGenerator.GenerateDelegateCreateExpression(System.CodeDom.CodeDelegateCreateExpression)">
<summary>Generates code for the specified delegate creation expression.</summary>
<param name="e">The expression to generate code for.</param>
</member>
<member name="M:System.CodeDom.Compiler.CodeGenerator.GenerateDelegateInvokeExpression(System.CodeDom.CodeDelegateInvokeExpression)">
<summary>Generates code for the specified delegate invoke expression.</summary>
<param name="e">The expression to generate code for.</param>
</member>
<member name="M:System.CodeDom.Compiler.CodeGenerator.GenerateDirectionExpression(System.CodeDom.CodeDirectionExpression)">
<summary>Generates code for the specified direction expression.</summary>
<param name="e">The expression to generate code for.</param>
</member>
<member name="M:System.CodeDom.Compiler.CodeGenerator.GenerateDirectives(System.CodeDom.CodeDirectiveCollection)">
<summary>Generates code for the specified code directives.</summary>
<param name="directives">The code directives to generate code for.</param>
</member>
<member name="M:System.CodeDom.Compiler.CodeGenerator.GenerateDoubleValue(System.Double)">
<summary>Generates code for a double-precision floating point number.</summary>
<param name="d">The value to generate code for.</param>
</member>
<member name="M:System.CodeDom.Compiler.CodeGenerator.GenerateEntryPointMethod(System.CodeDom.CodeEntryPointMethod,System.CodeDom.CodeTypeDeclaration)">
<summary>Generates code for the specified entry point method.</summary>
<param name="e">The entry point for the code.</param>
<param name="c">The code that declares the type.</param>
</member>
<member name="M:System.CodeDom.Compiler.CodeGenerator.GenerateEvent(System.CodeDom.CodeMemberEvent,System.CodeDom.CodeTypeDeclaration)">
<summary>Generates code for the specified event.</summary>
<param name="e">The member event to generate code for.</param>
<param name="c">The type of the object that this event occurs on.</param>
</member>
<member name="M:System.CodeDom.Compiler.CodeGenerator.GenerateEventReferenceExpression(System.CodeDom.CodeEventReferenceExpression)">
<summary>Generates code for the specified event reference expression.</summary>
<param name="e">The expression to generate code for.</param>
</member>
<member name="M:System.CodeDom.Compiler.CodeGenerator.GenerateExpression(System.CodeDom.CodeExpression)">
<summary>Generates code for the specified code expression.</summary>
<param name="e">The code expression to generate code for.</param>
<exception cref="T:System.ArgumentNullException"><paramref name="e">e</paramref> is null.</exception>
<exception cref="T:System.ArgumentException"><paramref name="e">e</paramref> is not a valid <see cref="T:System.CodeDom.CodeStatement"></see>.</exception>
</member>
<member name="M:System.CodeDom.Compiler.CodeGenerator.GenerateExpressionStatement(System.CodeDom.CodeExpressionStatement)">
<summary>Generates code for the specified expression statement.</summary>
<param name="e">The statement to generate code for.</param>
</member>
<member name="M:System.CodeDom.Compiler.CodeGenerator.GenerateField(System.CodeDom.CodeMemberField)">
<summary>Generates code for the specified member field.</summary>
<param name="e">The field to generate code for.</param>
</member>
<member name="M:System.CodeDom.Compiler.CodeGenerator.GenerateFieldReferenceExpression(System.CodeDom.CodeFieldReferenceExpression)">
<summary>Generates code for the specified field reference expression.</summary>
<param name="e">The expression to generate code for.</param>
</member>
<member name="M:System.CodeDom.Compiler.CodeGenerator.GenerateGotoStatement(System.CodeDom.CodeGotoStatement)">
<summary>Generates code for the specified goto statement.</summary>
<param name="e">The expression to generate code for.</param>
</member>
<member name="M:System.CodeDom.Compiler.CodeGenerator.GenerateIndexerExpression(System.CodeDom.CodeIndexerExpression)">
<summary>Generates code for the specified indexer expression.</summary>
<param name="e">The expression to generate code for.</param>
</member>
<member name="M:System.CodeDom.Compiler.CodeGenerator.GenerateIterationStatement(System.CodeDom.CodeIterationStatement)">
<summary>Generates code for the specified iteration statement.</summary>
<param name="e">The statement to generate code for.</param>
</member>
<member name="M:System.CodeDom.Compiler.CodeGenerator.GenerateLabeledStatement(System.CodeDom.CodeLabeledStatement)">
<summary>Generates code for the specified labeled statement.</summary>
<param name="e">The statement to generate code for.</param>
</member>
<member name="M:System.CodeDom.Compiler.CodeGenerator.GenerateLinePragmaEnd(System.CodeDom.CodeLinePragma)">
<summary>Generates code for the specified line pragma end.</summary>
<param name="e">The end of the line pragma to generate code for.</param>
</member>
<member name="M:System.CodeDom.Compiler.CodeGenerator.GenerateLinePragmaStart(System.CodeDom.CodeLinePragma)">
<summary>Generates code for the specified line pragma start.</summary>
<param name="e">The start of the line pragma to generate code for.</param>
</member>
<member name="M:System.CodeDom.Compiler.CodeGenerator.GenerateMethod(System.CodeDom.CodeMemberMethod,System.CodeDom.CodeTypeDeclaration)">
<summary>Generates code for the specified method.</summary>
<param name="e">The member method to generate code for.</param>
<param name="c">The type of the object that this method occurs on.</param>
</member>
<member name="M:System.CodeDom.Compiler.CodeGenerator.GenerateMethodInvokeExpression(System.CodeDom.CodeMethodInvokeExpression)">
<summary>Generates code for the specified method invoke expression.</summary>
<param name="e">The expression to generate code for.</param>
</member>
<member name="M:System.CodeDom.Compiler.CodeGenerator.GenerateMethodReferenceExpression(System.CodeDom.CodeMethodReferenceExpression)">
<summary>Generates code for the specified method reference expression.</summary>
<param name="e">The expression to generate code for.</param>
</member>
<member name="M:System.CodeDom.Compiler.CodeGenerator.GenerateMethodReturnStatement(System.CodeDom.CodeMethodReturnStatement)">
<summary>Generates code for the specified method return statement.</summary>
<param name="e">The statement to generate code for.</param>
</member>
<member name="M:System.CodeDom.Compiler.CodeGenerator.GenerateNamespace(System.CodeDom.CodeNamespace)">
<summary>Generates code for the specified namespace.</summary>
<param name="e">The namespace to generate code for.</param>
</member>
<member name="M:System.CodeDom.Compiler.CodeGenerator.GenerateNamespaceEnd(System.CodeDom.CodeNamespace)">
<summary>Generates code for the end of a namespace.</summary>
<param name="e">The namespace to generate code for.</param>
</member>
<member name="M:System.CodeDom.Compiler.CodeGenerator.GenerateNamespaceImport(System.CodeDom.CodeNamespaceImport)">
<summary>Generates code for the specified namespace import.</summary>
<param name="e">The namespace import to generate code for.</param>
</member>
<member name="M:System.CodeDom.Compiler.CodeGenerator.GenerateNamespaceImports(System.CodeDom.CodeNamespace)">
<summary>Generates code for the specified namespace import.</summary>
<param name="e">The namespace import to generate code for.</param>
</member>
<member name="M:System.CodeDom.Compiler.CodeGenerator.GenerateNamespaces(System.CodeDom.CodeCompileUnit)">
<summary>Generates code for the namespaces in the specified compile unit.</summary>
<param name="e">The compile unit to generate namespaces for.</param>
</member>
<member name="M:System.CodeDom.Compiler.CodeGenerator.GenerateNamespaceStart(System.CodeDom.CodeNamespace)">
<summary>Generates code for the start of a namespace.</summary>
<param name="e">The namespace to generate code for.</param>
</member>
<member name="M:System.CodeDom.Compiler.CodeGenerator.GenerateObjectCreateExpression(System.CodeDom.CodeObjectCreateExpression)">
<summary>Generates code for the specified object creation expression.</summary>
<param name="e">The expression to generate code for.</param>
</member>
<member name="M:System.CodeDom.Compiler.CodeGenerator.GenerateParameterDeclarationExpression(System.CodeDom.CodeParameterDeclarationExpression)">
<summary>Generates code for the specified parameter declaration expression.</summary>
<param name="e">The expression to generate code for.</param>
</member>
<member name="M:System.CodeDom.Compiler.CodeGenerator.GeneratePrimitiveExpression(System.CodeDom.CodePrimitiveExpression)">
<summary>Generates code for the specified primitive expression.</summary>
<param name="e">The expression to generate code for.</param>
<exception cref="T:System.ArgumentException"><paramref name="e">e</paramref> uses an invalid data type. Only the following data types are valid: string char byte Int16 Int32 Int64 Single Double Decimal</exception>
</member>
<member name="M:System.CodeDom.Compiler.CodeGenerator.GenerateProperty(System.CodeDom.CodeMemberProperty,System.CodeDom.CodeTypeDeclaration)">
<summary>Generates code for the specified property.</summary>
<param name="e">The property to generate code for.</param>
<param name="c">The type of the object that this property occurs on.</param>
</member>
<member name="M:System.CodeDom.Compiler.CodeGenerator.GeneratePropertyReferenceExpression(System.CodeDom.CodePropertyReferenceExpression)">
<summary>Generates code for the specified property reference expression.</summary>
<param name="e">The expression to generate code for.</param>
</member>
<member name="M:System.CodeDom.Compiler.CodeGenerator.GeneratePropertySetValueReferenceExpression(System.CodeDom.CodePropertySetValueReferenceExpression)">
<summary>Generates code for the specified property set value reference expression.</summary>
<param name="e">The expression to generate code for.</param>
</member>
<member name="M:System.CodeDom.Compiler.CodeGenerator.GenerateRemoveEventStatement(System.CodeDom.CodeRemoveEventStatement)">
<summary>Generates code for the specified remove event statement.</summary>
<param name="e">The statement to generate code for.</param>
</member>
<member name="M:System.CodeDom.Compiler.CodeGenerator.GenerateSingleFloatValue(System.Single)">
<summary>Generates code for a single-precision floating point number.</summary>
<param name="s">The value to generate code for.</param>
</member>
<member name="M:System.CodeDom.Compiler.CodeGenerator.GenerateSnippetCompileUnit(System.CodeDom.CodeSnippetCompileUnit)">
<summary>Outputs the code of the specified literal code fragment compile unit.</summary>
<param name="e">The literal code fragment compile unit to generate code for.</param>
</member>
<member name="M:System.CodeDom.Compiler.CodeGenerator.GenerateSnippetExpression(System.CodeDom.CodeSnippetExpression)">
<summary>Outputs the code of the specified literal code fragment expression.</summary>
<param name="e">The expression to generate code for.</param>
</member>
<member name="M:System.CodeDom.Compiler.CodeGenerator.GenerateSnippetMember(System.CodeDom.CodeSnippetTypeMember)">
<summary>Outputs the code of the specified literal code fragment class member.</summary>
<param name="e">The member to generate code for.</param>
</member>
<member name="M:System.CodeDom.Compiler.CodeGenerator.GenerateSnippetStatement(System.CodeDom.CodeSnippetStatement)">
<summary>Outputs the code of the specified literal code fragment statement.</summary>
<param name="e">The statement to generate code for.</param>
</member>
<member name="M:System.CodeDom.Compiler.CodeGenerator.GenerateStatement(System.CodeDom.CodeStatement)">
<summary>Generates code for the specified statement.</summary>
<param name="e">The statement to generate code for.</param>
<exception cref="T:System.ArgumentException"><paramref name="e">e</paramref> is not a valid <see cref="T:System.CodeDom.CodeStatement"></see>.</exception>
</member>
<member name="M:System.CodeDom.Compiler.CodeGenerator.GenerateStatements(System.CodeDom.CodeStatementCollection)">
<summary>Generates code for the specified statement collection.</summary>
<param name="stms">The statements to generate code for.</param>
</member>
<member name="M:System.CodeDom.Compiler.CodeGenerator.GenerateThisReferenceExpression(System.CodeDom.CodeThisReferenceExpression)">
<summary>Generates code for the specified this reference expression.</summary>
<param name="e">The expression to generate code for.</param>
</member>
<member name="M:System.CodeDom.Compiler.CodeGenerator.GenerateThrowExceptionStatement(System.CodeDom.CodeThrowExceptionStatement)">
<summary>Generates code for the specified throw exception statement.</summary>
<param name="e">The statement to generate code for.</param>
</member>
<member name="M:System.CodeDom.Compiler.CodeGenerator.GenerateTryCatchFinallyStatement(System.CodeDom.CodeTryCatchFinallyStatement)">
<summary>Generates code for the specified try...catch...finally statement.</summary>
<param name="e">The statement to generate code for.</param>
</member>
<member name="M:System.CodeDom.Compiler.CodeGenerator.GenerateTypeConstructor(System.CodeDom.CodeTypeConstructor)">
<summary>Generates code for the specified class constructor.</summary>
<param name="e">The class constructor to generate code for.</param>
</member>
<member name="M:System.CodeDom.Compiler.CodeGenerator.GenerateTypeEnd(System.CodeDom.CodeTypeDeclaration)">
<summary>Generates code for the specified end of the class.</summary>
<param name="e">The end of the class to generate code for.</param>
</member>
<member name="M:System.CodeDom.Compiler.CodeGenerator.GenerateTypeOfExpression(System.CodeDom.CodeTypeOfExpression)">
<summary>Generates code for the specified type of expression.</summary>
<param name="e">The expression to generate code for.</param>
</member>
<member name="M:System.CodeDom.Compiler.CodeGenerator.GenerateTypeReferenceExpression(System.CodeDom.CodeTypeReferenceExpression)">
<summary>Generates code for the specified type reference expression.</summary>
<param name="e">The expression to generate code for.</param>
</member>
<member name="M:System.CodeDom.Compiler.CodeGenerator.GenerateTypes(System.CodeDom.CodeNamespace)">
<summary>Generates code for the specified namespace and the classes it contains.</summary>
<param name="e">The namespace to generate classes for.</param>
</member>
<member name="M:System.CodeDom.Compiler.CodeGenerator.GenerateTypeStart(System.CodeDom.CodeTypeDeclaration)">
<summary>Generates code for the specified start of the class.</summary>
<param name="e">The start of the class to generate code for.</param>
</member>
<member name="M:System.CodeDom.Compiler.CodeGenerator.GenerateVariableDeclarationStatement(System.CodeDom.CodeVariableDeclarationStatement)">
<summary>Generates code for the specified variable declaration statement.</summary>
<param name="e">The statement to generate code for.</param>
</member>
<member name="M:System.CodeDom.Compiler.CodeGenerator.GenerateVariableReferenceExpression(System.CodeDom.CodeVariableReferenceExpression)">
<summary>Generates code for the specified variable reference expression.</summary>
<param name="e">The expression to generate code for.</param>
</member>
<member name="M:System.CodeDom.Compiler.CodeGenerator.GetTypeOutput(System.CodeDom.CodeTypeReference)">
<summary>Gets the name of the specified data type.</summary>
<param name="value">The type whose name will be returned.</param>
<returns>The name of the data type reference.</returns>
</member>
<member name="P:System.CodeDom.Compiler.CodeGenerator.Indent">
<summary>Gets or sets the amount of spaces to indent each indentation level.</summary>
<returns>The number of spaces to indent for each indentation level.</returns>
</member>
<member name="P:System.CodeDom.Compiler.CodeGenerator.IsCurrentClass">
<summary>Gets a value indicating whether the current object being generated is a class.</summary>
<returns>true if the current object is a class; otherwise, false.</returns>
</member>
<member name="P:System.CodeDom.Compiler.CodeGenerator.IsCurrentDelegate">
<summary>Gets a value indicating whether the current object being generated is a delegate.</summary>
<returns>true if the current object is a delegate; otherwise, false.</returns>
</member>
<member name="P:System.CodeDom.Compiler.CodeGenerator.IsCurrentEnum">
<summary>Gets a value indicating whether the current object being generated is an enumeration.</summary>
<returns>true if the current object is an enumeration; otherwise, false.</returns>
</member>
<member name="P:System.CodeDom.Compiler.CodeGenerator.IsCurrentInterface">
<summary>Gets a value indicating whether the current object being generated is an interface.</summary>
<returns>true if the current object is an interface; otherwise, false.</returns>
</member>
<member name="P:System.CodeDom.Compiler.CodeGenerator.IsCurrentStruct">
<summary>Gets a value indicating whether the current object being generated is a value type or struct.</summary>
<returns>true if the current object is a value type or struct; otherwise, false.</returns>
</member>
<member name="M:System.CodeDom.Compiler.CodeGenerator.IsValidIdentifier(System.String)">
<summary>Gets a value indicating whether the specified value is a valid identifier.</summary>
<param name="value">The value to test for conflicts with valid identifiers.</param>
<returns>true if the value is a valid identifier; otherwise, false.</returns>
</member>
<member name="M:System.CodeDom.Compiler.CodeGenerator.IsValidLanguageIndependentIdentifier(System.String)">
<summary>Gets a value indicating whether the specified string is a valid identifier.</summary>
<param name="value">The string to test for validity.</param>
<returns>true if the specified string is a valid identifier; otherwise, false.</returns>
</member>
<member name="P:System.CodeDom.Compiler.CodeGenerator.NullToken">
<summary>Gets the token that represents null.</summary>
<returns>The token that represents null.</returns>
</member>
<member name="P:System.CodeDom.Compiler.CodeGenerator.Options">
<summary>Gets the options to be used by the code generator.</summary>
<returns>An object that indicates the options for the code generator to use.</returns>
</member>
<member name="P:System.CodeDom.Compiler.CodeGenerator.Output">
<summary>Gets the text writer to use for output.</summary>
<returns>The text writer to use for output.</returns>
</member>
<member name="M:System.CodeDom.Compiler.CodeGenerator.OutputAttributeArgument(System.CodeDom.CodeAttributeArgument)">
<summary>Outputs an argument in an attribute block.</summary>
<param name="arg">The attribute argument to generate code for.</param>
</member>
<member name="M:System.CodeDom.Compiler.CodeGenerator.OutputAttributeDeclarations(System.CodeDom.CodeAttributeDeclarationCollection)">
<summary>Generates code for the specified attribute declaration collection.</summary>
<param name="attributes">The attributes to generate code for.</param>
</member>
<member name="M:System.CodeDom.Compiler.CodeGenerator.OutputDirection(System.CodeDom.FieldDirection)">
<summary>Generates code for the specified <see cref="T:System.CodeDom.FieldDirection"></see>.</summary>
<param name="dir">One of the enumeration values that indicates the attribute of the field.</param>
</member>
<member name="M:System.CodeDom.Compiler.CodeGenerator.OutputExpressionList(System.CodeDom.CodeExpressionCollection)">
<summary>Generates code for the specified expression list.</summary>
<param name="expressions">The expressions to generate code for.</param>
</member>
<member name="M:System.CodeDom.Compiler.CodeGenerator.OutputExpressionList(System.CodeDom.CodeExpressionCollection,System.Boolean)">
<summary>Generates code for the specified expression list.</summary>
<param name="expressions">The expressions to generate code for.</param>
<param name="newlineBetweenItems">true to insert a new line after each item; otherwise, false.</param>
</member>
<member name="M:System.CodeDom.Compiler.CodeGenerator.OutputFieldScopeModifier(System.CodeDom.MemberAttributes)">
<summary>Outputs a field scope modifier that corresponds to the specified attributes.</summary>
<param name="attributes">One of the enumeration values that specifies the attributes.</param>
</member>
<member name="M:System.CodeDom.Compiler.CodeGenerator.OutputIdentifier(System.String)">
<summary>Outputs the specified identifier.</summary>
<param name="ident">The identifier to output.</param>
</member>
<member name="M:System.CodeDom.Compiler.CodeGenerator.OutputMemberAccessModifier(System.CodeDom.MemberAttributes)">
<summary>Generates code for the specified member access modifier.</summary>
<param name="attributes">One of the enumeration values that indicates the member access modifier to generate code for.</param>
</member>
<member name="M:System.CodeDom.Compiler.CodeGenerator.OutputMemberScopeModifier(System.CodeDom.MemberAttributes)">
<summary>Generates code for the specified member scope modifier.</summary>
<param name="attributes">One of the enumeration values that indicates the member scope modifier to generate code for.</param>
</member>
<member name="M:System.CodeDom.Compiler.CodeGenerator.OutputOperator(System.CodeDom.CodeBinaryOperatorType)">
<summary>Generates code for the specified operator.</summary>
<param name="op">The operator to generate code for.</param>
</member>
<member name="M:System.CodeDom.Compiler.CodeGenerator.OutputParameters(System.CodeDom.CodeParameterDeclarationExpressionCollection)">
<summary>Generates code for the specified parameters.</summary>
<param name="parameters">The parameter declaration expressions to generate code for.</param>
</member>
<member name="M:System.CodeDom.Compiler.CodeGenerator.OutputType(System.CodeDom.CodeTypeReference)">
<summary>Generates code for the specified type.</summary>
<param name="typeRef">The type to generate code for.</param>
</member>
<member name="M:System.CodeDom.Compiler.CodeGenerator.OutputTypeAttributes(System.Reflection.TypeAttributes,System.Boolean,System.Boolean)">
<summary>Generates code for the specified type attributes.</summary>
<param name="attributes">One of the enumeration values that indicates the type attributes to generate code for.</param>
<param name="isStruct">true if the type is a struct; otherwise, false.</param>
<param name="isEnum">true if the type is an enum; otherwise, false.</param>
</member>
<member name="M:System.CodeDom.Compiler.CodeGenerator.OutputTypeNamePair(System.CodeDom.CodeTypeReference,System.String)">
<summary>Generates code for the specified object type and name pair.</summary>
<param name="typeRef">The type.</param>
<param name="name">The name for the object.</param>
</member>
<member name="M:System.CodeDom.Compiler.CodeGenerator.QuoteSnippetString(System.String)">
<summary>Converts the specified string by formatting it with escape codes.</summary>
<param name="value">The string to convert.</param>
<returns>The converted string.</returns>
</member>
<member name="M:System.CodeDom.Compiler.CodeGenerator.Supports(System.CodeDom.Compiler.GeneratorSupport)">
<summary>Gets a value indicating whether the specified code generation support is provided.</summary>
<param name="support">The type of code generation support to test for.</param>
<returns>true if the specified code generation support is provided; otherwise, false.</returns>
</member>
<member name="M:System.CodeDom.Compiler.CodeGenerator.ValidateIdentifier(System.String)">
<summary>Throws an exception if the specified string is not a valid identifier.</summary>
<param name="value">The identifier to test for validity as an identifier.</param>
<exception cref="T:System.ArgumentException">If the specified identifier is invalid or conflicts with reserved or language keywords.</exception>
</member>
<member name="M:System.CodeDom.Compiler.CodeGenerator.ValidateIdentifiers(System.CodeDom.CodeObject)">
<summary>Attempts to validate each identifier field contained in the specified <see cref="T:System.CodeDom.CodeObject"></see> or <see cref="N:System.CodeDom"></see> tree.</summary>
<param name="e">An object to test for invalid identifiers.</param>
<exception cref="T:System.ArgumentException">The specified <see cref="T:System.CodeDom.CodeObject"></see> contains an invalid identifier.</exception>
</member>
<member name="M:System.CodeDom.Compiler.CodeGenerator.System#CodeDom#Compiler#ICodeGenerator#CreateEscapedIdentifier(System.String)">
<summary>Creates an escaped identifier for the specified value.</summary>
<param name="value">The string to create an escaped identifier for.</param>
<returns>The escaped identifier for the value.</returns>
</member>
<member name="M:System.CodeDom.Compiler.CodeGenerator.System#CodeDom#Compiler#ICodeGenerator#CreateValidIdentifier(System.String)">
<summary>Creates a valid identifier for the specified value.</summary>
<param name="value">The string to generate a valid identifier for.</param>
<returns>A valid identifier for the specified value.</returns>
</member>
<member name="M:System.CodeDom.Compiler.CodeGenerator.System#CodeDom#Compiler#ICodeGenerator#GenerateCodeFromCompileUnit(System.CodeDom.CodeCompileUnit,System.IO.TextWriter,System.CodeDom.Compiler.CodeGeneratorOptions)">
<summary>Generates code for the specified Code Document Object Model (CodeDOM) compilation unit and outputs it to the specified text writer using the specified options.</summary>
<param name="e">The CodeDOM compilation unit to generate code for.</param>
<param name="w">The text writer to output code to.</param>
<param name="o">The options to use for generating code.</param>
<exception cref="T:System.InvalidOperationException"><paramref name="w">w</paramref> is not available. <paramref name="w">w</paramref> may have been closed before the method call was made.</exception>
</member>
<member name="M:System.CodeDom.Compiler.CodeGenerator.System#CodeDom#Compiler#ICodeGenerator#GenerateCodeFromExpression(System.CodeDom.CodeExpression,System.IO.TextWriter,System.CodeDom.Compiler.CodeGeneratorOptions)">
<summary>Generates code for the specified Code Document Object Model (CodeDOM) expression and outputs it to the specified text writer.</summary>
<param name="e">The expression to generate code for.</param>
<param name="w">The text writer to output code to.</param>
<param name="o">The options to use for generating code.</param>
<exception cref="T:System.InvalidOperationException"><paramref name="w">w</paramref> is not available. <paramref name="w">w</paramref> may have been closed before the method call was made.</exception>
</member>
<member name="M:System.CodeDom.Compiler.CodeGenerator.System#CodeDom#Compiler#ICodeGenerator#GenerateCodeFromNamespace(System.CodeDom.CodeNamespace,System.IO.TextWriter,System.CodeDom.Compiler.CodeGeneratorOptions)">
<summary>Generates code for the specified Code Document Object Model (CodeDOM) namespace and outputs it to the specified text writer using the specified options.</summary>
<param name="e">The namespace to generate code for.</param>
<param name="w">The text writer to output code to.</param>
<param name="o">The options to use for generating code.</param>
<exception cref="T:System.InvalidOperationException"><paramref name="w">w</paramref> is not available. <paramref name="w">w</paramref> may have been closed before the method call was made.</exception>
</member>
<member name="M:System.CodeDom.Compiler.CodeGenerator.System#CodeDom#Compiler#ICodeGenerator#GenerateCodeFromStatement(System.CodeDom.CodeStatement,System.IO.TextWriter,System.CodeDom.Compiler.CodeGeneratorOptions)">
<summary>Generates code for the specified Code Document Object Model (CodeDOM) statement and outputs it to the specified text writer using the specified options.</summary>
<param name="e">The statement that contains the CodeDOM elements to translate.</param>
<param name="w">The text writer to output code to.</param>
<param name="o">The options to use for generating code.</param>
<exception cref="T:System.InvalidOperationException"><paramref name="w">w</paramref> is not available. <paramref name="w">w</paramref> may have been closed before the method call was made.</exception>
</member>
<member name="M:System.CodeDom.Compiler.CodeGenerator.System#CodeDom#Compiler#ICodeGenerator#GenerateCodeFromType(System.CodeDom.CodeTypeDeclaration,System.IO.TextWriter,System.CodeDom.Compiler.CodeGeneratorOptions)">
<summary>Generates code for the specified Code Document Object Model (CodeDOM) type declaration and outputs it to the specified text writer using the specified options.</summary>
<param name="e">The type to generate code for.</param>
<param name="w">The text writer to output code to.</param>
<param name="o">The options to use for generating code.</param>
<exception cref="T:System.InvalidOperationException"><paramref name="w">w</paramref> is not available. <paramref name="w">w</paramref> may have been closed before the method call was made.</exception>
</member>
<member name="M:System.CodeDom.Compiler.CodeGenerator.System#CodeDom#Compiler#ICodeGenerator#GetTypeOutput(System.CodeDom.CodeTypeReference)">
<summary>Gets the type indicated by the specified <see cref="T:System.CodeDom.CodeTypeReference"></see>.</summary>
<param name="type">The type to return.</param>
<returns>The name of the data type reference.</returns>
</member>
<member name="M:System.CodeDom.Compiler.CodeGenerator.System#CodeDom#Compiler#ICodeGenerator#IsValidIdentifier(System.String)">
<summary>Gets a value that indicates whether the specified value is a valid identifier for the current language.</summary>
<param name="value">The value to test.</param>
<returns>true if the <paramref name="value">value</paramref> parameter is a valid identifier; otherwise, false.</returns>
</member>
<member name="M:System.CodeDom.Compiler.CodeGenerator.System#CodeDom#Compiler#ICodeGenerator#Supports(System.CodeDom.Compiler.GeneratorSupport)">
<summary>Gets a value indicating whether the generator provides support for the language features represented by the specified <see cref="T:System.CodeDom.Compiler.GeneratorSupport"></see> object.</summary>
<param name="support">The capabilities to test the generator for.</param>
<returns>true if the specified capabilities are supported; otherwise, false.</returns>
</member>
<member name="M:System.CodeDom.Compiler.CodeGenerator.System#CodeDom#Compiler#ICodeGenerator#ValidateIdentifier(System.String)">
<summary>Throws an exception if the specified value is not a valid identifier.</summary>
<param name="value">The identifier to validate.</param>
</member>
<member name="T:System.CodeDom.Compiler.CodeGeneratorOptions">
<summary>Represents a set of options used by a code generator.</summary>
</member>
<member name="M:System.CodeDom.Compiler.CodeGeneratorOptions.#ctor">
<summary>Initializes a new instance of the <see cref="T:System.CodeDom.Compiler.CodeGeneratorOptions"></see> class.</summary>
</member>
<member name="P:System.CodeDom.Compiler.CodeGeneratorOptions.BlankLinesBetweenMembers">
<summary>Gets or sets a value indicating whether to insert blank lines between members.</summary>
<returns>true if blank lines should be inserted; otherwise, false. By default, the value of this property is true.</returns>
</member>
<member name="P:System.CodeDom.Compiler.CodeGeneratorOptions.BracingStyle">
<summary>Gets or sets the style to use for bracing.</summary>
<returns>A string containing the bracing style to use.</returns>
</member>
<member name="P:System.CodeDom.Compiler.CodeGeneratorOptions.ElseOnClosing">
<summary>Gets or sets a value indicating whether to append an else, catch, or finally block, including brackets, at the closing line of each previous if or try block.</summary>
<returns>true if an else should be appended; otherwise, false. The default value of this property is false.</returns>
</member>
<member name="P:System.CodeDom.Compiler.CodeGeneratorOptions.IndentString">
<summary>Gets or sets the string to use for indentations.</summary>
<returns>A string containing the characters to use for indentations.</returns>
</member>
<member name="P:System.CodeDom.Compiler.CodeGeneratorOptions.Item(System.String)">
<summary>Gets or sets the object at the specified index.</summary>
<param name="index">The name associated with the object to retrieve.</param>
<returns>The object associated with the specified name. If no object associated with the specified name exists in the collection, null.</returns>
</member>
<member name="P:System.CodeDom.Compiler.CodeGeneratorOptions.VerbatimOrder">
<summary>Gets or sets a value indicating whether to generate members in the order in which they occur in member collections.</summary>
<returns>true to generate the members in the order in which they occur in the member collection; otherwise, false. The default value of this property is false.</returns>
</member>
<member name="T:System.CodeDom.Compiler.CodeParser">
<summary>Provides an empty implementation of the <see cref="T:System.CodeDom.Compiler.ICodeParser"></see> interface.</summary>
</member>
<member name="M:System.CodeDom.Compiler.CodeParser.#ctor">
<summary>Initializes a new instance of the <see cref="T:System.CodeDom.Compiler.CodeParser"></see> class.</summary>
</member>
<member name="M:System.CodeDom.Compiler.CodeParser.Parse(System.IO.TextReader)">
<summary>Compiles the specified text stream into a <see cref="T:System.CodeDom.CodeCompileUnit"></see>.</summary>
<param name="codeStream">A <see cref="T:System.IO.TextReader"></see> that is used to read the code to be parsed.</param>
<returns>A <see cref="T:System.CodeDom.CodeCompileUnit"></see> containing the code model produced from parsing the code.</returns>
</member>
<member name="T:System.CodeDom.Compiler.CompilerError">
<summary>Represents a compiler error or warning.</summary>
</member>
<member name="M:System.CodeDom.Compiler.CompilerError.#ctor">
<summary>Initializes a new instance of the <see cref="T:System.CodeDom.Compiler.CompilerError"></see> class.</summary>
</member>
<member name="M:System.CodeDom.Compiler.CompilerError.#ctor(System.String,System.Int32,System.Int32,System.String,System.String)">
<summary>Initializes a new instance of the <see cref="T:System.CodeDom.Compiler.CompilerError"></see> class using the specified file name, line, column, error number, and error text.</summary>
<param name="fileName">The file name of the file that the compiler was compiling when it encountered the error.</param>
<param name="line">The line of the source of the error.</param>
<param name="column">The column of the source of the error.</param>
<param name="errorNumber">The error number of the error.</param>
<param name="errorText">The error message text.</param>
</member>
<member name="P:System.CodeDom.Compiler.CompilerError.Column">
<summary>Gets or sets the column number where the source of the error occurs.</summary>
<returns>The column number of the source file where the compiler encountered the error.</returns>
</member>
<member name="P:System.CodeDom.Compiler.CompilerError.ErrorNumber">
<summary>Gets or sets the error number.</summary>
<returns>The error number as a string.</returns>
</member>
<member name="P:System.CodeDom.Compiler.CompilerError.ErrorText">
<summary>Gets or sets the text of the error message.</summary>
<returns>The text of the error message.</returns>
</member>
<member name="P:System.CodeDom.Compiler.CompilerError.FileName">
<summary>Gets or sets the file name of the source file that contains the code which caused the error.</summary>
<returns>The file name of the source file that contains the code which caused the error.</returns>
</member>
<member name="P:System.CodeDom.Compiler.CompilerError.IsWarning">
<summary>Gets or sets a value that indicates whether the error is a warning.</summary>
<returns>true if the error is a warning; otherwise, false.</returns>
</member>
<member name="P:System.CodeDom.Compiler.CompilerError.Line">
<summary>Gets or sets the line number where the source of the error occurs.</summary>
<returns>The line number of the source file where the compiler encountered the error.</returns>
</member>
<member name="M:System.CodeDom.Compiler.CompilerError.ToString">
<summary>Provides an implementation of Object's <see cref="M:System.Object.ToString"></see> method.</summary>
<returns>A string representation of the compiler error.</returns>
</member>
<member name="T:System.CodeDom.Compiler.CompilerErrorCollection">
<summary>Represents a collection of <see cref="T:System.CodeDom.Compiler.CompilerError"></see> objects.</summary>
</member>
<member name="M:System.CodeDom.Compiler.CompilerErrorCollection.#ctor">
<summary>Initializes a new instance of the <see cref="T:System.CodeDom.Compiler.CompilerErrorCollection"></see> class.</summary>
</member>
<member name="M:System.CodeDom.Compiler.CompilerErrorCollection.#ctor(System.CodeDom.Compiler.CompilerError[])">
<summary>Initializes a new instance of <see cref="T:System.CodeDom.Compiler.CompilerErrorCollection"></see> that contains the specified array of <see cref="T:System.CodeDom.Compiler.CompilerError"></see> objects.</summary>
<param name="value">An array of <see cref="T:System.CodeDom.Compiler.CompilerError"></see> objects to initialize the collection with.</param>
<exception cref="T:System.ArgumentNullException"><paramref name="value">value</paramref> is null.</exception>
</member>
<member name="M:System.CodeDom.Compiler.CompilerErrorCollection.#ctor(System.CodeDom.Compiler.CompilerErrorCollection)">
<summary>Initializes a new instance of the <see cref="T:System.CodeDom.Compiler.CompilerErrorCollection"></see> class that contains the contents of the specified <see cref="T:System.CodeDom.Compiler.CompilerErrorCollection"></see>.</summary>
<param name="value">A <see cref="T:System.CodeDom.Compiler.CompilerErrorCollection"></see> object with which to initialize the collection.</param>
<exception cref="T:System.ArgumentNullException"><paramref name="value">value</paramref> is null.</exception>
</member>
<member name="M:System.CodeDom.Compiler.CompilerErrorCollection.Add(System.CodeDom.Compiler.CompilerError)">
<summary>Adds the specified <see cref="T:System.CodeDom.Compiler.CompilerError"></see> object to the error collection.</summary>
<param name="value">The <see cref="T:System.CodeDom.Compiler.CompilerError"></see> object to add.</param>
<returns>The index at which the new element was inserted.</returns>
</member>
<member name="M:System.CodeDom.Compiler.CompilerErrorCollection.AddRange(System.CodeDom.Compiler.CompilerError[])">
<summary>Copies the elements of an array to the end of the error collection.</summary>
<param name="value">An array of type <see cref="T:System.CodeDom.Compiler.CompilerError"></see> that contains the objects to add to the collection.</param>
<exception cref="T:System.ArgumentNullException"><paramref name="value">value</paramref> is null.</exception>
</member>
<member name="M:System.CodeDom.Compiler.CompilerErrorCollection.AddRange(System.CodeDom.Compiler.CompilerErrorCollection)">
<summary>Adds the contents of the specified compiler error collection to the end of the error collection.</summary>
<param name="value">A <see cref="T:System.CodeDom.Compiler.CompilerErrorCollection"></see> object that contains the objects to add to the collection.</param>
<exception cref="T:System.ArgumentNullException"><paramref name="value">value</paramref> is null.</exception>
</member>
<member name="M:System.CodeDom.Compiler.CompilerErrorCollection.Contains(System.CodeDom.Compiler.CompilerError)">
<summary>Gets a value that indicates whether the collection contains the specified <see cref="T:System.CodeDom.Compiler.CompilerError"></see> object.</summary>
<param name="value">The <see cref="T:System.CodeDom.Compiler.CompilerError"></see> to locate.</param>
<returns>true if the <see cref="T:System.CodeDom.Compiler.CompilerError"></see> is contained in the collection; otherwise, false.</returns>
</member>
<member name="M:System.CodeDom.Compiler.CompilerErrorCollection.CopyTo(System.CodeDom.Compiler.CompilerError[],System.Int32)">
<summary>Copies the collection values to a one-dimensional <see cref="T:System.Array"></see> instance at the specified index.</summary>
<param name="array">The one-dimensional <see cref="T:System.Array"></see> that is the destination of the values copied from <see cref="T:System.CodeDom.Compiler.CompilerErrorCollection"></see>.</param>
<param name="index">The index in the array at which to start copying.</param>
<exception cref="T:System.ArgumentException">The array indicated by the <paramref name="array">array</paramref> parameter is multidimensional. -or- The number of elements in the <see cref="T:System.CodeDom.Compiler.CompilerErrorCollection"></see> is greater than the available space between the index value of the <paramref name="arrayIndex">arrayIndex</paramref> parameter in the array indicated by the <paramref name="array">array</paramref> parameter and the end of the array indicated by the <paramref name="array">array</paramref> parameter.</exception>
<exception cref="T:System.ArgumentNullException">The <paramref name="array">array</paramref> parameter is null.</exception>
<exception cref="T:System.ArgumentOutOfRangeException">The <paramref name="index">index</paramref> parameter is less than the lowbound of the array indicated by the <paramref name="array">array</paramref> parameter.</exception>
</member>
<member name="P:System.CodeDom.Compiler.CompilerErrorCollection.HasErrors">
<summary>Gets a value that indicates whether the collection contains errors.</summary>
<returns>true if the collection contains errors; otherwise, false.</returns>
</member>
<member name="P:System.CodeDom.Compiler.CompilerErrorCollection.HasWarnings">
<summary>Gets a value that indicates whether the collection contains warnings.</summary>
<returns>true if the collection contains warnings; otherwise, false.</returns>
</member>
<member name="M:System.CodeDom.Compiler.CompilerErrorCollection.IndexOf(System.CodeDom.Compiler.CompilerError)">
<summary>Gets the index of the specified <see cref="T:System.CodeDom.Compiler.CompilerError"></see> object in the collection, if it exists in the collection.</summary>
<param name="value">The <see cref="T:System.CodeDom.Compiler.CompilerError"></see> to locate.</param>
<returns>The index of the specified <see cref="T:System.CodeDom.Compiler.CompilerError"></see> in the <see cref="T:System.CodeDom.Compiler.CompilerErrorCollection"></see>, if found; otherwise, -1.</returns>
</member>
<member name="M:System.CodeDom.Compiler.CompilerErrorCollection.Insert(System.Int32,System.CodeDom.Compiler.CompilerError)">
<summary>Inserts the specified <see cref="T:System.CodeDom.Compiler.CompilerError"></see> into the collection at the specified index.</summary>
<param name="index">The zero-based index where the compiler error should be inserted.</param>
<param name="value">The <see cref="T:System.CodeDom.Compiler.CompilerError"></see> to insert.</param>
</member>
<member name="P:System.CodeDom.Compiler.CompilerErrorCollection.Item(System.Int32)">
<summary>Gets or sets the <see cref="T:System.CodeDom.Compiler.CompilerError"></see> at the specified index.</summary>
<param name="index">The zero-based index of the entry to locate in the collection.</param>
<returns>A <see cref="T:System.CodeDom.Compiler.CompilerError"></see> at each valid index.</returns>
<exception cref="T:System.ArgumentOutOfRangeException">The index value indicated by the <paramref name="index">index</paramref> parameter is outside the valid range of indexes for the collection.</exception>
</member>
<member name="M:System.CodeDom.Compiler.CompilerErrorCollection.Remove(System.CodeDom.Compiler.CompilerError)">
<summary>Removes a specific <see cref="T:System.CodeDom.Compiler.CompilerError"></see> from the collection.</summary>
<param name="value">The <see cref="T:System.CodeDom.Compiler.CompilerError"></see> to remove from the <see cref="T:System.CodeDom.Compiler.CompilerErrorCollection"></see>.</param>
<exception cref="T:System.ArgumentException">The specified object is not found in the collection.</exception>
</member>
<member name="T:System.CodeDom.Compiler.CompilerInfo">
<summary>Represents the configuration settings of a language provider. This class cannot be inherited.</summary>
</member>
<member name="P:System.CodeDom.Compiler.CompilerInfo.CodeDomProviderType">
<summary>Gets the type of the configured <see cref="T:System.CodeDom.Compiler.CodeDomProvider"></see> implementation.</summary>
<returns>A read-only <see cref="T:System.Type"></see> instance that represents the configured language provider type.</returns>
<exception cref="T:System.Configuration.ConfigurationException">The language provider is not configured on this computer.</exception>
<exception cref="T:System.Configuration.ConfigurationErrorsException">Cannot locate the type because it is a null or empty string. -or- Cannot locate the type because the name for the <see cref="T:System.CodeDom.Compiler.CodeDomProvider"></see> cannot be found in the configuration file.</exception>
</member>
<member name="M:System.CodeDom.Compiler.CompilerInfo.CreateDefaultCompilerParameters">
<summary>Gets the configured compiler settings for the language provider implementation.</summary>
<returns>A read-only <see cref="T:System.CodeDom.Compiler.CompilerParameters"></see> instance that contains the compiler options and settings configured for the language provider.</returns>
</member>
<member name="M:System.CodeDom.Compiler.CompilerInfo.CreateProvider">
<summary>Returns a <see cref="T:System.CodeDom.Compiler.CodeDomProvider"></see> instance for the current language provider settings.</summary>
<returns>A CodeDOM provider associated with the language provider configuration.</returns>
</member>
<member name="M:System.CodeDom.Compiler.CompilerInfo.CreateProvider(System.Collections.Generic.IDictionary{System.String,System.String})">
<summary>Returns a <see cref="T:System.CodeDom.Compiler.CodeDomProvider"></see> instance for the current language provider settings and specified options.</summary>
<param name="providerOptions">A collection of provider options from the configuration file.</param>
<returns>A CodeDOM provider associated with the language provider configuration and specified options.</returns>
<exception cref="T:System.ArgumentNullException"><paramref name="providerOptions">providerOptions</paramref> is null.</exception>
<exception cref="T:System.InvalidOperationException">The provider does not support options.</exception>
</member>
<member name="M:System.CodeDom.Compiler.CompilerInfo.Equals(System.Object)">
<summary>Determines whether the specified object represents the same language provider and compiler settings as the current <see cref="T:System.CodeDom.Compiler.CompilerInfo"></see>.</summary>
<param name="o">The object to compare with the current <see cref="T:System.CodeDom.Compiler.CompilerInfo"></see>.</param>
<returns>true if <paramref name="o">o</paramref> is a <see cref="T:System.CodeDom.Compiler.CompilerInfo"></see> object and its value is the same as this instance; otherwise, false.</returns>
</member>
<member name="M:System.CodeDom.Compiler.CompilerInfo.GetExtensions">
<summary>Returns the file name extensions supported by the language provider.</summary>
<returns>An array of file name extensions supported by the language provider.</returns>
</member>
<member name="M:System.CodeDom.Compiler.CompilerInfo.GetHashCode">
<summary>Returns the hash code for the current instance.</summary>
<returns>A 32-bit signed integer hash code for the current <see cref="T:System.CodeDom.Compiler.CompilerInfo"></see> instance, suitable for use in hashing algorithms and data structures such as a hash table.</returns>
</member>
<member name="M:System.CodeDom.Compiler.CompilerInfo.GetLanguages">
<summary>Gets the language names supported by the language provider.</summary>
<returns>An array of language names supported by the language provider.</returns>
</member>
<member name="P:System.CodeDom.Compiler.CompilerInfo.IsCodeDomProviderTypeValid">
<summary>Returns a value indicating whether the language provider implementation is configured on the computer.</summary>
<returns>true if the language provider implementation type is configured on the computer; otherwise, false.</returns>
</member>
<member name="T:System.CodeDom.Compiler.CompilerParameters">
<summary>Represents the parameters used to invoke a compiler.</summary>
</member>
<member name="M:System.CodeDom.Compiler.CompilerParameters.#ctor">
<summary>Initializes a new instance of the <see cref="T:System.CodeDom.Compiler.CompilerParameters"></see> class.</summary>
</member>
<member name="M:System.CodeDom.Compiler.CompilerParameters.#ctor(System.String[])">
<summary>Initializes a new instance of the <see cref="T:System.CodeDom.Compiler.CompilerParameters"></see> class using the specified assembly names.</summary>
<param name="assemblyNames">The names of the assemblies to reference.</param>
</member>
<member name="M:System.CodeDom.Compiler.CompilerParameters.#ctor(System.String[],System.String)">
<summary>Initializes a new instance of the <see cref="T:System.CodeDom.Compiler.CompilerParameters"></see> class using the specified assembly names and output file name.</summary>
<param name="assemblyNames">The names of the assemblies to reference.</param>
<param name="outputName">The output file name.</param>
</member>
<member name="M:System.CodeDom.Compiler.CompilerParameters.#ctor(System.String[],System.String,System.Boolean)">
<summary>Initializes a new instance of the <see cref="T:System.CodeDom.Compiler.CompilerParameters"></see> class using the specified assembly names, output name, and a value indicating whether to include debug information.</summary>
<param name="assemblyNames">The names of the assemblies to reference.</param>
<param name="outputName">The output file name.</param>
<param name="includeDebugInformation">true to include debug information; false to exclude debug information.</param>
</member>
<member name="P:System.CodeDom.Compiler.CompilerParameters.CompilerOptions">
<summary>Gets or sets optional command-line arguments to use when invoking the compiler.</summary>
<returns>Any additional command-line arguments for the compiler.</returns>
</member>
<member name="P:System.CodeDom.Compiler.CompilerParameters.CoreAssemblyFileName">
<summary>Gets or sets the name of the core or standard assembly that contains basic types such as <see cref="T:System.Object"></see>, <see cref="T:System.String"></see>, or <see cref="T:System.Int32"></see>.</summary>
<returns>The name of the core assembly that contains basic types.</returns>
</member>
<member name="P:System.CodeDom.Compiler.CompilerParameters.EmbeddedResources">
<summary>Gets the .NET Framework resource files to include when compiling the assembly output.</summary>
<returns>A collection that contains the file paths of .NET Framework resources to include in the generated assembly.</returns>
</member>
<member name="P:System.CodeDom.Compiler.CompilerParameters.GenerateExecutable">
<summary>Gets or sets a value indicating whether to generate an executable.</summary>
<returns>true if an executable should be generated; otherwise, false.</returns>
</member>
<member name="P:System.CodeDom.Compiler.CompilerParameters.GenerateInMemory">
<summary>Gets or sets a value indicating whether to generate the output in memory.</summary>
<returns>true if the compiler should generate the output in memory; otherwise, false.</returns>
</member>
<member name="P:System.CodeDom.Compiler.CompilerParameters.IncludeDebugInformation">
<summary>Gets or sets a value indicating whether to include debug information in the compiled executable.</summary>
<returns>true if debug information should be generated; otherwise, false.</returns>
</member>
<member name="P:System.CodeDom.Compiler.CompilerParameters.LinkedResources">
<summary>Gets the .NET Framework resource files that are referenced in the current source.</summary>
<returns>A collection that contains the file paths of .NET Framework resources that are referenced by the source.</returns>
</member>
<member name="P:System.CodeDom.Compiler.CompilerParameters.MainClass">
<summary>Gets or sets the name of the main class.</summary>
<returns>The name of the main class.</returns>
</member>
<member name="P:System.CodeDom.Compiler.CompilerParameters.OutputAssembly">
<summary>Gets or sets the name of the output assembly.</summary>
<returns>The name of the output assembly.</returns>
</member>
<member name="P:System.CodeDom.Compiler.CompilerParameters.ReferencedAssemblies">
<summary>Gets the assemblies referenced by the current project.</summary>
<returns>A collection that contains the assembly names that are referenced by the source to compile.</returns>
</member>
<member name="P:System.CodeDom.Compiler.CompilerParameters.TempFiles">
<summary>Gets or sets the collection that contains the temporary files.</summary>
<returns>A collection that contains the temporary files.</returns>
</member>
<member name="P:System.CodeDom.Compiler.CompilerParameters.TreatWarningsAsErrors">
<summary>Gets or sets a value indicating whether to treat warnings as errors.</summary>
<returns>true if warnings should be treated as errors; otherwise, false.</returns>
</member>
<member name="P:System.CodeDom.Compiler.CompilerParameters.UserToken">
<summary>Gets or sets the user token to use when creating the compiler process.</summary>
<returns>The user token to use.</returns>
</member>
<member name="P:System.CodeDom.Compiler.CompilerParameters.WarningLevel">
<summary>Gets or sets the warning level at which the compiler aborts compilation.</summary>
<returns>The warning level at which the compiler aborts compilation.</returns>
</member>
<member name="P:System.CodeDom.Compiler.CompilerParameters.Win32Resource">
<summary>Gets or sets the file name of a Win32 resource file to link into the compiled assembly.</summary>
<returns>A Win32 resource file that will be linked into the compiled assembly.</returns>
</member>
<member name="T:System.CodeDom.Compiler.CompilerResults">
<summary>Represents the results of compilation that are returned from a compiler.</summary>
</member>
<member name="M:System.CodeDom.Compiler.CompilerResults.#ctor(System.CodeDom.Compiler.TempFileCollection)">
<summary>Initializes a new instance of the <see cref="T:System.CodeDom.Compiler.CompilerResults"></see> class that uses the specified temporary files.</summary>
<param name="tempFiles">A <see cref="T:System.CodeDom.Compiler.TempFileCollection"></see> with which to manage and store references to intermediate files generated during compilation.</param>
</member>
<member name="P:System.CodeDom.Compiler.CompilerResults.CompiledAssembly">
<summary>Gets or sets the compiled assembly.</summary>
<returns>An <see cref="T:System.Reflection.Assembly"></see> that indicates the compiled assembly.</returns>
</member>
<member name="P:System.CodeDom.Compiler.CompilerResults.Errors">
<summary>Gets the collection of compiler errors and warnings.</summary>
<returns>A <see cref="T:System.CodeDom.Compiler.CompilerErrorCollection"></see> that indicates the errors and warnings resulting from compilation, if any.</returns>
</member>
<member name="P:System.CodeDom.Compiler.CompilerResults.NativeCompilerReturnValue">
<summary>Gets or sets the compiler's return value.</summary>
<returns>The compiler's return value.</returns>
</member>
<member name="P:System.CodeDom.Compiler.CompilerResults.Output">
<summary>Gets the compiler output messages.</summary>
<returns>A <see cref="T:System.Collections.Specialized.StringCollection"></see> that contains the output messages.</returns>
</member>
<member name="P:System.CodeDom.Compiler.CompilerResults.PathToAssembly">
<summary>Gets or sets the path of the compiled assembly.</summary>
<returns>The path of the assembly, or null if the assembly was generated in memory.</returns>
</member>
<member name="P:System.CodeDom.Compiler.CompilerResults.TempFiles">
<summary>Gets or sets the temporary file collection to use.</summary>
<returns>A <see cref="T:System.CodeDom.Compiler.TempFileCollection"></see> with which to manage and store references to intermediate files generated during compilation.</returns>
</member>
<member name="T:System.CodeDom.Compiler.Executor">
<summary>Provides command execution functions for invoking compilers. This class cannot be inherited.</summary>
</member>
<member name="M:System.CodeDom.Compiler.Executor.ExecWait(System.String,System.CodeDom.Compiler.TempFileCollection)">
<summary>Executes the command using the specified temporary files and waits for the call to return.</summary>
<param name="cmd">The command to execute.</param>
<param name="tempFiles">A <see cref="T:System.CodeDom.Compiler.TempFileCollection"></see> with which to manage and store references to intermediate files generated during compilation.</param>
</member>
<member name="M:System.CodeDom.Compiler.Executor.ExecWaitWithCapture(System.String,System.CodeDom.Compiler.TempFileCollection,System.String@,System.String@)">
<summary>Executes the specified command using the specified temporary files and waits for the call to return, storing output and error information from the compiler in the specified strings.</summary>
<param name="cmd">The command to execute.</param>
<param name="tempFiles">A <see cref="T:System.CodeDom.Compiler.TempFileCollection"></see> with which to manage and store references to intermediate files generated during compilation.</param>
<param name="outputName">A reference to a string that will store the compiler's message output.</param>
<param name="errorName">A reference to a string that will store the name of the error or errors encountered.</param>
<returns>The return value from the compiler.</returns>
</member>
<member name="M:System.CodeDom.Compiler.Executor.ExecWaitWithCapture(System.IntPtr,System.String,System.CodeDom.Compiler.TempFileCollection,System.String@,System.String@)">
<summary>Executes the specified command using the specified user token and temporary files, and waits for the call to return, storing output and error information from the compiler in the specified strings.</summary>
<param name="userToken">The token to start the compiler process with.</param>
<param name="cmd">The command to execute.</param>
<param name="tempFiles">A <see cref="T:System.CodeDom.Compiler.TempFileCollection"></see> with which to manage and store references to intermediate files generated during compilation.</param>
<param name="outputName">A reference to a string that will store the compiler's message output.</param>
<param name="errorName">A reference to a string that will store the name of the error or errors encountered.</param>
<returns>The return value from the compiler.</returns>
</member>
<member name="M:System.CodeDom.Compiler.Executor.ExecWaitWithCapture(System.String,System.String,System.CodeDom.Compiler.TempFileCollection,System.String@,System.String@)">
<summary>Executes the specified command using the specified current directory and temporary files, and waits for the call to return, storing output and error information from the compiler in the specified strings.</summary>
<param name="cmd">The command to execute.</param>
<param name="currentDir">The current directory.</param>
<param name="tempFiles">A <see cref="T:System.CodeDom.Compiler.TempFileCollection"></see> with which to manage and store references to intermediate files generated during compilation.</param>
<param name="outputName">A reference to a string that will store the compiler's message output.</param>
<param name="errorName">A reference to a string that will store the name of the error or errors encountered.</param>
<returns>The return value from the compiler.</returns>
</member>
<member name="M:System.CodeDom.Compiler.Executor.ExecWaitWithCapture(System.IntPtr,System.String,System.String,System.CodeDom.Compiler.TempFileCollection,System.String@,System.String@)">
<summary>Executes the specified command using the specified user token, current directory, and temporary files; then waits for the call to return, storing output and error information from the compiler in the specified strings.</summary>
<param name="userToken">The token to start the compiler process with.</param>
<param name="cmd">The command to execute.</param>
<param name="currentDir">The directory to start the process in.</param>
<param name="tempFiles">A <see cref="T:System.CodeDom.Compiler.TempFileCollection"></see> with which to manage and store references to intermediate files generated during compilation.</param>
<param name="outputName">A reference to a string that will store the compiler's message output.</param>
<param name="errorName">A reference to a string that will store the name of the error or errors encountered.</param>
<returns>The return value from the compiler.</returns>
</member>
<member name="T:System.CodeDom.Compiler.GeneratorSupport">
<summary>Defines identifiers used to determine whether a code generator supports certain types of code elements.</summary>
</member>
<member name="F:System.CodeDom.Compiler.GeneratorSupport.ArraysOfArrays">
<summary>Indicates the generator supports arrays of arrays.</summary>
<returns></returns>
</member>
<member name="F:System.CodeDom.Compiler.GeneratorSupport.AssemblyAttributes">
<summary>Indicates the generator supports assembly attributes.</summary>
<returns></returns>
</member>
<member name="F:System.CodeDom.Compiler.GeneratorSupport.ChainedConstructorArguments">
<summary>Indicates the generator supports chained constructor arguments.</summary>
<returns></returns>
</member>
<member name="F:System.CodeDom.Compiler.GeneratorSupport.ComplexExpressions">
<summary>Indicates the generator supports complex expressions.</summary>
<returns></returns>
</member>
<member name="F:System.CodeDom.Compiler.GeneratorSupport.DeclareDelegates">
<summary>Indicates the generator supports delegate declarations.</summary>
<returns></returns>
</member>
<member name="F:System.CodeDom.Compiler.GeneratorSupport.DeclareEnums">
<summary>Indicates the generator supports enumeration declarations.</summary>
<returns></returns>
</member>
<member name="F:System.CodeDom.Compiler.GeneratorSupport.DeclareEvents">
<summary>Indicates the generator supports event declarations.</summary>
<returns></returns>
</member>
<member name="F:System.CodeDom.Compiler.GeneratorSupport.DeclareIndexerProperties">
<summary>Indicates the generator supports the declaration of indexer properties.</summary>
<returns></returns>
</member>
<member name="F:System.CodeDom.Compiler.GeneratorSupport.DeclareInterfaces">
<summary>Indicates the generator supports interface declarations.</summary>
<returns></returns>
</member>
<member name="F:System.CodeDom.Compiler.GeneratorSupport.DeclareValueTypes">
<summary>Indicates the generator supports value type declarations.</summary>
<returns></returns>
</member>
<member name="F:System.CodeDom.Compiler.GeneratorSupport.EntryPointMethod">
<summary>Indicates the generator supports a program entry point method designation. This is used when building executables.</summary>
<returns></returns>
</member>
<member name="F:System.CodeDom.Compiler.GeneratorSupport.GenericTypeDeclaration">
<summary>Indicates the generator supports generic type declarations.</summary>
<returns></returns>
</member>
<member name="F:System.CodeDom.Compiler.GeneratorSupport.GenericTypeReference">
<summary>Indicates the generator supports generic type references.</summary>
<returns></returns>
</member>
<member name="F:System.CodeDom.Compiler.GeneratorSupport.GotoStatements">
<summary>Indicates the generator supports goto statements.</summary>
<returns></returns>
</member>
<member name="F:System.CodeDom.Compiler.GeneratorSupport.MultidimensionalArrays">
<summary>Indicates the generator supports referencing multidimensional arrays. Currently, the CodeDom cannot be used to instantiate multidimensional arrays.</summary>
<returns></returns>
</member>
<member name="F:System.CodeDom.Compiler.GeneratorSupport.MultipleInterfaceMembers">
<summary>Indicates the generator supports the declaration of members that implement multiple interfaces.</summary>
<returns></returns>
</member>
<member name="F:System.CodeDom.Compiler.GeneratorSupport.NestedTypes">
<summary>Indicates the generator supports the declaration of nested types.</summary>
<returns></returns>
</member>
<member name="F:System.CodeDom.Compiler.GeneratorSupport.ParameterAttributes">
<summary>Indicates the generator supports parameter attributes.</summary>
<returns></returns>
</member>
<member name="F:System.CodeDom.Compiler.GeneratorSupport.PartialTypes">
<summary>Indicates the generator supports partial type declarations.</summary>
<returns></returns>
</member>
<member name="F:System.CodeDom.Compiler.GeneratorSupport.PublicStaticMembers">
<summary>Indicates the generator supports public static members.</summary>
<returns></returns>
</member>
<member name="F:System.CodeDom.Compiler.GeneratorSupport.ReferenceParameters">
<summary>Indicates the generator supports reference and out parameters.</summary>
<returns></returns>
</member>
<member name="F:System.CodeDom.Compiler.GeneratorSupport.Resources">
<summary>Indicates the generator supports compilation with .NET Framework resources. These can be default resources compiled directly into an assembly, or resources referenced in a satellite assembly.</summary>
<returns></returns>
</member>
<member name="F:System.CodeDom.Compiler.GeneratorSupport.ReturnTypeAttributes">
<summary>Indicates the generator supports return type attribute declarations.</summary>
<returns></returns>
</member>
<member name="F:System.CodeDom.Compiler.GeneratorSupport.StaticConstructors">
<summary>Indicates the generator supports static constructors.</summary>
<returns></returns>
</member>
<member name="F:System.CodeDom.Compiler.GeneratorSupport.TryCatchStatements">
<summary>Indicates the generator supports try...catch statements.</summary>
<returns></returns>
</member>
<member name="F:System.CodeDom.Compiler.GeneratorSupport.Win32Resources">
<summary>Indicates the generator supports compilation with Win32 resources.</summary>
<returns></returns>
</member>
<member name="T:System.CodeDom.Compiler.ICodeCompiler">
<summary>Defines an interface for invoking compilation of source code or a CodeDOM tree using a specific compiler.</summary>
</member>
<member name="M:System.CodeDom.Compiler.ICodeCompiler.CompileAssemblyFromDom(System.CodeDom.Compiler.CompilerParameters,System.CodeDom.CodeCompileUnit)">
<summary>Compiles an assembly from the <see cref="N:System.CodeDom"></see> tree contained in the specified <see cref="T:System.CodeDom.CodeCompileUnit"></see>, using the specified compiler settings.</summary>
<param name="options">A <see cref="T:System.CodeDom.Compiler.CompilerParameters"></see> object that indicates the settings for compilation.</param>
<param name="compilationUnit">A <see cref="T:System.CodeDom.CodeCompileUnit"></see> that indicates the code to compile.</param>
<returns>A <see cref="T:System.CodeDom.Compiler.CompilerResults"></see> object that indicates the results of compilation.</returns>
</member>
<member name="M:System.CodeDom.Compiler.ICodeCompiler.CompileAssemblyFromDomBatch(System.CodeDom.Compiler.CompilerParameters,System.CodeDom.CodeCompileUnit[])">
<summary>Compiles an assembly based on the <see cref="N:System.CodeDom"></see> trees contained in the specified array of <see cref="T:System.CodeDom.CodeCompileUnit"></see> objects, using the specified compiler settings.</summary>
<param name="options">A <see cref="T:System.CodeDom.Compiler.CompilerParameters"></see> object that indicates the settings for compilation.</param>
<param name="compilationUnits">An array of type <see cref="T:System.CodeDom.CodeCompileUnit"></see> that indicates the code to compile.</param>
<returns>A <see cref="T:System.CodeDom.Compiler.CompilerResults"></see> object that indicates the results of compilation.</returns>
</member>
<member name="M:System.CodeDom.Compiler.ICodeCompiler.CompileAssemblyFromFile(System.CodeDom.Compiler.CompilerParameters,System.String)">
<summary>Compiles an assembly from the source code contained within the specified file, using the specified compiler settings.</summary>
<param name="options">A <see cref="T:System.CodeDom.Compiler.CompilerParameters"></see> object that indicates the settings for compilation.</param>
<param name="fileName">The file name of the file that contains the source code to compile.</param>
<returns>A <see cref="T:System.CodeDom.Compiler.CompilerResults"></see> object that indicates the results of compilation.</returns>
</member>
<member name="M:System.CodeDom.Compiler.ICodeCompiler.CompileAssemblyFromFileBatch(System.CodeDom.Compiler.CompilerParameters,System.String[])">
<summary>Compiles an assembly from the source code contained within the specified files, using the specified compiler settings.</summary>
<param name="options">A <see cref="T:System.CodeDom.Compiler.CompilerParameters"></see> object that indicates the settings for compilation.</param>
<param name="fileNames">The file names of the files to compile.</param>
<returns>A <see cref="T:System.CodeDom.Compiler.CompilerResults"></see> object that indicates the results of compilation.</returns>
</member>
<member name="M:System.CodeDom.Compiler.ICodeCompiler.CompileAssemblyFromSource(System.CodeDom.Compiler.CompilerParameters,System.String)">
<summary>Compiles an assembly from the specified string containing source code, using the specified compiler settings.</summary>
<param name="options">A <see cref="T:System.CodeDom.Compiler.CompilerParameters"></see> object that indicates the settings for compilation.</param>
<param name="source">The source code to compile.</param>
<returns>A <see cref="T:System.CodeDom.Compiler.CompilerResults"></see> object that indicates the results of compilation.</returns>
</member>
<member name="M:System.CodeDom.Compiler.ICodeCompiler.CompileAssemblyFromSourceBatch(System.CodeDom.Compiler.CompilerParameters,System.String[])">
<summary>Compiles an assembly from the specified array of strings containing source code, using the specified compiler settings.</summary>
<param name="options">A <see cref="T:System.CodeDom.Compiler.CompilerParameters"></see> object that indicates the settings for compilation.</param>
<param name="sources">The source code strings to compile.</param>
<returns>A <see cref="T:System.CodeDom.Compiler.CompilerResults"></see> object that indicates the results of compilation.</returns>
</member>
<member name="T:System.CodeDom.Compiler.ICodeGenerator">
<summary>Defines an interface for generating code.</summary>
</member>
<member name="M:System.CodeDom.Compiler.ICodeGenerator.CreateEscapedIdentifier(System.String)">
<summary>Creates an escaped identifier for the specified value.</summary>
<param name="value">The string to create an escaped identifier for.</param>
<returns>The escaped identifier for the value.</returns>
</member>
<member name="M:System.CodeDom.Compiler.ICodeGenerator.CreateValidIdentifier(System.String)">
<summary>Creates a valid identifier for the specified value.</summary>
<param name="value">The string to generate a valid identifier for.</param>
<returns>A valid identifier for the specified value.</returns>
</member>
<member name="M:System.CodeDom.Compiler.ICodeGenerator.GenerateCodeFromCompileUnit(System.CodeDom.CodeCompileUnit,System.IO.TextWriter,System.CodeDom.Compiler.CodeGeneratorOptions)">
<summary>Generates code for the specified Code Document Object Model (CodeDOM) compilation unit and outputs it to the specified text writer using the specified options.</summary>
<param name="e">A <see cref="T:System.CodeDom.CodeCompileUnit"></see> to generate code for.</param>
<param name="w">The <see cref="T:System.IO.TextWriter"></see> to output code to.</param>
<param name="o">A <see cref="T:System.CodeDom.Compiler.CodeGeneratorOptions"></see> that indicates the options to use for generating code.</param>
</member>
<member name="M:System.CodeDom.Compiler.ICodeGenerator.GenerateCodeFromExpression(System.CodeDom.CodeExpression,System.IO.TextWriter,System.CodeDom.Compiler.CodeGeneratorOptions)">
<summary>Generates code for the specified Code Document Object Model (CodeDOM) expression and outputs it to the specified text writer.</summary>
<param name="e">A <see cref="T:System.CodeDom.CodeExpression"></see> that indicates the expression to generate code for.</param>
<param name="w">The <see cref="T:System.IO.TextWriter"></see> to output code to.</param>
<param name="o">A <see cref="T:System.CodeDom.Compiler.CodeGeneratorOptions"></see> that indicates the options to use for generating code.</param>
</member>
<member name="M:System.CodeDom.Compiler.ICodeGenerator.GenerateCodeFromNamespace(System.CodeDom.CodeNamespace,System.IO.TextWriter,System.CodeDom.Compiler.CodeGeneratorOptions)">
<summary>Generates code for the specified Code Document Object Model (CodeDOM) namespace and outputs it to the specified text writer using the specified options.</summary>
<param name="e">A <see cref="T:System.CodeDom.CodeNamespace"></see> that indicates the namespace to generate code for.</param>
<param name="w">The <see cref="T:System.IO.TextWriter"></see> to output code to.</param>
<param name="o">A <see cref="T:System.CodeDom.Compiler.CodeGeneratorOptions"></see> that indicates the options to use for generating code.</param>
</member>
<member name="M:System.CodeDom.Compiler.ICodeGenerator.GenerateCodeFromStatement(System.CodeDom.CodeStatement,System.IO.TextWriter,System.CodeDom.Compiler.CodeGeneratorOptions)">
<summary>Generates code for the specified Code Document Object Model (CodeDOM) statement and outputs it to the specified text writer using the specified options.</summary>
<param name="e">A <see cref="T:System.CodeDom.CodeStatement"></see> containing the CodeDOM elements to translate.</param>
<param name="w">The <see cref="T:System.IO.TextWriter"></see> to output code to.</param>
<param name="o">A <see cref="T:System.CodeDom.Compiler.CodeGeneratorOptions"></see> that indicates the options to use for generating code.</param>
</member>
<member name="M:System.CodeDom.Compiler.ICodeGenerator.GenerateCodeFromType(System.CodeDom.CodeTypeDeclaration,System.IO.TextWriter,System.CodeDom.Compiler.CodeGeneratorOptions)">
<summary>Generates code for the specified Code Document Object Model (CodeDOM) type declaration and outputs it to the specified text writer using the specified options.</summary>
<param name="e">A <see cref="T:System.CodeDom.CodeTypeDeclaration"></see> that indicates the type to generate code for.</param>
<param name="w">The <see cref="T:System.IO.TextWriter"></see> to output code to.</param>
<param name="o">A <see cref="T:System.CodeDom.Compiler.CodeGeneratorOptions"></see> that indicates the options to use for generating code.</param>
</member>
<member name="M:System.CodeDom.Compiler.ICodeGenerator.GetTypeOutput(System.CodeDom.CodeTypeReference)">
<summary>Gets the type indicated by the specified <see cref="T:System.CodeDom.CodeTypeReference"></see>.</summary>
<param name="type">A <see cref="T:System.CodeDom.CodeTypeReference"></see> that indicates the type to return.</param>
<returns>A text representation of the specified type for the language this code generator is designed to generate code in. For example, in Visual Basic, passing in type System.Int32 will return "Integer".</returns>
</member>
<member name="M:System.CodeDom.Compiler.ICodeGenerator.IsValidIdentifier(System.String)">
<summary>Gets a value that indicates whether the specified value is a valid identifier for the current language.</summary>
<param name="value">The value to test for being a valid identifier.</param>
<returns>true if the <paramref name="value">value</paramref> parameter is a valid identifier; otherwise, false.</returns>
</member>
<member name="M:System.CodeDom.Compiler.ICodeGenerator.Supports(System.CodeDom.Compiler.GeneratorSupport)">
<summary>Gets a value indicating whether the generator provides support for the language features represented by the specified <see cref="T:System.CodeDom.Compiler.GeneratorSupport"></see> object.</summary>
<param name="supports">The capabilities to test the generator for.</param>
<returns>true if the specified capabilities are supported; otherwise, false.</returns>
</member>
<member name="M:System.CodeDom.Compiler.ICodeGenerator.ValidateIdentifier(System.String)">
<summary>Throws an exception if the specified value is not a valid identifier.</summary>
<param name="value">The identifier to validate.</param>
<exception cref="T:System.ArgumentException">The identifier is not valid.</exception>
</member>
<member name="T:System.CodeDom.Compiler.ICodeParser">
<summary>Defines an interface for parsing code into a <see cref="T:System.CodeDom.CodeCompileUnit"></see>.</summary>
</member>
<member name="M:System.CodeDom.Compiler.ICodeParser.Parse(System.IO.TextReader)">
<summary>When implemented in a derived class, compiles the specified text stream into a <see cref="T:System.CodeDom.CodeCompileUnit"></see>.</summary>
<param name="codeStream">A <see cref="T:System.IO.TextReader"></see> that can be used to read the code to be compiled.</param>
<returns>A <see cref="T:System.CodeDom.CodeCompileUnit"></see> that contains a representation of the parsed code.</returns>
</member>
<member name="T:System.CodeDom.Compiler.LanguageOptions">
<summary>Defines identifiers that indicate special features of a language.</summary>
</member>
<member name="F:System.CodeDom.Compiler.LanguageOptions.CaseInsensitive">
<summary>The language is case-insensitive.</summary>
<returns></returns>
</member>
<member name="F:System.CodeDom.Compiler.LanguageOptions.None">
<summary>The language has default characteristics.</summary>
<returns></returns>
</member>
<member name="T:System.CodeDom.Compiler.TempFileCollection">
<summary>Represents a collection of temporary files.</summary>
</member>
<member name="M:System.CodeDom.Compiler.TempFileCollection.#ctor">
<summary>Initializes a new instance of the <see cref="T:System.CodeDom.Compiler.TempFileCollection"></see> class with default values.</summary>
</member>
<member name="M:System.CodeDom.Compiler.TempFileCollection.#ctor(System.String)">
<summary>Initializes a new instance of the <see cref="T:System.CodeDom.Compiler.TempFileCollection"></see> class using the specified temporary directory that is set to delete the temporary files after their generation and use, by default.</summary>
<param name="tempDir">A path to the temporary directory to use for storing the temporary files.</param>
</member>
<member name="M:System.CodeDom.Compiler.TempFileCollection.#ctor(System.String,System.Boolean)">
<summary>Initializes a new instance of the <see cref="T:System.CodeDom.Compiler.TempFileCollection"></see> class using the specified temporary directory and specified value indicating whether to keep or delete the temporary files after their generation and use, by default.</summary>
<param name="tempDir">A path to the temporary directory to use for storing the temporary files.</param>
<param name="keepFiles">true if the temporary files should be kept after use; false if the temporary files should be deleted.</param>
</member>
<member name="M:System.CodeDom.Compiler.TempFileCollection.AddExtension(System.String)">
<summary>Adds a file name with the specified file name extension to the collection.</summary>
<param name="fileExtension">The file name extension for the auto-generated temporary file name to add to the collection.</param>
<returns>A file name with the specified extension that was just added to the collection.</returns>
</member>
<member name="M:System.CodeDom.Compiler.TempFileCollection.AddExtension(System.String,System.Boolean)">
<summary>Adds a file name with the specified file name extension to the collection, using the specified value indicating whether the file should be deleted or retained.</summary>
<param name="fileExtension">The file name extension for the auto-generated temporary file name to add to the collection.</param>
<param name="keepFile">true if the file should be kept after use; false if the file should be deleted.</param>
<returns>A file name with the specified extension that was just added to the collection.</returns>
<exception cref="T:System.ArgumentException"><paramref name="fileExtension">fileExtension</paramref> is null or an empty string.</exception>
</member>
<member name="M:System.CodeDom.Compiler.TempFileCollection.AddFile(System.String,System.Boolean)">
<summary>Adds the specified file to the collection, using the specified value indicating whether to keep the file after the collection is disposed or when the <see cref="M:System.CodeDom.Compiler.TempFileCollection.Delete"></see> method is called.</summary>
<param name="fileName">The name of the file to add to the collection.</param>
<param name="keepFile">true if the file should be kept after use; false if the file should be deleted.</param>
<exception cref="T:System.ArgumentException"><paramref name="fileName">fileName</paramref> is null or an empty string. -or- <paramref name="fileName">fileName</paramref> is a duplicate.</exception>
</member>
<member name="P:System.CodeDom.Compiler.TempFileCollection.BasePath">
<summary>Gets the full path to the base file name, without a file name extension, on the temporary directory path, that is used to generate temporary file names for the collection.</summary>
<returns>The full path to the base file name, without a file name extension, on the temporary directory path, that is used to generate temporary file names for the collection.</returns>
<exception cref="T:System.Security.SecurityException">If the <see cref="P:System.CodeDom.Compiler.TempFileCollection.BasePath"></see> property has not been set or is set to null, and <see cref="F:System.Security.Permissions.FileIOPermissionAccess.AllAccess"></see> is not granted for the temporary directory indicated by the <see cref="P:System.CodeDom.Compiler.TempFileCollection.TempDir"></see> property.</exception>
</member>
<member name="M:System.CodeDom.Compiler.TempFileCollection.CopyTo(System.String[],System.Int32)">
<summary>Copies the members of the collection to the specified string, beginning at the specified index.</summary>
<param name="fileNames">The array of strings to copy to.</param>
<param name="start">The index of the array to begin copying to.</param>
</member>
<member name="P:System.CodeDom.Compiler.TempFileCollection.Count">
<summary>Gets the number of files in the collection.</summary>
<returns>The number of files in the collection.</returns>
</member>
<member name="M:System.CodeDom.Compiler.TempFileCollection.Delete">
<summary>Deletes the temporary files within this collection that were not marked to be kept.</summary>
</member>
<member name="M:System.CodeDom.Compiler.TempFileCollection.Dispose(System.Boolean)">
<summary>Releases the unmanaged resources used by the <see cref="T:System.CodeDom.Compiler.TempFileCollection"></see> and optionally releases the managed resources.</summary>
<param name="disposing">true to release both managed and unmanaged resources; false to release only unmanaged resources.</param>
</member>
<member name="M:System.CodeDom.Compiler.TempFileCollection.Finalize">
<summary>Attempts to delete the temporary files before this object is reclaimed by garbage collection.</summary>
</member>
<member name="M:System.CodeDom.Compiler.TempFileCollection.GetEnumerator">
<summary>Gets an enumerator that can enumerate the members of the collection.</summary>
<returns>An <see cref="T:System.Collections.IEnumerator"></see> that contains the collection's members.</returns>
</member>
<member name="P:System.CodeDom.Compiler.TempFileCollection.KeepFiles">
<summary>Gets or sets a value indicating whether to keep the files, by default, when the <see cref="M:System.CodeDom.Compiler.TempFileCollection.Delete"></see> method is called or the collection is disposed.</summary>
<returns>true if the files should be kept; otherwise, false.</returns>
</member>
<member name="P:System.CodeDom.Compiler.TempFileCollection.TempDir">
<summary>Gets the temporary directory to store the temporary files in.</summary>
<returns>The temporary directory to store the temporary files in.</returns>
</member>
<member name="M:System.CodeDom.Compiler.TempFileCollection.System#Collections#ICollection#CopyTo(System.Array,System.Int32)">
<summary>Copies the elements of the collection to an array, starting at the specified index of the target array.</summary>
<param name="array">The one-dimensional <see cref="T:System.Array"></see> that is the destination of the elements copied from <see cref="T:System.Collections.ICollection"></see>. The <see cref="T:System.Array"></see> must have zero-based indexing.</param>
<param name="start">The zero-based index in array at which copying begins.</param>
</member>
<member name="P:System.CodeDom.Compiler.TempFileCollection.System#Collections#ICollection#Count">
<summary>Gets the number of elements contained in the collection.</summary>
<returns>The number of elements contained in the <see cref="T:System.Collections.ICollection"></see>.</returns>
</member>
<member name="P:System.CodeDom.Compiler.TempFileCollection.System#Collections#ICollection#IsSynchronized">
<summary>Gets a value indicating whether access to the collection is synchronized (thread safe).</summary>
<returns>true if access to the <see cref="T:System.Collections.ICollection"></see> is synchronized (thread safe); otherwise, false.</returns>
</member>
<member name="P:System.CodeDom.Compiler.TempFileCollection.System#Collections#ICollection#SyncRoot">
<summary>Gets an object that can be used to synchronize access to the collection.</summary>
<returns>An object that can be used to synchronize access to the <see cref="T:System.Collections.ICollection"></see>.</returns>
</member>
<member name="M:System.CodeDom.Compiler.TempFileCollection.System#Collections#IEnumerable#GetEnumerator">
<summary>Returns an enumerator that iterates through a collection.</summary>
<returns>An <see cref="T:System.Collections.IEnumerator"></see> that can be used to iterate through the collection.</returns>
</member>
<member name="M:System.CodeDom.Compiler.TempFileCollection.System#IDisposable#Dispose">
<summary>Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.</summary>
</member>
<member name="T:System.CodeDom.FieldDirection">
<summary>Defines identifiers used to indicate the direction of parameter and argument declarations.</summary>
</member>
<member name="F:System.CodeDom.FieldDirection.In">
<summary>An incoming field.</summary>
<returns></returns>
</member>
<member name="F:System.CodeDom.FieldDirection.Out">
<summary>An outgoing field.</summary>
<returns></returns>
</member>
<member name="F:System.CodeDom.FieldDirection.Ref">
<summary>A field by reference.</summary>
<returns></returns>
</member>
<member name="T:System.CodeDom.MemberAttributes">
<summary>Defines member attribute identifiers for class members.</summary>
</member>
<member name="F:System.CodeDom.MemberAttributes.Abstract">
<summary>An abstract member.</summary>
<returns></returns>
</member>
<member name="F:System.CodeDom.MemberAttributes.AccessMask">
<summary>An access mask.</summary>
<returns></returns>
</member>
<member name="F:System.CodeDom.MemberAttributes.Assembly">
<summary>A member that is accessible to any class within the same assembly.</summary>
<returns></returns>
</member>
<member name="F:System.CodeDom.MemberAttributes.Const">
<summary>A constant member.</summary>
<returns></returns>
</member>
<member name="F:System.CodeDom.MemberAttributes.Family">
<summary>A member that is accessible within the family of its class and derived classes.</summary>
<returns></returns>
</member>
<member name="F:System.CodeDom.MemberAttributes.FamilyAndAssembly">
<summary>A member that is accessible within its class, and derived classes in the same assembly.</summary>
<returns></returns>
</member>
<member name="F:System.CodeDom.MemberAttributes.FamilyOrAssembly">
<summary>A member that is accessible within its class, its derived classes in any assembly, and any class in the same assembly.</summary>
<returns></returns>
</member>
<member name="F:System.CodeDom.MemberAttributes.Final">
<summary>A member that cannot be overridden in a derived class.</summary>
<returns></returns>
</member>
<member name="F:System.CodeDom.MemberAttributes.New">
<summary>A new member.</summary>
<returns></returns>
</member>
<member name="F:System.CodeDom.MemberAttributes.Overloaded">
<summary>An overloaded member. Some languages, such as Visual Basic, require overloaded members to be explicitly indicated.</summary>
<returns></returns>
</member>
<member name="F:System.CodeDom.MemberAttributes.Override">
<summary>A member that overrides a base class member.</summary>
<returns></returns>
</member>
<member name="F:System.CodeDom.MemberAttributes.Private">
<summary>A private member.</summary>
<returns></returns>
</member>
<member name="F:System.CodeDom.MemberAttributes.Public">
<summary>A public member.</summary>
<returns></returns>
</member>
<member name="F:System.CodeDom.MemberAttributes.ScopeMask">
<summary>A scope mask.</summary>
<returns></returns>
</member>
<member name="F:System.CodeDom.MemberAttributes.Static">
<summary>A static member. In Visual Basic, this is equivalent to the Shared keyword.</summary>
<returns></returns>
</member>
<member name="F:System.CodeDom.MemberAttributes.VTableMask">
<summary>A VTable mask.</summary>
<returns></returns>
</member>
<member name="T:Microsoft.CSharp.CSharpCodeProvider">
<summary>Provides access to instances of the C# code generator and code compiler.</summary>
</member>
<member name="M:Microsoft.CSharp.CSharpCodeProvider.#ctor">
<summary>Initializes a new instance of the <see cref="T:Microsoft.CSharp.CSharpCodeProvider"></see> class.</summary>
</member>
<member name="M:Microsoft.CSharp.CSharpCodeProvider.#ctor(System.Collections.Generic.IDictionary{System.String,System.String})">
<summary>Initializes a new instance of the <see cref="T:Microsoft.CSharp.CSharpCodeProvider"></see> class by using the specified provider options.</summary>
<param name="providerOptions">A <see cref="T:System.Collections.Generic.IDictionary`2"></see> object that contains the provider options from the configuration file.</param>
<exception cref="T:System.ArgumentNullException"><paramref name="providerOptions">providerOptions</paramref> is null.</exception>
</member>
<member name="M:Microsoft.CSharp.CSharpCodeProvider.CreateCompiler">
<summary>Gets an instance of the C# code compiler.</summary>
<returns>An instance of the C# <see cref="T:System.CodeDom.Compiler.ICodeCompiler"></see> implementation.</returns>
</member>
<member name="M:Microsoft.CSharp.CSharpCodeProvider.CreateGenerator">
<summary>Gets an instance of the C# code generator.</summary>
<returns>An instance of the C# <see cref="T:System.CodeDom.Compiler.ICodeGenerator"></see> implementation.</returns>
</member>
<member name="P:Microsoft.CSharp.CSharpCodeProvider.FileExtension">
<summary>Gets the file name extension to use when creating source code files.</summary>
<returns>The file name extension to use for generated source code files.</returns>
</member>
<member name="M:Microsoft.CSharp.CSharpCodeProvider.GenerateCodeFromMember(System.CodeDom.CodeTypeMember,System.IO.TextWriter,System.CodeDom.Compiler.CodeGeneratorOptions)">
<summary>Generates code for the specified class member using the specified text writer and code generator options.</summary>
<param name="member">A <see cref="T:System.CodeDom.CodeTypeMember"></see> to generate code for.</param>
<param name="writer">The <see cref="T:System.IO.TextWriter"></see> to write to.</param>
<param name="options">The <see cref="T:System.CodeDom.Compiler.CodeGeneratorOptions"></see> to use when generating the code.</param>
</member>
<member name="M:Microsoft.CSharp.CSharpCodeProvider.GetConverter(System.Type)">
<summary>Gets a <see cref="T:System.ComponentModel.TypeConverter"></see> for the specified type of object.</summary>
<param name="type">The type of object to retrieve a type converter for.</param>
<returns>A <see cref="T:System.ComponentModel.TypeConverter"></see> for the specified type.</returns>
</member>
<member name="T:Microsoft.VisualBasic.VBCodeProvider">
<summary>Provides access to instances of the Visual Basic code generator and code compiler.</summary>
</member>
<member name="M:Microsoft.VisualBasic.VBCodeProvider.#ctor">
<summary>Initializes a new instance of the <see cref="T:Microsoft.VisualBasic.VBCodeProvider"></see> class.</summary>
</member>
<member name="M:Microsoft.VisualBasic.VBCodeProvider.#ctor(System.Collections.Generic.IDictionary{System.String,System.String})">
<summary>Initializes a new instance of the <see cref="T:Microsoft.VisualBasic.VBCodeProvider"></see> class by using the specified provider options.</summary>
<param name="providerOptions">A <see cref="T:System.Collections.Generic.IDictionary`2"></see> object that contains the provider options from the configuration file.</param>
<exception cref="T:System.ArgumentNullException"><paramref name="providerOptions">providerOptions</paramref> is null.</exception>
</member>
<member name="M:Microsoft.VisualBasic.VBCodeProvider.CreateCompiler">
<summary>Gets an instance of the Visual Basic code compiler.</summary>
<returns>An instance of the Visual Basic <see cref="T:System.CodeDom.Compiler.ICodeCompiler"></see> implementation.</returns>
</member>
<member name="M:Microsoft.VisualBasic.VBCodeProvider.CreateGenerator">
<summary>Gets an instance of the Visual Basic code generator.</summary>
<returns>An instance of the Visual Basic <see cref="T:System.CodeDom.Compiler.ICodeGenerator"></see> implementation.</returns>
</member>
<member name="P:Microsoft.VisualBasic.VBCodeProvider.FileExtension">
<summary>Gets the file name extension to use when creating source code files.</summary>
<returns>The file name extension to use for generated source code files.</returns>
</member>
<member name="M:Microsoft.VisualBasic.VBCodeProvider.GenerateCodeFromMember(System.CodeDom.CodeTypeMember,System.IO.TextWriter,System.CodeDom.Compiler.CodeGeneratorOptions)">
<summary>Generates code for the specified class member using the specified text writer and code generator options.</summary>
<param name="member">A <see cref="T:System.CodeDom.CodeTypeMember"></see> to generate code for.</param>
<param name="writer">The <see cref="T:System.IO.TextWriter"></see> to write to.</param>
<param name="options">The <see cref="T:System.CodeDom.Compiler.CodeGeneratorOptions"></see> to use when generating the code.</param>
</member>
<member name="M:Microsoft.VisualBasic.VBCodeProvider.GetConverter(System.Type)">
<summary>Gets a <see cref="T:System.ComponentModel.TypeConverter"></see> for the specified type of object.</summary>
<param name="type">The type of object to retrieve a type converter for.</param>
<returns>A <see cref="T:System.ComponentModel.TypeConverter"></see> for the specified type.</returns>
</member>
<member name="P:Microsoft.VisualBasic.VBCodeProvider.LanguageOptions">
<summary>Gets a language features identifier.</summary>
<returns>A <see cref="T:System.CodeDom.Compiler.LanguageOptions"></see> that indicates special features of the language.</returns>
</member>
<member name="T:System.CodeDom.CodeSnippetStatement">
<summary>Represents a statement using a literal code fragment.</summary>
</member>
<member name="M:System.CodeDom.CodeSnippetStatement.#ctor">
<summary>Initializes a new instance of the <see cref="T:System.CodeDom.CodeSnippetStatement"></see> class.</summary>
</member>
<member name="M:System.CodeDom.CodeSnippetStatement.#ctor(System.String)">
<summary>Initializes a new instance of the <see cref="T:System.CodeDom.CodeSnippetStatement"></see> class using the specified code fragment.</summary>
<param name="value">The literal code fragment of the statement to represent.</param>
</member>
<member name="P:System.CodeDom.CodeSnippetStatement.Value">
<summary>Gets or sets the literal code fragment statement.</summary>
<returns>The literal code fragment statement.</returns>
</member>
<member name="T:System.CodeDom.CodeSnippetTypeMember">
<summary>Represents a member of a type using a literal code fragment.</summary>
</member>
<member name="M:System.CodeDom.CodeSnippetTypeMember.#ctor">
<summary>Initializes a new instance of the <see cref="T:System.CodeDom.CodeSnippetTypeMember"></see> class.</summary>
</member>
<member name="M:System.CodeDom.CodeSnippetTypeMember.#ctor(System.String)">
<summary>Initializes a new instance of the <see cref="T:System.CodeDom.CodeSnippetTypeMember"></see> class using the specified text.</summary>
<param name="text">The literal code fragment for the type member.</param>
</member>
<member name="P:System.CodeDom.CodeSnippetTypeMember.Text">
<summary>Gets or sets the literal code fragment for the type member.</summary>
<returns>The literal code fragment for the type member.</returns>
</member>
<member name="T:System.CodeDom.CodeStatement">
<summary>Represents the abstract base class from which all code statements derive.</summary>
</member>
<member name="M:System.CodeDom.CodeStatement.#ctor">
<summary>Initializes a new instance of the <see cref="T:System.CodeDom.CodeStatement"></see> class.</summary>
</member>
<member name="P:System.CodeDom.CodeStatement.EndDirectives">
<summary>Gets a <see cref="T:System.CodeDom.CodeDirectiveCollection"></see> object that contains end directives.</summary>
<returns>A <see cref="T:System.CodeDom.CodeDirectiveCollection"></see> object containing end directives.</returns>
</member>
<member name="P:System.CodeDom.CodeStatement.LinePragma">
<summary>Gets or sets the line on which the code statement occurs.</summary>
<returns>A <see cref="T:System.CodeDom.CodeLinePragma"></see> object that indicates the context of the code statement.</returns>
</member>
<member name="P:System.CodeDom.CodeStatement.StartDirectives">
<summary>Gets a <see cref="T:System.CodeDom.CodeDirectiveCollection"></see> object that contains start directives.</summary>
<returns>A <see cref="T:System.CodeDom.CodeDirectiveCollection"></see> object containing start directives.</returns>
</member>
<member name="T:System.CodeDom.CodeStatementCollection">
<summary>Represents a collection of <see cref="T:System.CodeDom.CodeStatement"></see> objects.</summary>
</member>
<member name="M:System.CodeDom.CodeStatementCollection.#ctor">
<summary>Initializes a new instance of the <see cref="T:System.CodeDom.CodeStatementCollection"></see> class.</summary>
</member>
<member name="M:System.CodeDom.CodeStatementCollection.#ctor(System.CodeDom.CodeStatement[])">
<summary>Initializes a new instance of the <see cref="T:System.CodeDom.CodeStatementCollection"></see> class that contains the specified array of <see cref="T:System.CodeDom.CodeStatement"></see> objects.</summary>
<param name="value">An array of <see cref="T:System.CodeDom.CodeStatement"></see> objects with which to initialize the collection.</param>
<exception cref="T:System.ArgumentNullException"><paramref name="value">value</paramref> is null.</exception>
</member>
<member name="M:System.CodeDom.CodeStatementCollection.#ctor(System.CodeDom.CodeStatementCollection)">
<summary>Initializes a new instance of the <see cref="T:System.CodeDom.CodeStatementCollection"></see> class that contains the elements of the specified source collection.</summary>
<param name="value">A <see cref="T:System.CodeDom.CodeStatementCollection"></see> object with which to initialize the collection.</param>
<exception cref="T:System.ArgumentNullException"><paramref name="value">value</paramref> is null.</exception>
</member>
<member name="M:System.CodeDom.CodeStatementCollection.Add(System.CodeDom.CodeExpression)">
<summary>Adds the specified <see cref="T:System.CodeDom.CodeExpression"></see> object to the collection.</summary>
<param name="value">The <see cref="T:System.CodeDom.CodeExpression"></see> object to add.</param>
<returns>The index at which the new element was inserted.</returns>
</member>
<member name="M:System.CodeDom.CodeStatementCollection.Add(System.CodeDom.CodeStatement)">
<summary>Adds the specified <see cref="T:System.CodeDom.CodeStatement"></see> object to the collection.</summary>
<param name="value">The <see cref="T:System.CodeDom.CodeStatement"></see> object to add.</param>
<returns>The index at which the new element was inserted.</returns>
</member>
<member name="M:System.CodeDom.CodeStatementCollection.AddRange(System.CodeDom.CodeStatement[])">
<summary>Adds a set of <see cref="T:System.CodeDom.CodeStatement"></see> objects to the collection.</summary>
<param name="value">An array of <see cref="T:System.CodeDom.CodeStatement"></see> objects to add to the collection.</param>
<exception cref="T:System.ArgumentNullException"><paramref name="value">value</paramref> is null.</exception>
</member>
<member name="M:System.CodeDom.CodeStatementCollection.AddRange(System.CodeDom.CodeStatementCollection)">
<summary>Adds the contents of another <see cref="T:System.CodeDom.CodeStatementCollection"></see> object to the end of the collection.</summary>
<param name="value">A <see cref="T:System.CodeDom.CodeStatementCollection"></see> object that contains the objects to add to the collection.</param>
<exception cref="T:System.ArgumentNullException"><paramref name="value">value</paramref> is null.</exception>
</member>
<member name="M:System.CodeDom.CodeStatementCollection.Contains(System.CodeDom.CodeStatement)">
<summary>Gets a value that indicates whether the collection contains the specified <see cref="T:System.CodeDom.CodeStatement"></see> object.</summary>
<param name="value">The <see cref="T:System.CodeDom.CodeStatement"></see> object to search for in the collection.</param>
<returns>true if the collection contains the specified object; otherwise, false.</returns>
</member>
<member name="M:System.CodeDom.CodeStatementCollection.CopyTo(System.CodeDom.CodeStatement[],System.Int32)">
<summary>Copies the elements of the <see cref="T:System.CodeDom.CodeStatementCollection"></see> object to a one-dimensional <see cref="T:System.Array"></see> instance, starting at the specified index.</summary>
<param name="array">The one-dimensional <see cref="T:System.Array"></see> that is the destination of the values copied from the collection.</param>
<param name="index">The index of the array at which to begin inserting.</param>
<exception cref="T:System.ArgumentException">The destination array is multidimensional. -or- The number of elements in the <see cref="T:System.CodeDom.CodeStatementCollection"></see> is greater than the available space between the index of the target array specified by the <paramref name="index">index</paramref> parameter and the end of the target array.</exception>
<exception cref="T:System.ArgumentNullException">The <paramref name="array">array</paramref> parameter is null.</exception>
<exception cref="T:System.ArgumentOutOfRangeException">The <paramref name="index">index</paramref> parameter is less than the target array's minimum index.</exception>
</member>
<member name="M:System.CodeDom.CodeStatementCollection.IndexOf(System.CodeDom.CodeStatement)">
<summary>Gets the index of the specified <see cref="T:System.CodeDom.CodeStatement"></see> object in the <see cref="T:System.CodeDom.CodeStatementCollection"></see>, if it exists in the collection.</summary>
<param name="value">The <see cref="T:System.CodeDom.CodeStatement"></see> to locate in the collection.</param>
<returns>The index of the specified object, if it is found, in the collection; otherwise, -1.</returns>
</member>
<member name="M:System.CodeDom.CodeStatementCollection.Insert(System.Int32,System.CodeDom.CodeStatement)">
<summary>Inserts the specified <see cref="T:System.CodeDom.CodeStatement"></see> object into the collection at the specified index.</summary>
<param name="index">The zero-based index where the specified object should be inserted.</param>
<param name="value">The <see cref="T:System.CodeDom.CodeStatement"></see> object to insert.</param>
</member>
<member name="P:System.CodeDom.CodeStatementCollection.Item(System.Int32)">
<summary>Gets or sets the <see cref="T:System.CodeDom.CodeStatement"></see> object at the specified index in the collection.</summary>
<param name="index">The index of the collection to access.</param>
<returns>A <see cref="T:System.CodeDom.CodeStatement"></see> at each valid index.</returns>
<exception cref="T:System.ArgumentOutOfRangeException">The <paramref name="index">index</paramref> parameter is outside the valid range of indexes for the collection.</exception>
</member>
<member name="M:System.CodeDom.CodeStatementCollection.Remove(System.CodeDom.CodeStatement)">
<summary>Removes the specified <see cref="T:System.CodeDom.CodeStatement"></see> object from the collection.</summary>
<param name="value">The <see cref="T:System.CodeDom.CodeStatement"></see> to remove from the collection.</param>
<exception cref="T:System.ArgumentException">The specified object is not found in the collection.</exception>
</member>
<member name="T:System.CodeDom.CodeThisReferenceExpression">
<summary>Represents a reference to the current local class instance.</summary>
</member>
<member name="M:System.CodeDom.CodeThisReferenceExpression.#ctor">
<summary>Initializes a new instance of the <see cref="T:System.CodeDom.CodeThisReferenceExpression"></see> class.</summary>
</member>
<member name="T:System.CodeDom.CodeThrowExceptionStatement">
<summary>Represents a statement that throws an exception.</summary>
</member>
<member name="M:System.CodeDom.CodeThrowExceptionStatement.#ctor">
<summary>Initializes a new instance of the <see cref="T:System.CodeDom.CodeThrowExceptionStatement"></see> class.</summary>
</member>
<member name="M:System.CodeDom.CodeThrowExceptionStatement.#ctor(System.CodeDom.CodeExpression)">
<summary>Initializes a new instance of the <see cref="T:System.CodeDom.CodeThrowExceptionStatement"></see> class with the specified exception type instance.</summary>
<param name="toThrow">A <see cref="T:System.CodeDom.CodeExpression"></see> that indicates the exception to throw.</param>
</member>
<member name="P:System.CodeDom.CodeThrowExceptionStatement.ToThrow">
<summary>Gets or sets the exception to throw.</summary>
<returns>A <see cref="T:System.CodeDom.CodeExpression"></see> representing an instance of the exception to throw.</returns>
</member>
<member name="T:System.CodeDom.CodeTryCatchFinallyStatement">
<summary>Represents a try block with any number of catch clauses and, optionally, a finally block.</summary>
</member>
<member name="M:System.CodeDom.CodeTryCatchFinallyStatement.#ctor">
<summary>Initializes a new instance of the <see cref="T:System.CodeDom.CodeTryCatchFinallyStatement"></see> class.</summary>
</member>
<member name="M:System.CodeDom.CodeTryCatchFinallyStatement.#ctor(System.CodeDom.CodeStatement[],System.CodeDom.CodeCatchClause[])">
<summary>Initializes a new instance of the <see cref="T:System.CodeDom.CodeTryCatchFinallyStatement"></see> class using the specified statements for try and catch clauses.</summary>
<param name="tryStatements">An array of <see cref="T:System.CodeDom.CodeStatement"></see> objects that indicate the statements to try.</param>
<param name="catchClauses">An array of <see cref="T:System.CodeDom.CodeCatchClause"></see> objects that indicate the clauses to catch.</param>
</member>
<member name="M:System.CodeDom.CodeTryCatchFinallyStatement.#ctor(System.CodeDom.CodeStatement[],System.CodeDom.CodeCatchClause[],System.CodeDom.CodeStatement[])">
<summary>Initializes a new instance of the <see cref="T:System.CodeDom.CodeTryCatchFinallyStatement"></see> class using the specified statements for try, catch clauses, and finally statements.</summary>
<param name="tryStatements">An array of <see cref="T:System.CodeDom.CodeStatement"></see> objects that indicate the statements to try.</param>
<param name="catchClauses">An array of <see cref="T:System.CodeDom.CodeCatchClause"></see> objects that indicate the clauses to catch.</param>
<param name="finallyStatements">An array of <see cref="T:System.CodeDom.CodeStatement"></see> objects that indicate the finally statements to use.</param>
</member>
<member name="P:System.CodeDom.CodeTryCatchFinallyStatement.CatchClauses">
<summary>Gets the catch clauses to use.</summary>
<returns>A <see cref="T:System.CodeDom.CodeCatchClauseCollection"></see> that indicates the catch clauses to use.</returns>
</member>
<member name="P:System.CodeDom.CodeTryCatchFinallyStatement.FinallyStatements">
<summary>Gets the finally statements to use.</summary>
<returns>A <see cref="T:System.CodeDom.CodeStatementCollection"></see> that indicates the finally statements.</returns>
</member>
<member name="P:System.CodeDom.CodeTryCatchFinallyStatement.TryStatements">
<summary>Gets the statements to try.</summary>
<returns>A <see cref="T:System.CodeDom.CodeStatementCollection"></see> that indicates the statements to try.</returns>
</member>
<member name="T:System.CodeDom.CodeTypeConstructor">
<summary>Represents a static constructor for a class.</summary>
</member>
<member name="M:System.CodeDom.CodeTypeConstructor.#ctor">
<summary>Initializes a new instance of the <see cref="T:System.CodeDom.CodeTypeConstructor"></see> class.</summary>
</member>
<member name="T:System.CodeDom.CodeTypeDeclaration">
<summary>Represents a type declaration for a class, structure, interface, or enumeration.</summary>
</member>
<member name="M:System.CodeDom.CodeTypeDeclaration.#ctor">
<summary>Initializes a new instance of the <see cref="T:System.CodeDom.CodeTypeDeclaration"></see> class.</summary>
</member>
<member name="M:System.CodeDom.CodeTypeDeclaration.#ctor(System.String)">
<summary>Initializes a new instance of the <see cref="T:System.CodeDom.CodeTypeDeclaration"></see> class with the specified name.</summary>
<param name="name">The name for the new type.</param>
</member>
<member name="P:System.CodeDom.CodeTypeDeclaration.BaseTypes">
<summary>Gets the base types of the type.</summary>
<returns>A <see cref="T:System.CodeDom.CodeTypeReferenceCollection"></see> object that indicates the base types of the type.</returns>
</member>
<member name="P:System.CodeDom.CodeTypeDeclaration.IsClass">
<summary>Gets or sets a value indicating whether the type is a class or reference type.</summary>
<returns>true if the type is a class or reference type; otherwise, false.</returns>
</member>
<member name="P:System.CodeDom.CodeTypeDeclaration.IsEnum">
<summary>Gets or sets a value indicating whether the type is an enumeration.</summary>
<returns>true if the type is an enumeration; otherwise, false.</returns>
</member>
<member name="P:System.CodeDom.CodeTypeDeclaration.IsInterface">
<summary>Gets or sets a value indicating whether the type is an interface.</summary>
<returns>true if the type is an interface; otherwise, false.</returns>
</member>
<member name="P:System.CodeDom.CodeTypeDeclaration.IsPartial">
<summary>Gets or sets a value indicating whether the type declaration is complete or partial.</summary>
<returns>true if the class or structure declaration is a partial representation of the implementation; false if the declaration is a complete implementation of the class or structure. The default is false.</returns>
</member>
<member name="P:System.CodeDom.CodeTypeDeclaration.IsStruct">
<summary>Gets or sets a value indicating whether the type is a value type (struct).</summary>
<returns>true if the type is a value type; otherwise, false.</returns>
</member>
<member name="P:System.CodeDom.CodeTypeDeclaration.Members">
<summary>Gets the collection of class members for the represented type.</summary>
<returns>A <see cref="T:System.CodeDom.CodeTypeMemberCollection"></see> object that indicates the class members.</returns>
</member>
<member name="E:System.CodeDom.CodeTypeDeclaration.PopulateBaseTypes">
<summary>Occurs when the <see cref="P:System.CodeDom.CodeTypeDeclaration.BaseTypes"></see> collection is accessed for the first time.</summary>
<returns></returns>
</member>
<member name="E:System.CodeDom.CodeTypeDeclaration.PopulateMembers">
<summary>Occurs when the <see cref="P:System.CodeDom.CodeTypeDeclaration.Members"></see> collection is accessed for the first time.</summary>
<returns></returns>
</member>
<member name="P:System.CodeDom.CodeTypeDeclaration.TypeAttributes">
<summary>Gets or sets the attributes of the type.</summary>
<returns>A <see cref="T:System.Reflection.TypeAttributes"></see> object that indicates the attributes of the type.</returns>
</member>
<member name="P:System.CodeDom.CodeTypeDeclaration.TypeParameters">
<summary>Gets the type parameters for the type declaration.</summary>
<returns>A <see cref="T:System.CodeDom.CodeTypeParameterCollection"></see> that contains the type parameters for the type declaration.</returns>
</member>
<member name="T:System.CodeDom.CodeTypeDeclarationCollection">
<summary>Represents a collection of <see cref="T:System.CodeDom.CodeTypeDeclaration"></see> objects.</summary>
</member>
<member name="M:System.CodeDom.CodeTypeDeclarationCollection.#ctor">
<summary>Initializes a new instance of the <see cref="T:System.CodeDom.CodeTypeDeclarationCollection"></see> class.</summary>
</member>
<member name="M:System.CodeDom.CodeTypeDeclarationCollection.#ctor(System.CodeDom.CodeTypeDeclaration[])">
<summary>Initializes a new instance of the <see cref="T:System.CodeDom.CodeTypeDeclarationCollection"></see> class that contains the specified array of <see cref="T:System.CodeDom.CodeTypeDeclaration"></see> objects.</summary>
<param name="value">An array of <see cref="T:System.CodeDom.CodeTypeDeclaration"></see> objects with which to initialize the collection.</param>
</member>
<member name="M:System.CodeDom.CodeTypeDeclarationCollection.#ctor(System.CodeDom.CodeTypeDeclarationCollection)">
<summary>Initializes a new instance of the <see cref="T:System.CodeDom.CodeTypeDeclarationCollection"></see> class that contains the elements of the specified source collection.</summary>
<param name="value">A <see cref="T:System.CodeDom.CodeTypeDeclarationCollection"></see> object with which to initialize the collection.</param>
</member>
<member name="M:System.CodeDom.CodeTypeDeclarationCollection.Add(System.CodeDom.CodeTypeDeclaration)">
<summary>Adds the specified <see cref="T:System.CodeDom.CodeTypeDeclaration"></see> object to the collection.</summary>
<param name="value">The <see cref="T:System.CodeDom.CodeTypeDeclaration"></see> object to add.</param>
<returns>The index at which the new element was inserted.</returns>
</member>
<member name="M:System.CodeDom.CodeTypeDeclarationCollection.AddRange(System.CodeDom.CodeTypeDeclaration[])">
<summary>Copies the elements of the specified array to the end of the collection.</summary>
<param name="value">An array of type <see cref="T:System.CodeDom.CodeTypeDeclaration"></see> that contains the objects to add to the collection.</param>
<exception cref="T:System.ArgumentNullException"><paramref name="value">value</paramref> is null.</exception>
</member>
<member name="M:System.CodeDom.CodeTypeDeclarationCollection.AddRange(System.CodeDom.CodeTypeDeclarationCollection)">
<summary>Adds the contents of another <see cref="T:System.CodeDom.CodeTypeDeclarationCollection"></see> object to the end of the collection.</summary>
<param name="value">A <see cref="T:System.CodeDom.CodeTypeDeclarationCollection"></see> object that contains the objects to add to the collection.</param>
<exception cref="T:System.ArgumentNullException"><paramref name="value">value</paramref> is null.</exception>
</member>
<member name="M:System.CodeDom.CodeTypeDeclarationCollection.Contains(System.CodeDom.CodeTypeDeclaration)">
<summary>Gets a value that indicates whether the collection contains the specified <see cref="T:System.CodeDom.CodeTypeDeclaration"></see> object.</summary>
<param name="value">The <see cref="T:System.CodeDom.CodeTypeDeclaration"></see> object to search for in the collection.</param>
<returns>true if the collection contains the specified object; otherwise, false.</returns>
</member>
<member name="M:System.CodeDom.CodeTypeDeclarationCollection.CopyTo(System.CodeDom.CodeTypeDeclaration[],System.Int32)">
<summary>Copies the elements in the <see cref="T:System.CodeDom.CodeTypeDeclarationCollection"></see> object to a one-dimensional <see cref="T:System.Array"></see> instance, starting at the specified index.</summary>
<param name="array">The one-dimensional <see cref="T:System.Array"></see> that is the destination of the values copied from the collection.</param>
<param name="index">The index of the array at which to begin inserting.</param>
<exception cref="T:System.ArgumentException">The destination array is multidimensional. -or- The number of elements in the <see cref="T:System.CodeDom.CodeTypeDeclarationCollection"></see> is greater than the available space between the index of the target array specified by the <paramref name="index">index</paramref> parameter and the end of the target array.</exception>
<exception cref="T:System.ArgumentNullException">The <paramref name="array">array</paramref> parameter is null.</exception>
<exception cref="T:System.ArgumentOutOfRangeException">The <paramref name="index">index</paramref> parameter is less than the target array's minimum index.</exception>
</member>
<member name="M:System.CodeDom.CodeTypeDeclarationCollection.IndexOf(System.CodeDom.CodeTypeDeclaration)">
<summary>Gets the index of the specified <see cref="T:System.CodeDom.CodeTypeDeclaration"></see> object in the <see cref="T:System.CodeDom.CodeTypeDeclarationCollection"></see>, if it exists in the collection.</summary>
<param name="value">The <see cref="T:System.CodeDom.CodeTypeDeclaration"></see> to locate in the collection.</param>
<returns>The index of the specified object, if it is found, in the collection; otherwise, -1.</returns>
</member>
<member name="M:System.CodeDom.CodeTypeDeclarationCollection.Insert(System.Int32,System.CodeDom.CodeTypeDeclaration)">
<summary>Inserts the specified <see cref="T:System.CodeDom.CodeTypeDeclaration"></see> object into the collection at the specified index.</summary>
<param name="index">The zero-based index where the specified object should be inserted.</param>
<param name="value">The <see cref="T:System.CodeDom.CodeTypeDeclaration"></see> object to insert.</param>
</member>
<member name="P:System.CodeDom.CodeTypeDeclarationCollection.Item(System.Int32)">
<summary>Gets or sets the <see cref="T:System.CodeDom.CodeTypeDeclaration"></see> object at the specified index in the collection.</summary>
<param name="index">The index of the collection to access.</param>
<returns>A <see cref="T:System.CodeDom.CodeTypeDeclaration"></see> at each valid index.</returns>
<exception cref="T:System.ArgumentOutOfRangeException">The <paramref name="index">index</paramref> parameter is outside the valid range of indexes for the collection.</exception>
</member>
<member name="M:System.CodeDom.CodeTypeDeclarationCollection.Remove(System.CodeDom.CodeTypeDeclaration)">
<summary>Removes the specified <see cref="T:System.CodeDom.CodeTypeDeclaration"></see> object from the collection.</summary>
<param name="value">The <see cref="T:System.CodeDom.CodeTypeDeclaration"></see> to remove from the collection.</param>
<exception cref="T:System.ArgumentException">The specified object is not found in the collection.</exception>
</member>
<member name="T:System.CodeDom.CodeTypeDelegate">
<summary>Represents a delegate declaration.</summary>
</member>
<member name="M:System.CodeDom.CodeTypeDelegate.#ctor">
<summary>Initializes a new instance of the <see cref="T:System.CodeDom.CodeTypeDelegate"></see> class.</summary>
</member>
<member name="M:System.CodeDom.CodeTypeDelegate.#ctor(System.String)">
<summary>Initializes a new instance of the <see cref="T:System.CodeDom.CodeTypeDelegate"></see> class.</summary>
<param name="name">The name of the delegate.</param>
</member>
<member name="P:System.CodeDom.CodeTypeDelegate.Parameters">
<summary>Gets the parameters of the delegate.</summary>
<returns>A <see cref="T:System.CodeDom.CodeParameterDeclarationExpressionCollection"></see> that indicates the parameters of the delegate.</returns>
</member>
<member name="P:System.CodeDom.CodeTypeDelegate.ReturnType">
<summary>Gets or sets the return type of the delegate.</summary>
<returns>A <see cref="T:System.CodeDom.CodeTypeReference"></see> that indicates the return type of the delegate.</returns>
</member>
<member name="T:System.CodeDom.CodeTypeMember">
<summary>Provides a base class for a member of a type. Type members include fields, methods, properties, constructors and nested types.</summary>
</member>
<member name="M:System.CodeDom.CodeTypeMember.#ctor">
<summary>Initializes a new instance of the <see cref="T:System.CodeDom.CodeTypeMember"></see> class.</summary>
</member>
<member name="P:System.CodeDom.CodeTypeMember.Attributes">
<summary>Gets or sets the attributes of the member.</summary>
<returns>A bitwise combination of the <see cref="T:System.CodeDom.MemberAttributes"></see> values used to indicate the attributes of the member. The default value is <see cref="F:System.CodeDom.MemberAttributes.Private"></see> | <see cref="F:System.CodeDom.MemberAttributes.Final"></see>.</returns>
</member>
<member name="P:System.CodeDom.CodeTypeMember.Comments">
<summary>Gets the collection of comments for the type member.</summary>
<returns>A <see cref="T:System.CodeDom.CodeCommentStatementCollection"></see> that indicates the comments for the member.</returns>
</member>
<member name="P:System.CodeDom.CodeTypeMember.CustomAttributes">
<summary>Gets or sets the custom attributes of the member.</summary>
<returns>A <see cref="T:System.CodeDom.CodeAttributeDeclarationCollection"></see> that indicates the custom attributes of the member.</returns>
</member>
<member name="P:System.CodeDom.CodeTypeMember.EndDirectives">
<summary>Gets the end directives for the member.</summary>
<returns>A <see cref="T:System.CodeDom.CodeDirectiveCollection"></see> object containing end directives.</returns>
</member>
<member name="P:System.CodeDom.CodeTypeMember.LinePragma">
<summary>Gets or sets the line on which the type member statement occurs.</summary>
<returns>A <see cref="T:System.CodeDom.CodeLinePragma"></see> object that indicates the location of the type member declaration.</returns>
</member>
<member name="P:System.CodeDom.CodeTypeMember.Name">
<summary>Gets or sets the name of the member.</summary>
<returns>The name of the member.</returns>
</member>
<member name="P:System.CodeDom.CodeTypeMember.StartDirectives">
<summary>Gets the start directives for the member.</summary>
<returns>A <see cref="T:System.CodeDom.CodeDirectiveCollection"></see> object containing start directives.</returns>
</member>
<member name="T:System.CodeDom.CodeTypeMemberCollection">
<summary>Represents a collection of <see cref="T:System.CodeDom.CodeTypeMember"></see> objects.</summary>
</member>
<member name="M:System.CodeDom.CodeTypeMemberCollection.#ctor">
<summary>Initializes a new instance of the <see cref="T:System.CodeDom.CodeTypeMemberCollection"></see> class.</summary>
</member>
<member name="M:System.CodeDom.CodeTypeMemberCollection.#ctor(System.CodeDom.CodeTypeMember[])">
<summary>Initializes a new instance of the <see cref="T:System.CodeDom.CodeTypeMemberCollection"></see> class containing the specified array of <see cref="T:System.CodeDom.CodeTypeMember"></see> objects.</summary>
<param name="value">An array of <see cref="T:System.CodeDom.CodeTypeMember"></see> objects with which to initialize the collection.</param>
</member>
<member name="M:System.CodeDom.CodeTypeMemberCollection.#ctor(System.CodeDom.CodeTypeMemberCollection)">
<summary>Initializes a new instance of the <see cref="T:System.CodeDom.CodeTypeMemberCollection"></see> class containing the elements of the specified source collection.</summary>
<param name="value">A <see cref="T:System.CodeDom.CodeTypeMemberCollection"></see> with which to initialize the collection.</param>
</member>
<member name="M:System.CodeDom.CodeTypeMemberCollection.Add(System.CodeDom.CodeTypeMember)">
<summary>Adds a <see cref="T:System.CodeDom.CodeTypeMember"></see> with the specified value to the collection.</summary>
<param name="value">The <see cref="T:System.CodeDom.CodeTypeMember"></see> to add.</param>
<returns>The index at which the new element was inserted.</returns>
</member>
<member name="M:System.CodeDom.CodeTypeMemberCollection.AddRange(System.CodeDom.CodeTypeMember[])">
<summary>Copies the elements of the specified <see cref="T:System.CodeDom.CodeTypeMember"></see> array to the end of the collection.</summary>
<param name="value">An array of type <see cref="T:System.CodeDom.CodeTypeMember"></see> containing the objects to add to the collection.</param>
<exception cref="T:System.ArgumentNullException"><paramref name="value">value</paramref> is null.</exception>
</member>
<member name="M:System.CodeDom.CodeTypeMemberCollection.AddRange(System.CodeDom.CodeTypeMemberCollection)">
<summary>Adds the contents of another <see cref="T:System.CodeDom.CodeTypeMemberCollection"></see> to the end of the collection.</summary>
<param name="value">A <see cref="T:System.CodeDom.CodeTypeMemberCollection"></see> containing the objects to add to the collection.</param>
<exception cref="T:System.ArgumentNullException"><paramref name="value">value</paramref> is null.</exception>
</member>
<member name="M:System.CodeDom.CodeTypeMemberCollection.Contains(System.CodeDom.CodeTypeMember)">
<summary>Gets a value indicating whether the collection contains the specified <see cref="T:System.CodeDom.CodeTypeMember"></see>.</summary>
<param name="value">The <see cref="T:System.CodeDom.CodeTypeMember"></see> to search for in the collection.</param>
<returns>true if the collection contains the specified object; otherwise, false.</returns>
</member>
<member name="M:System.CodeDom.CodeTypeMemberCollection.CopyTo(System.CodeDom.CodeTypeMember[],System.Int32)">
<summary>Copies the collection objects to a one-dimensional <see cref="T:System.Array"></see> instance, beginning at the specified index.</summary>
<param name="array">The one-dimensional <see cref="T:System.Array"></see> that is the destination of the values copied from the collection.</param>
<param name="index">The index of the array at which to begin inserting.</param>
<exception cref="T:System.ArgumentException">The destination array is multidimensional. -or- The number of elements in the <see cref="T:System.CodeDom.CodeTypeMemberCollection"></see> is greater than the available space between the index of the target array specified by the <paramref name="index">index</paramref> parameter and the end of the target array.</exception>
<exception cref="T:System.ArgumentNullException">The <paramref name="array">array</paramref> parameter is null.</exception>
<exception cref="T:System.ArgumentOutOfRangeException">The <paramref name="index">index</paramref> parameter is less than the target array's minimum index.</exception>
</member>
<member name="M:System.CodeDom.CodeTypeMemberCollection.IndexOf(System.CodeDom.CodeTypeMember)">
<summary>Gets the index in the collection of the specified <see cref="T:System.CodeDom.CodeTypeMember"></see>, if it exists in the collection.</summary>
<param name="value">The <see cref="T:System.CodeDom.CodeTypeMember"></see> to locate in the collection.</param>
<returns>The index in the collection of the specified object, if found; otherwise, -1.</returns>
</member>
<member name="M:System.CodeDom.CodeTypeMemberCollection.Insert(System.Int32,System.CodeDom.CodeTypeMember)">
<summary>Inserts the specified <see cref="T:System.CodeDom.CodeTypeMember"></see> into the collection at the specified index.</summary>
<param name="index">The zero-based index where the specified object should be inserted.</param>
<param name="value">The <see cref="T:System.CodeDom.CodeTypeMember"></see> to insert.</param>
</member>
<member name="P:System.CodeDom.CodeTypeMemberCollection.Item(System.Int32)">
<summary>Gets or sets the <see cref="T:System.CodeDom.CodeTypeMember"></see> at the specified index in the collection.</summary>
<param name="index">The index of the collection to access.</param>
<returns>A <see cref="T:System.CodeDom.CodeTypeMember"></see> at each valid index.</returns>
<exception cref="T:System.ArgumentOutOfRangeException">The <paramref name="index">index</paramref> parameter is outside the valid range of indexes for the collection.</exception>
</member>
<member name="M:System.CodeDom.CodeTypeMemberCollection.Remove(System.CodeDom.CodeTypeMember)">
<summary>Removes a specific <see cref="T:System.CodeDom.CodeTypeMember"></see> from the collection.</summary>
<param name="value">The <see cref="T:System.CodeDom.CodeTypeMember"></see> to remove from the collection.</param>
<exception cref="T:System.ArgumentException">The specified object is not found in the collection.</exception>
</member>
<member name="T:System.CodeDom.CodeTypeOfExpression">
<summary>Represents a typeof expression, an expression that returns a <see cref="T:System.Type"></see> for a specified type name.</summary>
</member>
<member name="M:System.CodeDom.CodeTypeOfExpression.#ctor">
<summary>Initializes a new instance of the <see cref="T:System.CodeDom.CodeTypeOfExpression"></see> class.</summary>
</member>
<member name="M:System.CodeDom.CodeTypeOfExpression.#ctor(System.CodeDom.CodeTypeReference)">
<summary>Initializes a new instance of the <see cref="T:System.CodeDom.CodeTypeOfExpression"></see> class.</summary>
<param name="type">A <see cref="T:System.CodeDom.CodeTypeReference"></see> that indicates the data type for the typeof expression.</param>
</member>
<member name="M:System.CodeDom.CodeTypeOfExpression.#ctor(System.String)">
<summary>Initializes a new instance of the <see cref="T:System.CodeDom.CodeTypeOfExpression"></see> class using the specified type.</summary>
<param name="type">The name of the data type for the typeof expression.</param>
</member>
<member name="M:System.CodeDom.CodeTypeOfExpression.#ctor(System.Type)">
<summary>Initializes a new instance of the <see cref="T:System.CodeDom.CodeTypeOfExpression"></see> class using the specified type.</summary>
<param name="type">The data type of the data type of the typeof expression.</param>
</member>
<member name="P:System.CodeDom.CodeTypeOfExpression.Type">
<summary>Gets or sets the data type referenced by the typeof expression.</summary>
<returns>A <see cref="T:System.CodeDom.CodeTypeReference"></see> that indicates the data type referenced by the typeof expression. This property will never return null, and defaults to the <see cref="T:System.Void"></see> type.</returns>
</member>
<member name="T:System.CodeDom.CodeTypeParameter">
<summary>Represents a type parameter of a generic type or method.</summary>
</member>
<member name="M:System.CodeDom.CodeTypeParameter.#ctor">
<summary>Initializes a new instance of the <see cref="T:System.CodeDom.CodeTypeParameter"></see> class.</summary>
</member>
<member name="M:System.CodeDom.CodeTypeParameter.#ctor(System.String)">
<summary>Initializes a new instance of the <see cref="T:System.CodeDom.CodeTypeParameter"></see> class with the specified type parameter name.</summary>
<param name="name">The name of the type parameter.</param>
</member>
<member name="P:System.CodeDom.CodeTypeParameter.Constraints">
<summary>Gets the constraints for the type parameter.</summary>
<returns>A <see cref="T:System.CodeDom.CodeTypeReferenceCollection"></see> object that contains the constraints for the type parameter.</returns>
</member>
<member name="P:System.CodeDom.CodeTypeParameter.CustomAttributes">
<summary>Gets the custom attributes of the type parameter.</summary>
<returns>A <see cref="T:System.CodeDom.CodeAttributeDeclarationCollection"></see> that indicates the custom attributes of the type parameter. The default is null.</returns>
</member>
<member name="P:System.CodeDom.CodeTypeParameter.HasConstructorConstraint">
<summary>Gets or sets a value indicating whether the type parameter has a constructor constraint.</summary>
<returns>true if the type parameter has a constructor constraint; otherwise, false. The default is false.</returns>
</member>
<member name="P:System.CodeDom.CodeTypeParameter.Name">
<summary>Gets or sets the name of the type parameter.</summary>
<returns>The name of the type parameter. The default is an empty string ("").</returns>
</member>
<member name="T:System.CodeDom.CodeTypeParameterCollection">
<summary>Represents a collection of <see cref="T:System.CodeDom.CodeTypeParameter"></see> objects.</summary>
</member>
<member name="M:System.CodeDom.CodeTypeParameterCollection.#ctor">
<summary>Initializes a new, empty instance of the <see cref="T:System.CodeDom.CodeTypeParameterCollection"></see> class.</summary>
</member>
<member name="M:System.CodeDom.CodeTypeParameterCollection.#ctor(System.CodeDom.CodeTypeParameter[])">
<summary>Initializes a new instance of the <see cref="T:System.CodeDom.CodeTypeParameterCollection"></see> class containing the specified array of <see cref="T:System.CodeDom.CodeTypeParameter"></see> objects.</summary>
<param name="value">An array of <see cref="T:System.CodeDom.CodeTypeParameter"></see> objects with which to initialize the collection.</param>
</member>
<member name="M:System.CodeDom.CodeTypeParameterCollection.#ctor(System.CodeDom.CodeTypeParameterCollection)">
<summary>Initializes a new instance of the <see cref="T:System.CodeDom.CodeTypeParameterCollection"></see> class containing the elements of the specified source collection.</summary>
<param name="value">A <see cref="T:System.CodeDom.CodeTypeParameterCollection"></see> with which to initialize the collection.</param>
</member>
<member name="M:System.CodeDom.CodeTypeParameterCollection.Add(System.CodeDom.CodeTypeParameter)">
<summary>Adds the specified <see cref="T:System.CodeDom.CodeTypeParameter"></see> object to the collection.</summary>
<param name="value">The <see cref="T:System.CodeDom.CodeTypeParameter"></see> to add.</param>
<returns>The zero-based index at which the new element was inserted.</returns>
</member>
<member name="M:System.CodeDom.CodeTypeParameterCollection.Add(System.String)">
<summary>Adds the specified <see cref="T:System.CodeDom.CodeTypeParameter"></see> object to the collection using the specified data type name.</summary>
<param name="value">The name of a data type for which to add the <see cref="T:System.CodeDom.CodeTypeParameter"></see> object to the collection.</param>
</member>
<member name="M:System.CodeDom.CodeTypeParameterCollection.AddRange(System.CodeDom.CodeTypeParameter[])">
<summary>Copies the elements of the specified <see cref="T:System.CodeDom.CodeTypeParameter"></see> array to the end of the collection.</summary>
<param name="value">An array of type <see cref="T:System.CodeDom.CodeTypeParameter"></see> containing the objects to add to the collection.</param>
<exception cref="T:System.ArgumentNullException"><paramref name="value">value</paramref> is null.</exception>
</member>
<member name="M:System.CodeDom.CodeTypeParameterCollection.AddRange(System.CodeDom.CodeTypeParameterCollection)">
<summary>Copies the elements of the specified <see cref="T:System.CodeDom.CodeTypeParameterCollection"></see> to the end of the collection.</summary>
<param name="value">A <see cref="T:System.CodeDom.CodeTypeParameterCollection"></see> containing the <see cref="T:System.CodeDom.CodeTypeParameter"></see> objects to add to the collection.</param>
<exception cref="T:System.ArgumentNullException"><paramref name="value">value</paramref> is null.</exception>
</member>
<member name="M:System.CodeDom.CodeTypeParameterCollection.Contains(System.CodeDom.CodeTypeParameter)">
<summary>Determines whether the collection contains the specified <see cref="T:System.CodeDom.CodeTypeParameter"></see> object.</summary>
<param name="value">The <see cref="T:System.CodeDom.CodeTypeParameter"></see> object to search for in the collection.</param>
<returns>true if the <see cref="T:System.CodeDom.CodeTypeParameter"></see> object is contained in the collection; otherwise, false.</returns>
</member>
<member name="M:System.CodeDom.CodeTypeParameterCollection.CopyTo(System.CodeDom.CodeTypeParameter[],System.Int32)">
<summary>Copies the items in the collection to the specified one-dimensional <see cref="T:System.Array"></see> at the specified index.</summary>
<param name="array">The one-dimensional <see cref="T:System.Array"></see> that is the destination of the values copied from the collection.</param>
<param name="index">The index of the array at which to begin inserting.</param>
<exception cref="T:System.ArgumentException"><paramref name="array">array</paramref> is multidimensional. -or- The number of elements in the <see cref="T:System.CodeDom.CodeTypeParameterCollection"></see> is greater than the available space between the index of the target array specified by <paramref name="index">index</paramref> and the end of the target array.</exception>
<exception cref="T:System.ArgumentNullException"><paramref name="array">array</paramref> is null.</exception>
<exception cref="T:System.ArgumentOutOfRangeException"><paramref name="index">index</paramref> is less than the target array's lowest index.</exception>
</member>
<member name="M:System.CodeDom.CodeTypeParameterCollection.IndexOf(System.CodeDom.CodeTypeParameter)">
<summary>Gets the index in the collection of the specified <see cref="T:System.CodeDom.CodeTypeParameter"></see> object, if it exists in the collection.</summary>
<param name="value">The <see cref="T:System.CodeDom.CodeTypeParameter"></see> object to locate in the collection.</param>
<returns>The zero-based index of the specified <see cref="T:System.CodeDom.CodeTypeParameter"></see> object in the collection if found; otherwise, -1.</returns>
</member>
<member name="M:System.CodeDom.CodeTypeParameterCollection.Insert(System.Int32,System.CodeDom.CodeTypeParameter)">
<summary>Inserts the specified <see cref="T:System.CodeDom.CodeTypeParameter"></see> object into the collection at the specified index.</summary>
<param name="index">The zero-based index at which to insert the item.</param>
<param name="value">The <see cref="T:System.CodeDom.CodeTypeParameter"></see> object to insert.</param>
</member>
<member name="P:System.CodeDom.CodeTypeParameterCollection.Item(System.Int32)">
<summary>Gets or sets the <see cref="T:System.CodeDom.CodeTypeParameter"></see> object at the specified index in the collection.</summary>
<param name="index">The zero-based index of the collection object to access.</param>
<returns>The <see cref="T:System.CodeDom.CodeTypeParameter"></see> object at the specified index.</returns>
<exception cref="T:System.ArgumentOutOfRangeException"><paramref name="index">index</paramref> is outside the valid range of indexes for the collection.</exception>
</member>
<member name="M:System.CodeDom.CodeTypeParameterCollection.Remove(System.CodeDom.CodeTypeParameter)">
<summary>Removes the specified <see cref="T:System.CodeDom.CodeTypeParameter"></see> object from the collection.</summary>
<param name="value">The <see cref="T:System.CodeDom.CodeTypeParameter"></see> object to remove from the collection.</param>
<exception cref="T:System.ArgumentException">The specified object is not found in the collection.</exception>
</member>
<member name="T:System.CodeDom.CodeArgumentReferenceExpression">
<summary>Represents a reference to the value of an argument passed to a method.</summary>
</member>
<member name="M:System.CodeDom.CodeArgumentReferenceExpression.#ctor">
<summary>Initializes a new instance of the <see cref="T:System.CodeDom.CodeArgumentReferenceExpression"></see> class.</summary>
</member>
<member name="M:System.CodeDom.CodeArgumentReferenceExpression.#ctor(System.String)">
<summary>Initializes a new instance of the <see cref="T:System.CodeDom.CodeArgumentReferenceExpression"></see> class using the specified parameter name.</summary>
<param name="parameterName">The name of the parameter to reference.</param>
</member>
<member name="P:System.CodeDom.CodeArgumentReferenceExpression.ParameterName">
<summary>Gets or sets the name of the parameter this expression references.</summary>
<returns>The name of the parameter to reference.</returns>
</member>
<member name="T:System.CodeDom.CodeArrayCreateExpression">
<summary>Represents an expression that creates an array.</summary>
</member>
<member name="M:System.CodeDom.CodeArrayCreateExpression.#ctor">
<summary>Initializes a new instance of the <see cref="T:System.CodeDom.CodeArrayCreateExpression"></see> class.</summary>
</member>
<member name="M:System.CodeDom.CodeArrayCreateExpression.#ctor(System.CodeDom.CodeTypeReference,System.CodeDom.CodeExpression)">
<summary>Initializes a new instance of the <see cref="T:System.CodeDom.CodeArrayCreateExpression"></see> class using the specified array data type and code expression indicating the number of indexes for the array.</summary>
<param name="createType">A <see cref="T:System.CodeDom.CodeTypeReference"></see> indicating the data type of the array to create.</param>
<param name="size">An expression that indicates the number of indexes of the array to create.</param>
</member>
<member name="M:System.CodeDom.CodeArrayCreateExpression.#ctor(System.CodeDom.CodeTypeReference,System.CodeDom.CodeExpression[])">
<summary>Initializes a new instance of the <see cref="T:System.CodeDom.CodeArrayCreateExpression"></see> class using the specified array data type and initialization expressions.</summary>
<param name="createType">A <see cref="T:System.CodeDom.CodeTypeReference"></see> that indicates the data type of the array to create.</param>
<param name="initializers">An array of expressions to use to initialize the array.</param>
</member>
<member name="M:System.CodeDom.CodeArrayCreateExpression.#ctor(System.CodeDom.CodeTypeReference,System.Int32)">
<summary>Initializes a new instance of the <see cref="T:System.CodeDom.CodeArrayCreateExpression"></see> class using the specified array data type and number of indexes for the array.</summary>
<param name="createType">A <see cref="T:System.CodeDom.CodeTypeReference"></see> indicating the data type of the array to create.</param>
<param name="size">The number of indexes of the array to create.</param>
</member>
<member name="M:System.CodeDom.CodeArrayCreateExpression.#ctor(System.String,System.CodeDom.CodeExpression)">
<summary>Initializes a new instance of the <see cref="T:System.CodeDom.CodeArrayCreateExpression"></see> class using the specified array data type name and code expression indicating the number of indexes for the array.</summary>
<param name="createType">The name of the data type of the array to create.</param>
<param name="size">An expression that indicates the number of indexes of the array to create.</param>
</member>
<member name="M:System.CodeDom.CodeArrayCreateExpression.#ctor(System.String,System.CodeDom.CodeExpression[])">
<summary>Initializes a new instance of the <see cref="T:System.CodeDom.CodeArrayCreateExpression"></see> class using the specified array data type name and initializers.</summary>
<param name="createType">The name of the data type of the array to create.</param>
<param name="initializers">An array of expressions to use to initialize the array.</param>
</member>
<member name="M:System.CodeDom.CodeArrayCreateExpression.#ctor(System.String,System.Int32)">
<summary>Initializes a new instance of the <see cref="T:System.CodeDom.CodeArrayCreateExpression"></see> class using the specified array data type name and number of indexes for the array.</summary>
<param name="createType">The name of the data type of the array to create.</param>
<param name="size">The number of indexes of the array to create.</param>
</member>
<member name="M:System.CodeDom.CodeArrayCreateExpression.#ctor(System.Type,System.CodeDom.CodeExpression)">
<summary>Initializes a new instance of the <see cref="T:System.CodeDom.CodeArrayCreateExpression"></see> class using the specified array data type and code expression indicating the number of indexes for the array.</summary>
<param name="createType">The data type of the array to create.</param>
<param name="size">An expression that indicates the number of indexes of the array to create.</param>
</member>
<member name="M:System.CodeDom.CodeArrayCreateExpression.#ctor(System.Type,System.CodeDom.CodeExpression[])">
<summary>Initializes a new instance of the <see cref="T:System.CodeDom.CodeArrayCreateExpression"></see> class using the specified array data type and initializers.</summary>
<param name="createType">The data type of the array to create.</param>
<param name="initializers">An array of expressions to use to initialize the array.</param>
</member>
<member name="M:System.CodeDom.CodeArrayCreateExpression.#ctor(System.Type,System.Int32)">
<summary>Initializes a new instance of the <see cref="T:System.CodeDom.CodeArrayCreateExpression"></see> class using the specified array data type and number of indexes for the array.</summary>
<param name="createType">The data type of the array to create.</param>
<param name="size">The number of indexes of the array to create.</param>
</member>
<member name="P:System.CodeDom.CodeArrayCreateExpression.CreateType">
<summary>Gets or sets the type of array to create.</summary>
<returns>A <see cref="T:System.CodeDom.CodeTypeReference"></see> that indicates the type of the array.</returns>
</member>
<member name="P:System.CodeDom.CodeArrayCreateExpression.Initializers">
<summary>Gets the initializers with which to initialize the array.</summary>
<returns>A <see cref="T:System.CodeDom.CodeExpressionCollection"></see> that indicates the initialization values.</returns>
</member>
<member name="P:System.CodeDom.CodeArrayCreateExpression.Size">
<summary>Gets or sets the number of indexes in the array.</summary>
<returns>The number of indexes in the array.</returns>
</member>
<member name="P:System.CodeDom.CodeArrayCreateExpression.SizeExpression">
<summary>Gets or sets the expression that indicates the size of the array.</summary>
<returns>A <see cref="T:System.CodeDom.CodeExpression"></see> that indicates the size of the array.</returns>
</member>
<member name="T:System.CodeDom.CodeArrayIndexerExpression">
<summary>Represents a reference to an index of an array.</summary>
</member>
<member name="M:System.CodeDom.CodeArrayIndexerExpression.#ctor">
<summary>Initializes a new instance of the <see cref="T:System.CodeDom.CodeArrayIndexerExpression"></see> class.</summary>
</member>
<member name="M:System.CodeDom.CodeArrayIndexerExpression.#ctor(System.CodeDom.CodeExpression,System.CodeDom.CodeExpression[])">
<summary>Initializes a new instance of the <see cref="T:System.CodeDom.CodeArrayIndexerExpression"></see> class using the specified target object and indexes.</summary>
<param name="targetObject">A <see cref="T:System.CodeDom.CodeExpression"></see> that indicates the array the indexer targets.</param>
<param name="indices">The index or indexes to reference.</param>
</member>
<member name="P:System.CodeDom.CodeArrayIndexerExpression.Indices">
<summary>Gets or sets the index or indexes of the indexer expression.</summary>
<returns>A <see cref="T:System.CodeDom.CodeExpressionCollection"></see> that indicates the index or indexes of the indexer expression.</returns>
</member>
<member name="P:System.CodeDom.CodeArrayIndexerExpression.TargetObject">
<summary>Gets or sets the target object of the array indexer.</summary>
<returns>A <see cref="T:System.CodeDom.CodeExpression"></see> that represents the array being indexed.</returns>
</member>
<member name="T:System.CodeDom.CodeAssignStatement">
<summary>Represents a simple assignment statement.</summary>
</member>
<member name="M:System.CodeDom.CodeAssignStatement.#ctor">
<summary>Initializes a new instance of the <see cref="T:System.CodeDom.CodeAssignStatement"></see> class.</summary>
</member>
<member name="M:System.CodeDom.CodeAssignStatement.#ctor(System.CodeDom.CodeExpression,System.CodeDom.CodeExpression)">
<summary>Initializes a new instance of the <see cref="T:System.CodeDom.CodeAssignStatement"></see> class using the specified expressions.</summary>
<param name="left">The variable to assign to.</param>
<param name="right">The value to assign.</param>
</member>
<member name="P:System.CodeDom.CodeAssignStatement.Left">
<summary>Gets or sets the expression representing the object or reference to assign to.</summary>
<returns>A <see cref="T:System.CodeDom.CodeExpression"></see> that indicates the object or reference to assign to.</returns>
</member>
<member name="P:System.CodeDom.CodeAssignStatement.Right">
<summary>Gets or sets the expression representing the object or reference to assign.</summary>
<returns>A <see cref="T:System.CodeDom.CodeExpression"></see> that indicates the object or reference to assign.</returns>
</member>
<member name="T:System.CodeDom.CodeAttachEventStatement">
<summary>Represents a statement that attaches an event-handler delegate to an event.</summary>
</member>
<member name="M:System.CodeDom.CodeAttachEventStatement.#ctor">
<summary>Initializes a new instance of the <see cref="T:System.CodeDom.CodeAttachEventStatement"></see> class.</summary>
</member>
<member name="M:System.CodeDom.CodeAttachEventStatement.#ctor(System.CodeDom.CodeEventReferenceExpression,System.CodeDom.CodeExpression)">
<summary>Initializes a new instance of the <see cref="T:System.CodeDom.CodeAttachEventStatement"></see> class using the specified event and delegate.</summary>
<param name="eventRef">A <see cref="T:System.CodeDom.CodeEventReferenceExpression"></see> that indicates the event to attach an event handler to.</param>
<param name="listener">A <see cref="T:System.CodeDom.CodeExpression"></see> that indicates the new event handler.</param>
</member>
<member name="M:System.CodeDom.CodeAttachEventStatement.#ctor(System.CodeDom.CodeExpression,System.String,System.CodeDom.CodeExpression)">
<summary>Initializes a new instance of the <see cref="T:System.CodeDom.CodeAttachEventStatement"></see> class using the specified object containing the event, event name, and event-handler delegate.</summary>
<param name="targetObject">A <see cref="T:System.CodeDom.CodeExpression"></see> that indicates the object that contains the event.</param>
<param name="eventName">The name of the event to attach an event handler to.</param>
<param name="listener">A <see cref="T:System.CodeDom.CodeExpression"></see> that indicates the new event handler.</param>
</member>
<member name="P:System.CodeDom.CodeAttachEventStatement.Event">
<summary>Gets or sets the event to attach an event-handler delegate to.</summary>
<returns>A <see cref="T:System.CodeDom.CodeEventReferenceExpression"></see> that indicates the event to attach an event handler to.</returns>
</member>
<member name="P:System.CodeDom.CodeAttachEventStatement.Listener">
<summary>Gets or sets the new event-handler delegate to attach to the event.</summary>
<returns>A <see cref="T:System.CodeDom.CodeExpression"></see> that indicates the new event handler to attach.</returns>
</member>
<member name="T:System.CodeDom.CodeAttributeArgument">
<summary>Represents an argument used in a metadata attribute declaration.</summary>
</member>
<member name="M:System.CodeDom.CodeAttributeArgument.#ctor">
<summary>Initializes a new instance of the <see cref="T:System.CodeDom.CodeAttributeArgument"></see> class.</summary>
</member>
<member name="M:System.CodeDom.CodeAttributeArgument.#ctor(System.CodeDom.CodeExpression)">
<summary>Initializes a new instance of the <see cref="T:System.CodeDom.CodeAttributeArgument"></see> class using the specified value.</summary>
<param name="value">A <see cref="T:System.CodeDom.CodeExpression"></see> that represents the value of the argument.</param>
</member>
<member name="M:System.CodeDom.CodeAttributeArgument.#ctor(System.String,System.CodeDom.CodeExpression)">
<summary>Initializes a new instance of the <see cref="T:System.CodeDom.CodeAttributeArgument"></see> class using the specified name and value.</summary>
<param name="name">The name of the attribute property the argument applies to.</param>
<param name="value">A <see cref="T:System.CodeDom.CodeExpression"></see> that represents the value of the argument.</param>
</member>
<member name="P:System.CodeDom.CodeAttributeArgument.Name">
<summary>Gets or sets the name of the attribute.</summary>
<returns>The name of the attribute property the argument is for.</returns>
</member>
<member name="P:System.CodeDom.CodeAttributeArgument.Value">
<summary>Gets or sets the value for the attribute argument.</summary>
<returns>A <see cref="T:System.CodeDom.CodeExpression"></see> that indicates the value for the attribute argument.</returns>
</member>
<member name="T:System.CodeDom.CodeAttributeArgumentCollection">
<summary>Represents a collection of <see cref="T:System.CodeDom.CodeAttributeArgument"></see> objects.</summary>
</member>
<member name="M:System.CodeDom.CodeAttributeArgumentCollection.#ctor">
<summary>Initializes a new instance of the <see cref="T:System.CodeDom.CodeAttributeArgumentCollection"></see> class.</summary>
</member>
<member name="M:System.CodeDom.CodeAttributeArgumentCollection.#ctor(System.CodeDom.CodeAttributeArgument[])">
<summary>Initializes a new instance of the <see cref="T:System.CodeDom.CodeAttributeArgumentCollection"></see> class containing the specified array of <see cref="T:System.CodeDom.CodeAttributeArgument"></see> objects.</summary>
<param name="value">An array of <see cref="T:System.CodeDom.CodeAttributeArgument"></see> objects with which to initialize the collection.</param>
<exception cref="T:System.ArgumentNullException">One or more objects in the array are null.</exception>
</member>
<member name="M:System.CodeDom.CodeAttributeArgumentCollection.#ctor(System.CodeDom.CodeAttributeArgumentCollection)">
<summary>Initializes a new instance of the <see cref="T:System.CodeDom.CodeAttributeArgumentCollection"></see> class containing the elements of the specified source collection.</summary>
<param name="value">A <see cref="T:System.CodeDom.CodeAttributeArgumentCollection"></see> with which to initialize the collection.</param>
<exception cref="T:System.ArgumentNullException"><paramref name="value">value</paramref> is null.</exception>
</member>
<member name="M:System.CodeDom.CodeAttributeArgumentCollection.Add(System.CodeDom.CodeAttributeArgument)">
<summary>Adds the specified <see cref="T:System.CodeDom.CodeAttributeArgument"></see> object to the collection.</summary>
<param name="value">The <see cref="T:System.CodeDom.CodeAttributeArgument"></see> object to add.</param>
<returns>The index at which the new element was inserted.</returns>
</member>
<member name="M:System.CodeDom.CodeAttributeArgumentCollection.AddRange(System.CodeDom.CodeAttributeArgument[])">
<summary>Copies the elements of the specified <see cref="T:System.CodeDom.CodeAttributeArgument"></see> array to the end of the collection.</summary>
<param name="value">An array of type <see cref="T:System.CodeDom.CodeAttributeArgument"></see> that contains the objects to add to the collection.</param>
<exception cref="T:System.ArgumentNullException"><paramref name="value">value</paramref> is null.</exception>
</member>
<member name="M:System.CodeDom.CodeAttributeArgumentCollection.AddRange(System.CodeDom.CodeAttributeArgumentCollection)">
<summary>Copies the contents of another <see cref="T:System.CodeDom.CodeAttributeArgumentCollection"></see> object to the end of the collection.</summary>
<param name="value">A <see cref="T:System.CodeDom.CodeAttributeArgumentCollection"></see> that contains the objects to add to the collection.</param>
<exception cref="T:System.ArgumentNullException"><paramref name="value">value</paramref> is null.</exception>
</member>
<member name="M:System.CodeDom.CodeAttributeArgumentCollection.Contains(System.CodeDom.CodeAttributeArgument)">
<summary>Gets a value that indicates whether the collection contains the specified <see cref="T:System.CodeDom.CodeAttributeArgument"></see> object.</summary>
<param name="value">The <see cref="T:System.CodeDom.CodeAttributeArgument"></see> object to locate in the collection.</param>
<returns>true if the collection contains the specified object; otherwise, false.</returns>
</member>
<member name="M:System.CodeDom.CodeAttributeArgumentCollection.CopyTo(System.CodeDom.CodeAttributeArgument[],System.Int32)">
<summary>Copies the collection objects to a one-dimensional <see cref="T:System.Array"></see> instance beginning at the specified index.</summary>
<param name="array">The one-dimensional <see cref="T:System.Array"></see> that is the destination of the values copied from the collection.</param>
<param name="index">The index of the array at which to begin inserting.</param>
<exception cref="T:System.ArgumentException">The destination array is multidimensional. -or- The number of elements in the <see cref="T:System.CodeDom.CodeAttributeArgumentCollection"></see> is greater than the available space between the index of the target array specified by the <paramref name="index">index</paramref> parameter and the end of the target array.</exception>
<exception cref="T:System.ArgumentNullException">The <paramref name="array">array</paramref> parameter is null.</exception>
<exception cref="T:System.ArgumentOutOfRangeException">The <paramref name="index">index</paramref> parameter is less than the target array's minimum index.</exception>
</member>
<member name="M:System.CodeDom.CodeAttributeArgumentCollection.IndexOf(System.CodeDom.CodeAttributeArgument)">
<summary>Gets the index of the specified <see cref="T:System.CodeDom.CodeAttributeArgument"></see> object in the collection, if it exists in the collection.</summary>
<param name="value">The <see cref="T:System.CodeDom.CodeAttributeArgument"></see> object to locate in the collection.</param>
<returns>The index of the specified object, if found, in the collection; otherwise, -1.</returns>
</member>
<member name="M:System.CodeDom.CodeAttributeArgumentCollection.Insert(System.Int32,System.CodeDom.CodeAttributeArgument)">
<summary>Inserts the specified <see cref="T:System.CodeDom.CodeAttributeArgument"></see> object into the collection at the specified index.</summary>
<param name="index">The zero-based index where the specified object should be inserted.</param>
<param name="value">The <see cref="T:System.CodeDom.CodeAttributeArgument"></see> object to insert.</param>
</member>
<member name="P:System.CodeDom.CodeAttributeArgumentCollection.Item(System.Int32)">
<summary>Gets or sets the <see cref="T:System.CodeDom.CodeAttributeArgument"></see> object at the specified index in the collection.</summary>
<param name="index">The index of the collection to access.</param>
<returns>A <see cref="T:System.CodeDom.CodeAttributeArgument"></see> at each valid index.</returns>
<exception cref="T:System.ArgumentOutOfRangeException">The <paramref name="index">index</paramref> parameter is outside the valid range of indexes for the collection.</exception>
</member>
<member name="M:System.CodeDom.CodeAttributeArgumentCollection.Remove(System.CodeDom.CodeAttributeArgument)">
<summary>Removes the specified <see cref="T:System.CodeDom.CodeAttributeArgument"></see> object from the collection.</summary>
<param name="value">The <see cref="T:System.CodeDom.CodeAttributeArgument"></see> object to remove from the collection.</param>
<exception cref="T:System.ArgumentException">The specified object is not found in the collection.</exception>
</member>
<member name="T:System.CodeDom.CodeAttributeDeclaration">
<summary>Represents an attribute declaration.</summary>
</member>
<member name="M:System.CodeDom.CodeAttributeDeclaration.#ctor">
<summary>Initializes a new instance of the <see cref="T:System.CodeDom.CodeAttributeDeclaration"></see> class.</summary>
</member>
<member name="M:System.CodeDom.CodeAttributeDeclaration.#ctor(System.CodeDom.CodeTypeReference)">
<summary>Initializes a new instance of the <see cref="T:System.CodeDom.CodeAttributeDeclaration"></see> class using the specified code type reference.</summary>
<param name="attributeType">The <see cref="T:System.CodeDom.CodeTypeReference"></see> that identifies the attribute.</param>
</member>
<member name="M:System.CodeDom.CodeAttributeDeclaration.#ctor(System.String)">
<summary>Initializes a new instance of the <see cref="T:System.CodeDom.CodeAttributeDeclaration"></see> class using the specified name.</summary>
<param name="name">The name of the attribute.</param>
</member>
<member name="M:System.CodeDom.CodeAttributeDeclaration.#ctor(System.CodeDom.CodeTypeReference,System.CodeDom.CodeAttributeArgument[])">
<summary>Initializes a new instance of the <see cref="T:System.CodeDom.CodeAttributeDeclaration"></see> class using the specified code type reference and arguments.</summary>
<param name="attributeType">The <see cref="T:System.CodeDom.CodeTypeReference"></see> that identifies the attribute.</param>
<param name="arguments">An array of type <see cref="T:System.CodeDom.CodeAttributeArgument"></see> that contains the arguments for the attribute.</param>
</member>
<member name="M:System.CodeDom.CodeAttributeDeclaration.#ctor(System.String,System.CodeDom.CodeAttributeArgument[])">
<summary>Initializes a new instance of the <see cref="T:System.CodeDom.CodeAttributeDeclaration"></see> class using the specified name and arguments.</summary>
<param name="name">The name of the attribute.</param>
<param name="arguments">An array of type <see cref="T:System.CodeDom.CodeAttributeArgument"></see> that contains the arguments for the attribute.</param>
</member>
<member name="P:System.CodeDom.CodeAttributeDeclaration.Arguments">
<summary>Gets the arguments for the attribute.</summary>
<returns>A <see cref="T:System.CodeDom.CodeAttributeArgumentCollection"></see> that contains the arguments for the attribute.</returns>
</member>
<member name="P:System.CodeDom.CodeAttributeDeclaration.AttributeType">
<summary>Gets the code type reference for the code attribute declaration.</summary>
<returns>A <see cref="T:System.CodeDom.CodeTypeReference"></see> that identifies the <see cref="T:System.CodeDom.CodeAttributeDeclaration"></see>.</returns>
</member>
<member name="P:System.CodeDom.CodeAttributeDeclaration.Name">
<summary>Gets or sets the name of the attribute being declared.</summary>
<returns>The name of the attribute.</returns>
</member>
<member name="T:System.CodeDom.CodeAttributeDeclarationCollection">
<summary>Represents a collection of <see cref="T:System.CodeDom.CodeAttributeDeclaration"></see> objects.</summary>
</member>
<member name="M:System.CodeDom.CodeAttributeDeclarationCollection.#ctor">
<summary>Initializes a new instance of the <see cref="T:System.CodeDom.CodeAttributeDeclarationCollection"></see> class.</summary>
</member>
<member name="M:System.CodeDom.CodeAttributeDeclarationCollection.#ctor(System.CodeDom.CodeAttributeDeclaration[])">
<summary>Initializes a new instance of the <see cref="T:System.CodeDom.CodeAttributeDeclarationCollection"></see> class containing the specified array of <see cref="T:System.CodeDom.CodeAttributeDeclaration"></see> objects.</summary>
<param name="value">An array of <see cref="T:System.CodeDom.CodeAttributeDeclaration"></see> objects with which to initialize the collection.</param>
<exception cref="T:System.ArgumentNullException">One or more objects in the array are null.</exception>
</member>
<member name="M:System.CodeDom.CodeAttributeDeclarationCollection.#ctor(System.CodeDom.CodeAttributeDeclarationCollection)">
<summary>Initializes a new instance of the <see cref="T:System.CodeDom.CodeAttributeDeclarationCollection"></see> class containing the elements of the specified source collection.</summary>
<param name="value">A <see cref="T:System.CodeDom.CodeAttributeDeclarationCollection"></see> with which to initialize the collection.</param>
<exception cref="T:System.ArgumentNullException"><paramref name="value">value</paramref> is null.</exception>
</member>
<member name="M:System.CodeDom.CodeAttributeDeclarationCollection.Add(System.CodeDom.CodeAttributeDeclaration)">
<summary>Adds a <see cref="T:System.CodeDom.CodeAttributeDeclaration"></see> object with the specified value to the collection.</summary>
<param name="value">The <see cref="T:System.CodeDom.CodeAttributeDeclaration"></see> object to add.</param>
<returns>The index at which the new element was inserted.</returns>
</member>
<member name="M:System.CodeDom.CodeAttributeDeclarationCollection.AddRange(System.CodeDom.CodeAttributeDeclaration[])">
<summary>Copies the elements of the specified <see cref="T:System.CodeDom.CodeAttributeDeclaration"></see> array to the end of the collection.</summary>
<param name="value">An array of type <see cref="T:System.CodeDom.CodeAttributeDeclaration"></see> that contains the objects to add to the collection.</param>
<exception cref="T:System.ArgumentNullException"><paramref name="value">value</paramref> is null.</exception>
</member>
<member name="M:System.CodeDom.CodeAttributeDeclarationCollection.AddRange(System.CodeDom.CodeAttributeDeclarationCollection)">
<summary>Copies the contents of another <see cref="T:System.CodeDom.CodeAttributeDeclarationCollection"></see> object to the end of the collection.</summary>
<param name="value">A <see cref="T:System.CodeDom.CodeAttributeDeclarationCollection"></see> that contains the objects to add to the collection.</param>
<exception cref="T:System.ArgumentNullException"><paramref name="value">value</paramref> is null.</exception>
</member>
<member name="M:System.CodeDom.CodeAttributeDeclarationCollection.Contains(System.CodeDom.CodeAttributeDeclaration)">
<summary>Gets or sets a value that indicates whether the collection contains the specified <see cref="T:System.CodeDom.CodeAttributeDeclaration"></see> object.</summary>
<param name="value">The <see cref="T:System.CodeDom.CodeAttributeDeclaration"></see> object to locate.</param>
<returns>true if the collection contains the specified object; otherwise, false.</returns>
</member>
<member name="M:System.CodeDom.CodeAttributeDeclarationCollection.CopyTo(System.CodeDom.CodeAttributeDeclaration[],System.Int32)">
<summary>Copies the collection objects to a one-dimensional <see cref="T:System.Array"></see> instance beginning at the specified index.</summary>
<param name="array">The one-dimensional <see cref="T:System.Array"></see> that is the destination of the values copied from the collection.</param>
<param name="index">The index of the array at which to begin inserting.</param>
<exception cref="T:System.ArgumentException">The destination array is multidimensional. -or- The number of elements in the <see cref="T:System.CodeDom.CodeAttributeDeclarationCollection"></see> is greater than the available space between the index of the target array specified by the <paramref name="index">index</paramref> parameter and the end of the target array.</exception>
<exception cref="T:System.ArgumentNullException">The <paramref name="array">array</paramref> parameter is null.</exception>
<exception cref="T:System.ArgumentOutOfRangeException">The <paramref name="index">index</paramref> parameter is less than the target array's minimum index.</exception>
</member>
<member name="M:System.CodeDom.CodeAttributeDeclarationCollection.IndexOf(System.CodeDom.CodeAttributeDeclaration)">
<summary>Gets the index of the specified <see cref="T:System.CodeDom.CodeAttributeDeclaration"></see> object in the collection, if it exists in the collection.</summary>
<param name="value">The <see cref="T:System.CodeDom.CodeAttributeDeclaration"></see> object to locate in the collection.</param>
<returns>The index in the collection of the specified object, if found; otherwise, -1.</returns>
</member>
<member name="M:System.CodeDom.CodeAttributeDeclarationCollection.Insert(System.Int32,System.CodeDom.CodeAttributeDeclaration)">
<summary>Inserts the specified <see cref="T:System.CodeDom.CodeAttributeDeclaration"></see> object into the collection at the specified index.</summary>
<param name="index">The zero-based index where the specified object should be inserted.</param>
<param name="value">The <see cref="T:System.CodeDom.CodeAttributeDeclaration"></see> object to insert.</param>
</member>
<member name="P:System.CodeDom.CodeAttributeDeclarationCollection.Item(System.Int32)">
<summary>Gets or sets the <see cref="T:System.CodeDom.CodeAttributeDeclaration"></see> object at the specified index.</summary>
<param name="index">The index of the collection to access.</param>
<returns>A <see cref="T:System.CodeDom.CodeAttributeDeclaration"></see> at each valid index.</returns>
<exception cref="T:System.ArgumentOutOfRangeException">The <paramref name="index">index</paramref> parameter is outside the valid range of indexes for the collection.</exception>
</member>
<member name="M:System.CodeDom.CodeAttributeDeclarationCollection.Remove(System.CodeDom.CodeAttributeDeclaration)">
<summary>Removes the specified <see cref="T:System.CodeDom.CodeAttributeDeclaration"></see> object from the collection.</summary>
<param name="value">The <see cref="T:System.CodeDom.CodeAttributeDeclaration"></see> object to remove from the collection.</param>
<exception cref="T:System.ArgumentException">The specified object is not found in the collection.</exception>
</member>
<member name="T:System.CodeDom.CodeBaseReferenceExpression">
<summary>Represents a reference to the base class.</summary>
</member>
<member name="M:System.CodeDom.CodeBaseReferenceExpression.#ctor">
<summary>Initializes a new instance of the <see cref="T:System.CodeDom.CodeBaseReferenceExpression"></see> class.</summary>
</member>
<member name="T:System.CodeDom.CodeBinaryOperatorExpression">
<summary>Represents an expression that consists of a binary operation between two expressions.</summary>
</member>
<member name="M:System.CodeDom.CodeBinaryOperatorExpression.#ctor">
<summary>Initializes a new instance of the <see cref="T:System.CodeDom.CodeBinaryOperatorExpression"></see> class.</summary>
</member>
<member name="M:System.CodeDom.CodeBinaryOperatorExpression.#ctor(System.CodeDom.CodeExpression,System.CodeDom.CodeBinaryOperatorType,System.CodeDom.CodeExpression)">
<summary>Initializes a new instance of the <see cref="T:System.CodeDom.CodeBinaryOperatorExpression"></see> class using the specified parameters.</summary>
<param name="left">The <see cref="T:System.CodeDom.CodeExpression"></see> on the left of the operator.</param>
<param name="op">A <see cref="T:System.CodeDom.CodeBinaryOperatorType"></see> indicating the type of operator.</param>
<param name="right">The <see cref="T:System.CodeDom.CodeExpression"></see> on the right of the operator.</param>
</member>
<member name="P:System.CodeDom.CodeBinaryOperatorExpression.Left">
<summary>Gets or sets the code expression on the left of the operator.</summary>
<returns>A <see cref="T:System.CodeDom.CodeExpression"></see> that indicates the left operand.</returns>
</member>
<member name="P:System.CodeDom.CodeBinaryOperatorExpression.Operator">
<summary>Gets or sets the operator in the binary operator expression.</summary>
<returns>A <see cref="T:System.CodeDom.CodeBinaryOperatorType"></see> that indicates the type of operator in the expression.</returns>
</member>
<member name="P:System.CodeDom.CodeBinaryOperatorExpression.Right">
<summary>Gets or sets the code expression on the right of the operator.</summary>
<returns>A <see cref="T:System.CodeDom.CodeExpression"></see> that indicates the right operand.</returns>
</member>
<member name="T:System.CodeDom.CodeBinaryOperatorType">
<summary>Defines identifiers for supported binary operators.</summary>
</member>
<member name="F:System.CodeDom.CodeBinaryOperatorType.Add">
<summary>Addition operator.</summary>
<returns></returns>
</member>
<member name="F:System.CodeDom.CodeBinaryOperatorType.Assign">
<summary>Assignment operator.</summary>
<returns></returns>
</member>
<member name="F:System.CodeDom.CodeBinaryOperatorType.BitwiseAnd">
<summary>Bitwise and operator.</summary>
<returns></returns>
</member>
<member name="F:System.CodeDom.CodeBinaryOperatorType.BitwiseOr">
<summary>Bitwise or operator.</summary>
<returns></returns>
</member>
<member name="F:System.CodeDom.CodeBinaryOperatorType.BooleanAnd">
<summary>Boolean and operator. This represents a short circuiting operator. A short circuiting operator will evaluate only as many expressions as necessary before returning a correct value.</summary>
<returns></returns>
</member>
<member name="F:System.CodeDom.CodeBinaryOperatorType.BooleanOr">
<summary>Boolean or operator. This represents a short circuiting operator. A short circuiting operator will evaluate only as many expressions as necessary before returning a correct value.</summary>
<returns></returns>
</member>
<member name="F:System.CodeDom.CodeBinaryOperatorType.Divide">
<summary>Division operator.</summary>
<returns></returns>
</member>
<member name="F:System.CodeDom.CodeBinaryOperatorType.GreaterThan">
<summary>Greater than operator.</summary>
<returns></returns>
</member>
<member name="F:System.CodeDom.CodeBinaryOperatorType.GreaterThanOrEqual">
<summary>Greater than or equal operator.</summary>
<returns></returns>
</member>
<member name="F:System.CodeDom.CodeBinaryOperatorType.IdentityEquality">
<summary>Identity equal operator.</summary>
<returns></returns>
</member>
<member name="F:System.CodeDom.CodeBinaryOperatorType.IdentityInequality">
<summary>Identity not equal operator.</summary>
<returns></returns>
</member>
<member name="F:System.CodeDom.CodeBinaryOperatorType.LessThan">
<summary>Less than operator.</summary>
<returns></returns>
</member>
<member name="F:System.CodeDom.CodeBinaryOperatorType.LessThanOrEqual">
<summary>Less than or equal operator.</summary>
<returns></returns>
</member>
<member name="F:System.CodeDom.CodeBinaryOperatorType.Modulus">
<summary>Modulus operator.</summary>
<returns></returns>
</member>
<member name="F:System.CodeDom.CodeBinaryOperatorType.Multiply">
<summary>Multiplication operator.</summary>
<returns></returns>
</member>
<member name="F:System.CodeDom.CodeBinaryOperatorType.Subtract">
<summary>Subtraction operator.</summary>
<returns></returns>
</member>
<member name="F:System.CodeDom.CodeBinaryOperatorType.ValueEquality">
<summary>Value equal operator.</summary>
<returns></returns>
</member>
<member name="T:System.CodeDom.CodeCastExpression">
<summary>Represents an expression cast to a data type or interface.</summary>
</member>
<member name="M:System.CodeDom.CodeCastExpression.#ctor">
<summary>Initializes a new instance of the <see cref="T:System.CodeDom.CodeCastExpression"></see> class.</summary>
</member>
<member name="M:System.CodeDom.CodeCastExpression.#ctor(System.CodeDom.CodeTypeReference,System.CodeDom.CodeExpression)">
<summary>Initializes a new instance of the <see cref="T:System.CodeDom.CodeCastExpression"></see> class using the specified destination type and expression.</summary>
<param name="targetType">A <see cref="T:System.CodeDom.CodeTypeReference"></see> that indicates the destination type of the cast.</param>
<param name="expression">The <see cref="T:System.CodeDom.CodeExpression"></see> to cast.</param>
</member>
<member name="M:System.CodeDom.CodeCastExpression.#ctor(System.String,System.CodeDom.CodeExpression)">
<summary>Initializes a new instance of the <see cref="T:System.CodeDom.CodeCastExpression"></see> class using the specified destination type and expression.</summary>
<param name="targetType">The name of the destination type of the cast.</param>
<param name="expression">The <see cref="T:System.CodeDom.CodeExpression"></see> to cast.</param>
</member>
<member name="M:System.CodeDom.CodeCastExpression.#ctor(System.Type,System.CodeDom.CodeExpression)">
<summary>Initializes a new instance of the <see cref="T:System.CodeDom.CodeCastExpression"></see> class using the specified destination type and expression.</summary>
<param name="targetType">The destination data type of the cast.</param>
<param name="expression">The <see cref="T:System.CodeDom.CodeExpression"></see> to cast.</param>
</member>
<member name="P:System.CodeDom.CodeCastExpression.Expression">
<summary>Gets or sets the expression to cast.</summary>
<returns>A <see cref="T:System.CodeDom.CodeExpression"></see> that indicates the code to cast.</returns>
</member>
<member name="P:System.CodeDom.CodeCastExpression.TargetType">
<summary>Gets or sets the destination type of the cast.</summary>
<returns>A <see cref="T:System.CodeDom.CodeTypeReference"></see> that indicates the destination type to cast to.</returns>
</member>
<member name="T:System.CodeDom.CodeCatchClause">
<summary>Represents a catch exception block of a try/catch statement.</summary>
</member>
<member name="M:System.CodeDom.CodeCatchClause.#ctor">
<summary>Initializes a new instance of the <see cref="T:System.CodeDom.CodeCatchClause"></see> class.</summary>
</member>
<member name="M:System.CodeDom.CodeCatchClause.#ctor(System.String)">
<summary>Initializes a new instance of the <see cref="T:System.CodeDom.CodeCatchClause"></see> class using the specified local variable name for the exception.</summary>
<param name="localName">The name of the local variable declared in the catch clause for the exception. This is optional.</param>
</member>
<member name="M:System.CodeDom.CodeCatchClause.#ctor(System.String,System.CodeDom.CodeTypeReference)">
<summary>Initializes a new instance of the <see cref="T:System.CodeDom.CodeCatchClause"></see> class using the specified local variable name for the exception and exception type.</summary>
<param name="localName">The name of the local variable declared in the catch clause for the exception. This is optional.</param>
<param name="catchExceptionType">A <see cref="T:System.CodeDom.CodeTypeReference"></see> that indicates the type of exception to catch.</param>
</member>
<member name="M:System.CodeDom.CodeCatchClause.#ctor(System.String,System.CodeDom.CodeTypeReference,System.CodeDom.CodeStatement[])">
<summary>Initializes a new instance of the <see cref="T:System.CodeDom.CodeCatchClause"></see> class using the specified local variable name for the exception, exception type and statement collection.</summary>
<param name="localName">The name of the local variable declared in the catch clause for the exception. This is optional.</param>
<param name="catchExceptionType">A <see cref="T:System.CodeDom.CodeTypeReference"></see> that indicates the type of exception to catch.</param>
<param name="statements">An array of <see cref="T:System.CodeDom.CodeStatement"></see> objects that represent the contents of the catch block.</param>
</member>
<member name="P:System.CodeDom.CodeCatchClause.CatchExceptionType">
<summary>Gets or sets the type of the exception to handle with the catch block.</summary>
<returns>A <see cref="T:System.CodeDom.CodeTypeReference"></see> that indicates the type of the exception to handle.</returns>
</member>
<member name="P:System.CodeDom.CodeCatchClause.LocalName">
<summary>Gets or sets the variable name of the exception that the catch clause handles.</summary>
<returns>The name for the exception variable that the catch clause handles.</returns>
</member>
<member name="P:System.CodeDom.CodeCatchClause.Statements">
<summary>Gets the statements within the catch block.</summary>
<returns>A <see cref="T:System.CodeDom.CodeStatementCollection"></see> containing the statements within the catch block.</returns>
</member>
<member name="T:System.CodeDom.CodeCatchClauseCollection">
<summary>Represents a collection of <see cref="T:System.CodeDom.CodeCatchClause"></see> objects.</summary>
</member>
<member name="M:System.CodeDom.CodeCatchClauseCollection.#ctor">
<summary>Initializes a new instance of the <see cref="T:System.CodeDom.CodeCatchClauseCollection"></see> class.</summary>
</member>
<member name="M:System.CodeDom.CodeCatchClauseCollection.#ctor(System.CodeDom.CodeCatchClause[])">
<summary>Initializes a new instance of the <see cref="T:System.CodeDom.CodeCatchClauseCollection"></see> class containing the specified array of <see cref="T:System.CodeDom.CodeCatchClause"></see> objects.</summary>
<param name="value">An array of <see cref="T:System.CodeDom.CodeCatchClause"></see> objects with which to initialize the collection.</param>
<exception cref="T:System.ArgumentNullException">One or more objects in the array are null.</exception>
</member>
<member name="M:System.CodeDom.CodeCatchClauseCollection.#ctor(System.CodeDom.CodeCatchClauseCollection)">
<summary>Initializes a new instance of the <see cref="T:System.CodeDom.CodeCatchClauseCollection"></see> class containing the elements of the specified source collection.</summary>
<param name="value">A <see cref="T:System.CodeDom.CodeCatchClauseCollection"></see> with which to initialize the collection.</param>
<exception cref="T:System.ArgumentNullException"><paramref name="value">value</paramref> is null.</exception>
</member>
<member name="M:System.CodeDom.CodeCatchClauseCollection.Add(System.CodeDom.CodeCatchClause)">
<summary>Adds the specified <see cref="T:System.CodeDom.CodeCatchClause"></see> object to the collection.</summary>
<param name="value">The <see cref="T:System.CodeDom.CodeCatchClause"></see> object to add.</param>
<returns>The index at which the new element was inserted.</returns>
</member>
<member name="M:System.CodeDom.CodeCatchClauseCollection.AddRange(System.CodeDom.CodeCatchClause[])">
<summary>Copies the elements of the specified <see cref="T:System.CodeDom.CodeCatchClause"></see> array to the end of the collection.</summary>
<param name="value">An array of type <see cref="T:System.CodeDom.CodeCatchClause"></see> that contains the objects to add to the collection.</param>
<exception cref="T:System.ArgumentNullException"><paramref name="value">value</paramref> is null.</exception>
</member>
<member name="M:System.CodeDom.CodeCatchClauseCollection.AddRange(System.CodeDom.CodeCatchClauseCollection)">
<summary>Copies the contents of another <see cref="T:System.CodeDom.CodeCatchClauseCollection"></see> object to the end of the collection.</summary>
<param name="value">A <see cref="T:System.CodeDom.CodeCatchClauseCollection"></see> that contains the objects to add to the collection.</param>
<exception cref="T:System.ArgumentNullException"><paramref name="value">value</paramref> is null.</exception>
</member>
<member name="M:System.CodeDom.CodeCatchClauseCollection.Contains(System.CodeDom.CodeCatchClause)">
<summary>Gets a value that indicates whether the collection contains the specified <see cref="T:System.CodeDom.CodeCatchClause"></see> object.</summary>
<param name="value">The <see cref="T:System.CodeDom.CodeCatchClause"></see> object to locate in the collection.</param>
<returns>true if the collection contains the specified object; otherwise, false.</returns>
</member>
<member name="M:System.CodeDom.CodeCatchClauseCollection.CopyTo(System.CodeDom.CodeCatchClause[],System.Int32)">
<summary>Copies the collection objects to a one-dimensional <see cref="T:System.Array"></see> instance beginning at the specified index.</summary>
<param name="array">The one-dimensional <see cref="T:System.Array"></see> that is the destination of the values copied from the collection.</param>
<param name="index">The index of the array at which to begin inserting.</param>
<exception cref="T:System.ArgumentException">The destination array is multidimensional. -or- The number of elements in the <see cref="T:System.CodeDom.CodeCatchClauseCollection"></see> is greater than the available space between the index of the target array specified by the <paramref name="index">index</paramref> parameter and the end of the target array.</exception>
<exception cref="T:System.ArgumentNullException">The <paramref name="array">array</paramref> parameter is null.</exception>
<exception cref="T:System.ArgumentOutOfRangeException">The <paramref name="index">index</paramref> parameter is less than the target array's minimum index.</exception>
</member>
<member name="M:System.CodeDom.CodeCatchClauseCollection.IndexOf(System.CodeDom.CodeCatchClause)">
<summary>Gets the index of the specified <see cref="T:System.CodeDom.CodeCatchClause"></see> object in the collection, if it exists in the collection.</summary>
<param name="value">The <see cref="T:System.CodeDom.CodeCatchClause"></see> object to locate in the collection.</param>
<returns>The index of the specified object, if found, in the collection; otherwise, -1.</returns>
</member>
<member name="M:System.CodeDom.CodeCatchClauseCollection.Insert(System.Int32,System.CodeDom.CodeCatchClause)">
<summary>Inserts the specified <see cref="T:System.CodeDom.CodeCatchClause"></see> object into the collection at the specified index.</summary>
<param name="index">The zero-based index where the specified object should be inserted.</param>
<param name="value">The <see cref="T:System.CodeDom.CodeCatchClause"></see> object to insert.</param>
</member>
<member name="P:System.CodeDom.CodeCatchClauseCollection.Item(System.Int32)">
<summary>Gets or sets the <see cref="T:System.CodeDom.CodeCatchClause"></see> object at the specified index in the collection.</summary>
<param name="index">The index of the collection to access.</param>
<returns>A <see cref="T:System.CodeDom.CodeCatchClause"></see> object at each valid index.</returns>
<exception cref="T:System.ArgumentOutOfRangeException">The <paramref name="index">index</paramref> parameter is outside the valid range of indexes for the collection.</exception>
</member>
<member name="M:System.CodeDom.CodeCatchClauseCollection.Remove(System.CodeDom.CodeCatchClause)">
<summary>Removes the specified <see cref="T:System.CodeDom.CodeCatchClause"></see> object from the collection.</summary>
<param name="value">The <see cref="T:System.CodeDom.CodeCatchClause"></see> object to remove from the collection.</param>
<exception cref="T:System.ArgumentException">The specified object is not found in the collection.</exception>
</member>
<member name="T:System.CodeDom.CodeChecksumPragma">
<summary>Represents a code checksum pragma code entity.</summary>
</member>
<member name="M:System.CodeDom.CodeChecksumPragma.#ctor">
<summary>Initializes a new instance of the <see cref="T:System.CodeDom.CodeChecksumPragma"></see> class.</summary>
</member>
<member name="M:System.CodeDom.CodeChecksumPragma.#ctor(System.String,System.Guid,System.Byte[])">
<summary>Initializes a new instance of the <see cref="T:System.CodeDom.CodeChecksumPragma"></see> class using a file name, a GUID representing the checksum algorithm, and a byte stream representing the checksum data.</summary>
<param name="fileName">The path to the checksum file.</param>
<param name="checksumAlgorithmId">A <see cref="T:System.Guid"></see> that identifies the checksum algorithm to use.</param>
<param name="checksumData">A byte array that contains the checksum data.</param>
</member>
<member name="P:System.CodeDom.CodeChecksumPragma.ChecksumAlgorithmId">
<summary>Gets or sets a GUID that identifies the checksum algorithm to use.</summary>
<returns>A <see cref="T:System.Guid"></see> that identifies the checksum algorithm to use.</returns>
</member>
<member name="P:System.CodeDom.CodeChecksumPragma.ChecksumData">
<summary>Gets or sets the value of the data for the checksum calculation.</summary>
<returns>A byte array that contains the data for the checksum calculation.</returns>
</member>
<member name="P:System.CodeDom.CodeChecksumPragma.FileName">
<summary>Gets or sets the path to the checksum file.</summary>
<returns>The path to the checksum file.</returns>
</member>
<member name="T:System.CodeDom.CodeComment">
<summary>Represents a comment.</summary>
</member>
<member name="M:System.CodeDom.CodeComment.#ctor">
<summary>Initializes a new instance of the <see cref="T:System.CodeDom.CodeComment"></see> class.</summary>
</member>
<member name="M:System.CodeDom.CodeComment.#ctor(System.String)">
<summary>Initializes a new instance of the <see cref="T:System.CodeDom.CodeComment"></see> class with the specified text as contents.</summary>
<param name="text">The contents of the comment.</param>
</member>
<member name="M:System.CodeDom.CodeComment.#ctor(System.String,System.Boolean)">
<summary>Initializes a new instance of the <see cref="T:System.CodeDom.CodeComment"></see> class using the specified text and documentation comment flag.</summary>
<param name="text">The contents of the comment.</param>
<param name="docComment">true if the comment is a documentation comment; otherwise, false.</param>
</member>
<member name="P:System.CodeDom.CodeComment.DocComment">
<summary>Gets or sets a value that indicates whether the comment is a documentation comment.</summary>
<returns>true if the comment is a documentation comment; otherwise, false.</returns>
</member>
<member name="P:System.CodeDom.CodeComment.Text">
<summary>Gets or sets the text of the comment.</summary>
<returns>A string containing the comment text.</returns>
</member>
<member name="T:System.CodeDom.CodeCommentStatement">
<summary>Represents a statement consisting of a single comment.</summary>
</member>
<member name="M:System.CodeDom.CodeCommentStatement.#ctor">
<summary>Initializes a new instance of the <see cref="T:System.CodeDom.CodeCommentStatement"></see> class.</summary>
</member>
<member name="M:System.CodeDom.CodeCommentStatement.#ctor(System.CodeDom.CodeComment)">
<summary>Initializes a new instance of the <see cref="T:System.CodeDom.CodeCommentStatement"></see> class using the specified comment.</summary>
<param name="comment">A <see cref="T:System.CodeDom.CodeComment"></see> that indicates the comment.</param>
</member>
<member name="M:System.CodeDom.CodeCommentStatement.#ctor(System.String)">
<summary>Initializes a new instance of the <see cref="T:System.CodeDom.CodeCommentStatement"></see> class using the specified text as contents.</summary>
<param name="text">The contents of the comment.</param>
</member>
<member name="M:System.CodeDom.CodeCommentStatement.#ctor(System.String,System.Boolean)">
<summary>Initializes a new instance of the <see cref="T:System.CodeDom.CodeCommentStatement"></see> class using the specified text and documentation comment flag.</summary>
<param name="text">The contents of the comment.</param>
<param name="docComment">true if the comment is a documentation comment; otherwise, false.</param>
</member>
<member name="P:System.CodeDom.CodeCommentStatement.Comment">
<summary>Gets or sets the contents of the comment.</summary>
<returns>A <see cref="T:System.CodeDom.CodeComment"></see> that indicates the comment.</returns>
</member>
<member name="T:System.CodeDom.CodeCommentStatementCollection">
<summary>Represents a collection of <see cref="T:System.CodeDom.CodeCommentStatement"></see> objects.</summary>
</member>
<member name="M:System.CodeDom.CodeCommentStatementCollection.#ctor">
<summary>Initializes a new instance of the <see cref="T:System.CodeDom.CodeCommentStatementCollection"></see> class.</summary>
</member>
<member name="M:System.CodeDom.CodeCommentStatementCollection.#ctor(System.CodeDom.CodeCommentStatement[])">
<summary>Initializes a new instance of the <see cref="T:System.CodeDom.CodeCommentStatementCollection"></see> class containing the specified array of <see cref="T:System.CodeDom.CodeCommentStatement"></see> objects.</summary>
<param name="value">An array of <see cref="T:System.CodeDom.CodeCommentStatement"></see> objects with which to initialize the collection.</param>
<exception cref="T:System.ArgumentNullException">One or more objects in the array are null.</exception>
</member>
<member name="M:System.CodeDom.CodeCommentStatementCollection.#ctor(System.CodeDom.CodeCommentStatementCollection)">
<summary>Initializes a new instance of the <see cref="T:System.CodeDom.CodeCommentStatementCollection"></see> class containing the elements of the specified source collection.</summary>
<param name="value">A <see cref="T:System.CodeDom.CodeCommentStatementCollection"></see> with which to initialize the collection.</param>
<exception cref="T:System.ArgumentNullException"><paramref name="value">value</paramref> is null.</exception>
</member>
<member name="M:System.CodeDom.CodeCommentStatementCollection.Add(System.CodeDom.CodeCommentStatement)">
<summary>Adds the specified <see cref="T:System.CodeDom.CodeCommentStatement"></see> object to the collection.</summary>
<param name="value">The <see cref="T:System.CodeDom.CodeCommentStatement"></see> object to add.</param>
<returns>The index at which the new element was inserted.</returns>
</member>
<member name="M:System.CodeDom.CodeCommentStatementCollection.AddRange(System.CodeDom.CodeCommentStatement[])">
<summary>Copies the elements of the specified <see cref="T:System.CodeDom.CodeCommentStatement"></see> array to the end of the collection.</summary>
<param name="value">An array of type <see cref="T:System.CodeDom.CodeCommentStatement"></see> that contains the objects to add to the collection.</param>
<exception cref="T:System.ArgumentNullException"><paramref name="value">value</paramref> is null.</exception>
</member>
<member name="M:System.CodeDom.CodeCommentStatementCollection.AddRange(System.CodeDom.CodeCommentStatementCollection)">
<summary>Copies the contents of another <see cref="T:System.CodeDom.CodeCommentStatementCollection"></see> object to the end of the collection.</summary>
<param name="value">A <see cref="T:System.CodeDom.CodeCommentStatementCollection"></see> that contains the objects to add to the collection.</param>
<exception cref="T:System.ArgumentNullException"><paramref name="value">value</paramref> is null.</exception>
</member>
<member name="M:System.CodeDom.CodeCommentStatementCollection.Contains(System.CodeDom.CodeCommentStatement)">
<summary>Gets a value that indicates whether the collection contains the specified <see cref="T:System.CodeDom.CodeCommentStatement"></see> object.</summary>
<param name="value">The <see cref="T:System.CodeDom.CodeCommentStatement"></see> to search for in the collection.</param>
<returns>true if the collection contains the specified object; otherwise, false.</returns>
</member>
<member name="M:System.CodeDom.CodeCommentStatementCollection.CopyTo(System.CodeDom.CodeCommentStatement[],System.Int32)">
<summary>Copies the collection objects to the specified one-dimensional <see cref="T:System.Array"></see> beginning at the specified index.</summary>
<param name="array">The one-dimensional <see cref="T:System.Array"></see> that is the destination of the values copied from the collection.</param>
<param name="index">The index of the array at which to begin inserting.</param>
<exception cref="T:System.ArgumentException">The destination array is multidimensional. -or- The number of elements in the <see cref="T:System.CodeDom.CodeCommentStatementCollection"></see> is greater than the available space between the index of the target array specified by the <paramref name="index">index</paramref> parameter and the end of the target array.</exception>
<exception cref="T:System.ArgumentNullException">The <paramref name="array">array</paramref> parameter is null.</exception>
<exception cref="T:System.ArgumentOutOfRangeException">The <paramref name="index">index</paramref> parameter is less than the target array's minimum index.</exception>
</member>
<member name="M:System.CodeDom.CodeCommentStatementCollection.IndexOf(System.CodeDom.CodeCommentStatement)">
<summary>Gets the index of the specified <see cref="T:System.CodeDom.CodeCommentStatement"></see> object in the collection, if it exists in the collection.</summary>
<param name="value">The <see cref="T:System.CodeDom.CodeCommentStatement"></see> object to locate.</param>
<returns>The index of the specified object, if found, in the collection; otherwise, -1.</returns>
</member>
<member name="M:System.CodeDom.CodeCommentStatementCollection.Insert(System.Int32,System.CodeDom.CodeCommentStatement)">
<summary>Inserts a <see cref="T:System.CodeDom.CodeCommentStatement"></see> object into the collection at the specified index.</summary>
<param name="index">The zero-based index where the item should be inserted.</param>
<param name="value">The <see cref="T:System.CodeDom.CodeCommentStatement"></see> object to insert.</param>
</member>
<member name="P:System.CodeDom.CodeCommentStatementCollection.Item(System.Int32)">
<summary>Gets or sets the <see cref="T:System.CodeDom.CodeCommentStatement"></see> object at the specified index in the collection.</summary>
<param name="index">The index of the collection to access.</param>
<returns>A <see cref="T:System.CodeDom.CodeCommentStatement"></see> object at each valid index.</returns>
<exception cref="T:System.ArgumentOutOfRangeException">The <paramref name="index">index</paramref> parameter is outside the valid range of indexes for the collection.</exception>
</member>
<member name="M:System.CodeDom.CodeCommentStatementCollection.Remove(System.CodeDom.CodeCommentStatement)">
<summary>Removes the specified <see cref="T:System.CodeDom.CodeCommentStatement"></see> object from the collection.</summary>
<param name="value">The <see cref="T:System.CodeDom.CodeCommentStatement"></see> object to remove from the collection.</param>
<exception cref="T:System.ArgumentException">The specified object is not found in the collection.</exception>
</member>
<member name="T:System.CodeDom.CodeCompileUnit">
<summary>Provides a container for a CodeDOM program graph.</summary>
</member>
<member name="M:System.CodeDom.CodeCompileUnit.#ctor">
<summary>Initializes a new instance of the <see cref="T:System.CodeDom.CodeCompileUnit"></see> class.</summary>
</member>
<member name="P:System.CodeDom.CodeCompileUnit.AssemblyCustomAttributes">
<summary>Gets a collection of custom attributes for the generated assembly.</summary>
<returns>A <see cref="T:System.CodeDom.CodeAttributeDeclarationCollection"></see> that indicates the custom attributes for the generated assembly.</returns>
</member>
<member name="P:System.CodeDom.CodeCompileUnit.EndDirectives">
<summary>Gets a <see cref="T:System.CodeDom.CodeDirectiveCollection"></see> object containing end directives.</summary>
<returns>A <see cref="T:System.CodeDom.CodeDirectiveCollection"></see> object containing end directives.</returns>
</member>
<member name="P:System.CodeDom.CodeCompileUnit.Namespaces">
<summary>Gets the collection of namespaces.</summary>
<returns>A <see cref="T:System.CodeDom.CodeNamespaceCollection"></see> that indicates the namespaces that the compile unit uses.</returns>
</member>
<member name="P:System.CodeDom.CodeCompileUnit.ReferencedAssemblies">
<summary>Gets the referenced assemblies.</summary>
<returns>A <see cref="T:System.Collections.Specialized.StringCollection"></see> that contains the file names of the referenced assemblies.</returns>
</member>
<member name="P:System.CodeDom.CodeCompileUnit.StartDirectives">
<summary>Gets a <see cref="T:System.CodeDom.CodeDirectiveCollection"></see> object containing start directives.</summary>
<returns>A <see cref="T:System.CodeDom.CodeDirectiveCollection"></see> object containing start directives.</returns>
</member>
<member name="T:System.CodeDom.CodeConditionStatement">
<summary>Represents a conditional branch statement, typically represented as an if statement.</summary>
</member>
<member name="M:System.CodeDom.CodeConditionStatement.#ctor">
<summary>Initializes a new instance of the <see cref="T:System.CodeDom.CodeConditionStatement"></see> class.</summary>
</member>
<member name="M:System.CodeDom.CodeConditionStatement.#ctor(System.CodeDom.CodeExpression,System.CodeDom.CodeStatement[])">
<summary>Initializes a new instance of the <see cref="T:System.CodeDom.CodeConditionStatement"></see> class using the specified condition and statements.</summary>
<param name="condition">A <see cref="T:System.CodeDom.CodeExpression"></see> that indicates the expression to evaluate.</param>
<param name="trueStatements">An array of type <see cref="T:System.CodeDom.CodeStatement"></see> containing the statements to execute if the condition is true.</param>
</member>
<member name="M:System.CodeDom.CodeConditionStatement.#ctor(System.CodeDom.CodeExpression,System.CodeDom.CodeStatement[],System.CodeDom.CodeStatement[])">
<summary>Initializes a new instance of the <see cref="T:System.CodeDom.CodeConditionStatement"></see> class using the specified condition and statements.</summary>
<param name="condition">A <see cref="T:System.CodeDom.CodeExpression"></see> that indicates the condition to evaluate.</param>
<param name="trueStatements">An array of type <see cref="T:System.CodeDom.CodeStatement"></see> containing the statements to execute if the condition is true.</param>
<param name="falseStatements">An array of type <see cref="T:System.CodeDom.CodeStatement"></see> containing the statements to execute if the condition is false.</param>
</member>
<member name="P:System.CodeDom.CodeConditionStatement.Condition">
<summary>Gets or sets the expression to evaluate true or false.</summary>
<returns>A <see cref="T:System.CodeDom.CodeExpression"></see> to evaluate true or false.</returns>
</member>
<member name="P:System.CodeDom.CodeConditionStatement.FalseStatements">
<summary>Gets the collection of statements to execute if the conditional expression evaluates to false.</summary>
<returns>A <see cref="T:System.CodeDom.CodeStatementCollection"></see> containing the statements to execute if the conditional expression evaluates to false.</returns>
</member>
<member name="P:System.CodeDom.CodeConditionStatement.TrueStatements">
<summary>Gets the collection of statements to execute if the conditional expression evaluates to true.</summary>
<returns>A <see cref="T:System.CodeDom.CodeStatementCollection"></see> containing the statements to execute if the conditional expression evaluates to true.</returns>
</member>
<member name="T:System.CodeDom.CodeConstructor">
<summary>Represents a declaration for an instance constructor of a type.</summary>
</member>
<member name="M:System.CodeDom.CodeConstructor.#ctor">
<summary>Initializes a new instance of the <see cref="T:System.CodeDom.CodeConstructor"></see> class.</summary>
</member>
<member name="P:System.CodeDom.CodeConstructor.BaseConstructorArgs">
<summary>Gets the collection of base constructor arguments.</summary>
<returns>A <see cref="T:System.CodeDom.CodeExpressionCollection"></see> that contains the base constructor arguments.</returns>
</member>
<member name="P:System.CodeDom.CodeConstructor.ChainedConstructorArgs">
<summary>Gets the collection of chained constructor arguments.</summary>
<returns>A <see cref="T:System.CodeDom.CodeExpressionCollection"></see> that contains the chained constructor arguments.</returns>
</member>
<member name="T:System.CodeDom.CodeDefaultValueExpression">
<summary>Represents a reference to a default value.</summary>
</member>
<member name="M:System.CodeDom.CodeDefaultValueExpression.#ctor">
<summary>Initializes a new instance of the <see cref="T:System.CodeDom.CodeDefaultValueExpression"></see> class.</summary>
</member>
<member name="M:System.CodeDom.CodeDefaultValueExpression.#ctor(System.CodeDom.CodeTypeReference)">
<summary>Initializes a new instance of the <see cref="T:System.CodeDom.CodeDefaultValueExpression"></see> class using the specified code type reference.</summary>
<param name="type">A <see cref="T:System.CodeDom.CodeTypeReference"></see> that specifies the reference to a value type.</param>
</member>
<member name="P:System.CodeDom.CodeDefaultValueExpression.Type">
<summary>Gets or sets the data type reference for a default value.</summary>
<returns>A <see cref="T:System.CodeDom.CodeTypeReference"></see> object representing a data type that has a default value.</returns>
</member>
<member name="T:System.CodeDom.CodeDelegateCreateExpression">
<summary>Represents an expression that creates a delegate.</summary>
</member>
<member name="M:System.CodeDom.CodeDelegateCreateExpression.#ctor">
<summary>Initializes a new instance of the <see cref="T:System.CodeDom.CodeDelegateCreateExpression"></see> class.</summary>
</member>
<member name="M:System.CodeDom.CodeDelegateCreateExpression.#ctor(System.CodeDom.CodeTypeReference,System.CodeDom.CodeExpression,System.String)">
<summary>Initializes a new instance of the <see cref="T:System.CodeDom.CodeDelegateCreateExpression"></see> class.</summary>
<param name="delegateType">A <see cref="T:System.CodeDom.CodeTypeReference"></see> that indicates the data type of the delegate.</param>
<param name="targetObject">A <see cref="T:System.CodeDom.CodeExpression"></see> that indicates the object containing the event-handler method.</param>
<param name="methodName">The name of the event-handler method.</param>
</member>
<member name="P:System.CodeDom.CodeDelegateCreateExpression.DelegateType">
<summary>Gets or sets the data type of the delegate.</summary>
<returns>A <see cref="T:System.CodeDom.CodeTypeReference"></see> that indicates the data type of the delegate.</returns>
</member>
<member name="P:System.CodeDom.CodeDelegateCreateExpression.MethodName">
<summary>Gets or sets the name of the event handler method.</summary>
<returns>The name of the event handler method.</returns>
</member>
<member name="P:System.CodeDom.CodeDelegateCreateExpression.TargetObject">
<summary>Gets or sets the object that contains the event-handler method.</summary>
<returns>A <see cref="T:System.CodeDom.CodeExpression"></see> that indicates the object containing the event-handler method.</returns>
</member>
<member name="T:System.CodeDom.CodeDelegateInvokeExpression">
<summary>Represents an expression that raises an event.</summary>
</member>
<member name="M:System.CodeDom.CodeDelegateInvokeExpression.#ctor">
<summary>Initializes a new instance of the <see cref="T:System.CodeDom.CodeDelegateInvokeExpression"></see> class.</summary>
</member>
<member name="M:System.CodeDom.CodeDelegateInvokeExpression.#ctor(System.CodeDom.CodeExpression)">
<summary>Initializes a new instance of the <see cref="T:System.CodeDom.CodeDelegateInvokeExpression"></see> class using the specified target object.</summary>
<param name="targetObject">A <see cref="T:System.CodeDom.CodeExpression"></see> that indicates the target object.</param>
</member>
<member name="M:System.CodeDom.CodeDelegateInvokeExpression.#ctor(System.CodeDom.CodeExpression,System.CodeDom.CodeExpression[])">
<summary>Initializes a new instance of the <see cref="T:System.CodeDom.CodeDelegateInvokeExpression"></see> class using the specified target object and parameters.</summary>
<param name="targetObject">A <see cref="T:System.CodeDom.CodeExpression"></see> that indicates the target object.</param>
<param name="parameters">An array of <see cref="T:System.CodeDom.CodeExpression"></see> objects that indicate the parameters.</param>
</member>
<member name="P:System.CodeDom.CodeDelegateInvokeExpression.Parameters">
<summary>Gets or sets the parameters to pass to the event handling methods attached to the event.</summary>
<returns>A <see cref="T:System.CodeDom.CodeExpression"></see> that indicates the parameters to pass to the event handling methods attached to the event.</returns>
</member>
<member name="P:System.CodeDom.CodeDelegateInvokeExpression.TargetObject">
<summary>Gets or sets the event to invoke.</summary>
<returns>A <see cref="T:System.CodeDom.CodeExpression"></see> that indicates the event to invoke.</returns>
</member>
<member name="T:System.CodeDom.CodeDirectionExpression">
<summary>Represents an expression used as a method invoke parameter along with a reference direction indicator.</summary>
</member>
<member name="M:System.CodeDom.CodeDirectionExpression.#ctor">
<summary>Initializes a new instance of the <see cref="T:System.CodeDom.CodeDirectionExpression"></see> class.</summary>
</member>
<member name="M:System.CodeDom.CodeDirectionExpression.#ctor(System.CodeDom.FieldDirection,System.CodeDom.CodeExpression)">
<summary>Initializes a new instance of the <see cref="T:System.CodeDom.CodeDirectionExpression"></see> class using the specified field direction and expression.</summary>
<param name="direction">A <see cref="T:System.CodeDom.FieldDirection"></see> that indicates the field direction of the expression.</param>
<param name="expression">A <see cref="T:System.CodeDom.CodeExpression"></see> that indicates the code expression to represent.</param>
</member>
<member name="P:System.CodeDom.CodeDirectionExpression.Direction">
<summary>Gets or sets the field direction for this direction expression.</summary>
<returns>A <see cref="T:System.CodeDom.FieldDirection"></see> that indicates the field direction for this direction expression.</returns>
</member>
<member name="P:System.CodeDom.CodeDirectionExpression.Expression">
<summary>Gets or sets the code expression to represent.</summary>
<returns>A <see cref="T:System.CodeDom.CodeExpression"></see> that indicates the expression to represent.</returns>
</member>
<member name="T:System.CodeDom.CodeDirective">
<summary>Serves as the base class for code directive classes.</summary>
</member>
<member name="M:System.CodeDom.CodeDirective.#ctor">
<summary>Initializes a new instance of the <see cref="T:System.CodeDom.CodeDirective"></see> class.</summary>
</member>
<member name="T:System.CodeDom.CodeDirectiveCollection">
<summary>Represents a collection of <see cref="T:System.CodeDom.CodeDirective"></see> objects.</summary>
</member>
<member name="M:System.CodeDom.CodeDirectiveCollection.#ctor">
<summary>Initializes a new instance of the <see cref="T:System.CodeDom.CodeDirectiveCollection"></see> class.</summary>
</member>
<member name="M:System.CodeDom.CodeDirectiveCollection.#ctor(System.CodeDom.CodeDirective[])">
<summary>Initializes a new instance of the <see cref="T:System.CodeDom.CodeDirectiveCollection"></see> class with the code directive objects in the specified array.</summary>
<param name="value">An array of <see cref="T:System.CodeDom.CodeDirective"></see> objects with which to initialize the collection.</param>
<exception cref="T:System.ArgumentNullException"><paramref name="value">value</paramref> is null.</exception>
</member>
<member name="M:System.CodeDom.CodeDirectiveCollection.#ctor(System.CodeDom.CodeDirectiveCollection)">
<summary>Initializes a new instance of the <see cref="T:System.CodeDom.CodeDirectiveCollection"></see> class with the elements in the specified code directive collection.</summary>
<param name="value">A <see cref="T:System.CodeDom.CodeDirectiveCollection"></see> object with which to initialize the collection.</param>
<exception cref="T:System.ArgumentNullException"><paramref name="value">value</paramref> is null.</exception>
</member>
<member name="M:System.CodeDom.CodeDirectiveCollection.Add(System.CodeDom.CodeDirective)">
<summary>Adds the specified <see cref="T:System.CodeDom.CodeDirective"></see> object to the collection.</summary>
<param name="value">The <see cref="T:System.CodeDom.CodeDirective"></see> object to add.</param>
<returns>The index position at which the new element was inserted.</returns>
</member>
<member name="M:System.CodeDom.CodeDirectiveCollection.AddRange(System.CodeDom.CodeDirective[])">
<summary>Adds an array of <see cref="T:System.CodeDom.CodeDirective"></see> objects to the end of the collection.</summary>
<param name="value">An array of <see cref="T:System.CodeDom.CodeDirective"></see> objects to add to the collection.</param>
<exception cref="T:System.ArgumentNullException"><paramref name="value">value</paramref> is null.</exception>
</member>
<member name="M:System.CodeDom.CodeDirectiveCollection.AddRange(System.CodeDom.CodeDirectiveCollection)">
<summary>Adds the contents of the specified <see cref="T:System.CodeDom.CodeDirectiveCollection"></see> object to the end of the collection.</summary>
<param name="value">A <see cref="T:System.CodeDom.CodeDirectiveCollection"></see> object containing the <see cref="T:System.CodeDom.CodeDirective"></see> objects to add to the collection.</param>
<exception cref="T:System.ArgumentNullException"><paramref name="value">value</paramref> is null.</exception>
</member>
<member name="M:System.CodeDom.CodeDirectiveCollection.Contains(System.CodeDom.CodeDirective)">
<summary>Gets a value indicating whether the collection contains the specified <see cref="T:System.CodeDom.CodeDirective"></see> object.</summary>
<param name="value">The <see cref="T:System.CodeDom.CodeDirective"></see> object to search for in the collection.</param>
<returns>true if the collection contains the specified object; otherwise, false.</returns>
</member>
<member name="M:System.CodeDom.CodeDirectiveCollection.CopyTo(System.CodeDom.CodeDirective[],System.Int32)">
<summary>Copies the contents of the collection to a one-dimensional array beginning at the specified index.</summary>
<param name="array">An array of type <see cref="T:System.CodeDom.CodeDirective"></see> that is the destination of the values copied from the collection.</param>
<param name="index">The index in the array at which to begin inserting collection objects.</param>
<exception cref="T:System.ArgumentException">The destination array is multidimensional. -or- The number of elements in the <see cref="T:System.CodeDom.CodeDirectiveCollection"></see> is greater than the available space between the index of the target array specified by <paramref name="index">index</paramref> and the end of the target array.</exception>
<exception cref="T:System.ArgumentNullException"><paramref name="array">array</paramref> is null.</exception>
<exception cref="T:System.ArgumentOutOfRangeException"><paramref name="index">index</paramref> is less than the target array's minimum index.</exception>
</member>
<member name="M:System.CodeDom.CodeDirectiveCollection.IndexOf(System.CodeDom.CodeDirective)">
<summary>Gets the index in the collection of the specified <see cref="T:System.CodeDom.CodeDirective"></see> object, if it exists in the collection.</summary>
<param name="value">The <see cref="T:System.CodeDom.CodeDirective"></see> object to locate in the collection.</param>
<returns>The index position in the collection of the specified object, if found; otherwise, -1.</returns>
</member>
<member name="M:System.CodeDom.CodeDirectiveCollection.Insert(System.Int32,System.CodeDom.CodeDirective)">
<summary>Inserts the specified <see cref="T:System.CodeDom.CodeDirective"></see> object into the collection at the specified index.</summary>
<param name="index">The zero-based index position where the specified object should be inserted.</param>
<param name="value">The <see cref="T:System.CodeDom.CodeDirective"></see> object to insert.</param>
<exception cref="T:System.ArgumentOutOfRangeException"><paramref name="index">index</paramref> is less than 0. -or- <paramref name="index">index</paramref> is greater than <see cref="P:System.Collections.CollectionBase.Count"></see>.</exception>
</member>
<member name="P:System.CodeDom.CodeDirectiveCollection.Item(System.Int32)">
<summary>Gets or sets the <see cref="T:System.CodeDom.CodeDirective"></see> object at the specified index in the collection.</summary>
<param name="index">The index position to access.</param>
<returns>The <see cref="T:System.CodeDom.CodeDirective"></see> at the index position.</returns>
<exception cref="T:System.ArgumentOutOfRangeException"><paramref name="index">index</paramref> is outside the valid range of index positions for the collection.</exception>
</member>
<member name="M:System.CodeDom.CodeDirectiveCollection.Remove(System.CodeDom.CodeDirective)">
<summary>Removes the specified <see cref="T:System.CodeDom.CodeDirective"></see> object from the collection.</summary>
<param name="value">The <see cref="T:System.CodeDom.CodeDirective"></see> object to remove from the collection.</param>
<exception cref="T:System.ArgumentException">The specified object is not found in the collection.</exception>
</member>
<member name="T:System.CodeDom.CodeEntryPointMethod">
<summary>Represents the entry point method of an executable.</summary>
</member>
<member name="M:System.CodeDom.CodeEntryPointMethod.#ctor">
<summary>Initializes a new instance of the <see cref="T:System.CodeDom.CodeEntryPointMethod"></see> class.</summary>
</member>
<member name="T:System.CodeDom.CodeEventReferenceExpression">
<summary>Represents a reference to an event.</summary>
</member>
<member name="M:System.CodeDom.CodeEventReferenceExpression.#ctor">
<summary>Initializes a new instance of the <see cref="T:System.CodeDom.CodeEventReferenceExpression"></see> class.</summary>
</member>
<member name="M:System.CodeDom.CodeEventReferenceExpression.#ctor(System.CodeDom.CodeExpression,System.String)">
<summary>Initializes a new instance of the <see cref="T:System.CodeDom.CodeEventReferenceExpression"></see> class using the specified target object and event name.</summary>
<param name="targetObject">A <see cref="T:System.CodeDom.CodeExpression"></see> that indicates the object that contains the event.</param>
<param name="eventName">The name of the event to reference.</param>
</member>
<member name="P:System.CodeDom.CodeEventReferenceExpression.EventName">
<summary>Gets or sets the name of the event.</summary>
<returns>The name of the event.</returns>
</member>
<member name="P:System.CodeDom.CodeEventReferenceExpression.TargetObject">
<summary>Gets or sets the object that contains the event.</summary>
<returns>A <see cref="T:System.CodeDom.CodeExpression"></see> that indicates the object that contains the event.</returns>
</member>
<member name="T:System.CodeDom.CodeExpression">
<summary>Represents a code expression. This is a base class for other code expression objects that is never instantiated.</summary>
</member>
<member name="M:System.CodeDom.CodeExpression.#ctor">
<summary>Initializes a new instance of the <see cref="T:System.CodeDom.CodeExpression"></see> class.</summary>
</member>
<member name="T:System.CodeDom.CodeExpressionCollection">
<summary>Represents a collection of <see cref="T:System.CodeDom.CodeExpression"></see> objects.</summary>
</member>
<member name="M:System.CodeDom.CodeExpressionCollection.#ctor">
<summary>Initializes a new instance of the <see cref="T:System.CodeDom.CodeExpressionCollection"></see> class.</summary>
</member>
<member name="M:System.CodeDom.CodeExpressionCollection.#ctor(System.CodeDom.CodeExpression[])">
<summary>Initializes a new instance of the <see cref="T:System.CodeDom.CodeExpressionCollection"></see> class containing the specified array of <see cref="T:System.CodeDom.CodeExpression"></see> objects.</summary>
<param name="value">An array of <see cref="T:System.CodeDom.CodeExpression"></see> objects with which to initialize the collection.</param>
<exception cref="T:System.ArgumentNullException">One or more objects in the array are null.</exception>
</member>
<member name="M:System.CodeDom.CodeExpressionCollection.#ctor(System.CodeDom.CodeExpressionCollection)">
<summary>Initializes a new instance of the <see cref="T:System.CodeDom.CodeExpressionCollection"></see> class containing the elements of the specified source collection.</summary>
<param name="value">A <see cref="T:System.CodeDom.CodeExpressionCollection"></see> with which to initialize the collection.</param>
<exception cref="T:System.ArgumentNullException"><paramref name="value">value</paramref> is null.</exception>
</member>
<member name="M:System.CodeDom.CodeExpressionCollection.Add(System.CodeDom.CodeExpression)">
<summary>Adds the specified <see cref="T:System.CodeDom.CodeExpression"></see> object to the collection.</summary>
<param name="value">The <see cref="T:System.CodeDom.CodeExpression"></see> object to add.</param>
<returns>The index at which the new element was inserted.</returns>
</member>
<member name="M:System.CodeDom.CodeExpressionCollection.AddRange(System.CodeDom.CodeExpression[])">
<summary>Copies the elements of the specified array to the end of the collection.</summary>
<param name="value">An array of type <see cref="T:System.CodeDom.CodeExpression"></see> that contains the objects to add to the collection.</param>
<exception cref="T:System.ArgumentNullException"><paramref name="value">value</paramref> is null.</exception>
</member>
<member name="M:System.CodeDom.CodeExpressionCollection.AddRange(System.CodeDom.CodeExpressionCollection)">
<summary>Copies the contents of another <see cref="T:System.CodeDom.CodeExpressionCollection"></see> object to the end of the collection.</summary>
<param name="value">A <see cref="T:System.CodeDom.CodeExpressionCollection"></see> that contains the objects to add to the collection.</param>
<exception cref="T:System.ArgumentNullException"><paramref name="value">value</paramref> is null.</exception>
</member>
<member name="M:System.CodeDom.CodeExpressionCollection.Contains(System.CodeDom.CodeExpression)">
<summary>Gets a value that indicates whether the collection contains the specified <see cref="T:System.CodeDom.CodeExpression"></see> object.</summary>
<param name="value">The <see cref="T:System.CodeDom.CodeExpression"></see> object to locate in the collection.</param>
<returns>true if the collection contains the specified object; otherwise, false.</returns>
</member>
<member name="M:System.CodeDom.CodeExpressionCollection.CopyTo(System.CodeDom.CodeExpression[],System.Int32)">
<summary>Copies the collection objects to a one-dimensional <see cref="T:System.Array"></see> instance beginning at the specified index.</summary>
<param name="array">The one-dimensional <see cref="T:System.Array"></see> that is the destination of the values copied from the collection.</param>
<param name="index">The index of the array at which to begin inserting.</param>
<exception cref="T:System.ArgumentException">The destination array is multidimensional. -or- The number of elements in the <see cref="T:System.CodeDom.CodeExpressionCollection"></see> is greater than the available space between the index of the target array specified by the <paramref name="index">index</paramref> parameter and the end of the target array.</exception>
<exception cref="T:System.ArgumentNullException">The <paramref name="array">array</paramref> parameter is null.</exception>
<exception cref="T:System.ArgumentOutOfRangeException">The <paramref name="index">index</paramref> parameter is less than the target array's minimum index.</exception>
</member>
<member name="M:System.CodeDom.CodeExpressionCollection.IndexOf(System.CodeDom.CodeExpression)">
<summary>Gets the index of the specified <see cref="T:System.CodeDom.CodeExpression"></see> object in the collection, if it exists in the collection.</summary>
<param name="value">The <see cref="T:System.CodeDom.CodeExpression"></see> object to locate in the collection.</param>
<returns>The index of the specified object, if found, in the collection; otherwise, -1.</returns>
</member>
<member name="M:System.CodeDom.CodeExpressionCollection.Insert(System.Int32,System.CodeDom.CodeExpression)">
<summary>Inserts the specified <see cref="T:System.CodeDom.CodeExpression"></see> object into the collection at the specified index.</summary>
<param name="index">The zero-based index where the specified object should be inserted.</param>
<param name="value">The <see cref="T:System.CodeDom.CodeExpression"></see> object to insert.</param>
</member>
<member name="P:System.CodeDom.CodeExpressionCollection.Item(System.Int32)">
<summary>Gets or sets the <see cref="T:System.CodeDom.CodeExpression"></see> object at the specified index in the collection.</summary>
<param name="index">The zero-based index of the collection to access.</param>
<returns>A <see cref="T:System.CodeDom.CodeExpression"></see> object at each valid index.</returns>
<exception cref="T:System.ArgumentOutOfRangeException">The <paramref name="index">index</paramref> parameter is outside the valid range of indexes for the collection.</exception>
</member>
<member name="M:System.CodeDom.CodeExpressionCollection.Remove(System.CodeDom.CodeExpression)">
<summary>Removes the specified <see cref="T:System.CodeDom.CodeExpression"></see> object from the collection.</summary>
<param name="value">The <see cref="T:System.CodeDom.CodeExpression"></see> object to remove from the collection.</param>
<exception cref="T:System.ArgumentException">The specified object is not found in the collection.</exception>
</member>
<member name="T:System.CodeDom.CodeExpressionStatement">
<summary>Represents a statement that consists of a single expression.</summary>
</member>
<member name="M:System.CodeDom.CodeExpressionStatement.#ctor">
<summary>Initializes a new instance of the <see cref="T:System.CodeDom.CodeExpressionStatement"></see> class.</summary>
</member>
<member name="M:System.CodeDom.CodeExpressionStatement.#ctor(System.CodeDom.CodeExpression)">
<summary>Initializes a new instance of the <see cref="T:System.CodeDom.CodeExpressionStatement"></see> class by using the specified expression.</summary>
<param name="expression">A <see cref="T:System.CodeDom.CodeExpression"></see> for the statement.</param>
</member>
<member name="P:System.CodeDom.CodeExpressionStatement.Expression">
<summary>Gets or sets the expression for the statement.</summary>
<returns>A <see cref="T:System.CodeDom.CodeExpression"></see> that indicates the expression for the statement.</returns>
</member>
<member name="T:System.CodeDom.CodeFieldReferenceExpression">
<summary>Represents a reference to a field.</summary>
</member>
<member name="M:System.CodeDom.CodeFieldReferenceExpression.#ctor">
<summary>Initializes a new instance of the <see cref="T:System.CodeDom.CodeFieldReferenceExpression"></see> class.</summary>
</member>
<member name="M:System.CodeDom.CodeFieldReferenceExpression.#ctor(System.CodeDom.CodeExpression,System.String)">
<summary>Initializes a new instance of the <see cref="T:System.CodeDom.CodeFieldReferenceExpression"></see> class using the specified target object and field name.</summary>
<param name="targetObject">A <see cref="T:System.CodeDom.CodeExpression"></see> that indicates the object that contains the field.</param>
<param name="fieldName">The name of the field.</param>
</member>
<member name="P:System.CodeDom.CodeFieldReferenceExpression.FieldName">
<summary>Gets or sets the name of the field to reference.</summary>
<returns>A string containing the field name.</returns>
</member>
<member name="P:System.CodeDom.CodeFieldReferenceExpression.TargetObject">
<summary>Gets or sets the object that contains the field to reference.</summary>
<returns>A <see cref="T:System.CodeDom.CodeExpression"></see> that indicates the object that contains the field to reference.</returns>
</member>
<member name="T:System.CodeDom.CodeGotoStatement">
<summary>Represents a goto statement.</summary>
</member>
<member name="M:System.CodeDom.CodeGotoStatement.#ctor">
<summary>Initializes a new instance of the <see cref="T:System.CodeDom.CodeGotoStatement"></see> class.</summary>
</member>
<member name="M:System.CodeDom.CodeGotoStatement.#ctor(System.String)">
<summary>Initializes a new instance of the <see cref="T:System.CodeDom.CodeGotoStatement"></see> class using the specified label name.</summary>
<param name="label">The name of the label at which to continue program execution.</param>
<exception cref="T:System.ArgumentNullException"><paramref name="Label">Label</paramref> is null.</exception>
</member>
<member name="P:System.CodeDom.CodeGotoStatement.Label">
<summary>Gets or sets the name of the label at which to continue program execution.</summary>
<returns>A string that indicates the name of the label at which to continue program execution.</returns>
<exception cref="T:System.ArgumentNullException">The label cannot be set because <paramref name="value">value</paramref> is null or an empty string.</exception>
</member>
<member name="T:System.CodeDom.CodeIndexerExpression">
<summary>Represents a reference to an indexer property of an object.</summary>
</member>
<member name="M:System.CodeDom.CodeIndexerExpression.#ctor">
<summary>Initializes a new instance of the <see cref="T:System.CodeDom.CodeIndexerExpression"></see> class.</summary>
</member>
<member name="M:System.CodeDom.CodeIndexerExpression.#ctor(System.CodeDom.CodeExpression,System.CodeDom.CodeExpression[])">
<summary>Initializes a new instance of the <see cref="T:System.CodeDom.CodeIndexerExpression"></see> class using the specified target object and index.</summary>
<param name="targetObject">The target object.</param>
<param name="indices">The index or indexes of the indexer expression.</param>
</member>
<member name="P:System.CodeDom.CodeIndexerExpression.Indices">
<summary>Gets the collection of indexes of the indexer expression.</summary>
<returns>A <see cref="T:System.CodeDom.CodeExpressionCollection"></see> that indicates the index or indexes of the indexer expression.</returns>
</member>
<member name="P:System.CodeDom.CodeIndexerExpression.TargetObject">
<summary>Gets or sets the target object that can be indexed.</summary>
<returns>A <see cref="T:System.CodeDom.CodeExpression"></see> that indicates the indexer object.</returns>
</member>
<member name="T:System.CodeDom.CodeIterationStatement">
<summary>Represents a for statement, or a loop through a block of statements, using a test expression as a condition for continuing to loop.</summary>
</member>
<member name="M:System.CodeDom.CodeIterationStatement.#ctor">
<summary>Initializes a new instance of the <see cref="T:System.CodeDom.CodeIterationStatement"></see> class.</summary>
</member>
<member name="M:System.CodeDom.CodeIterationStatement.#ctor(System.CodeDom.CodeStatement,System.CodeDom.CodeExpression,System.CodeDom.CodeStatement,System.CodeDom.CodeStatement[])">
<summary>Initializes a new instance of the <see cref="T:System.CodeDom.CodeIterationStatement"></see> class using the specified parameters.</summary>
<param name="initStatement">A <see cref="T:System.CodeDom.CodeStatement"></see> containing the loop initialization statement.</param>
<param name="testExpression">A <see cref="T:System.CodeDom.CodeExpression"></see> containing the expression to test for exit condition.</param>
<param name="incrementStatement">A <see cref="T:System.CodeDom.CodeStatement"></see> containing the per-cycle increment statement.</param>
<param name="statements">An array of type <see cref="T:System.CodeDom.CodeStatement"></see> containing the statements within the loop.</param>
</member>
<member name="P:System.CodeDom.CodeIterationStatement.IncrementStatement">
<summary>Gets or sets the statement that is called after each loop cycle.</summary>
<returns>A <see cref="T:System.CodeDom.CodeStatement"></see> that indicates the per cycle increment statement.</returns>
</member>
<member name="P:System.CodeDom.CodeIterationStatement.InitStatement">
<summary>Gets or sets the loop initialization statement.</summary>
<returns>A <see cref="T:System.CodeDom.CodeStatement"></see> that indicates the loop initialization statement.</returns>
</member>
<member name="P:System.CodeDom.CodeIterationStatement.Statements">
<summary>Gets the collection of statements to be executed within the loop.</summary>
<returns>An array of type <see cref="T:System.CodeDom.CodeStatement"></see> that indicates the statements within the loop.</returns>
</member>
<member name="P:System.CodeDom.CodeIterationStatement.TestExpression">
<summary>Gets or sets the expression to test as the condition that continues the loop.</summary>
<returns>A <see cref="T:System.CodeDom.CodeExpression"></see> that indicates the expression to test.</returns>
</member>
<member name="T:System.CodeDom.CodeLabeledStatement">
<summary>Represents a labeled statement or a stand-alone label.</summary>
</member>
<member name="M:System.CodeDom.CodeLabeledStatement.#ctor">
<summary>Initializes a new instance of the <see cref="T:System.CodeDom.CodeLabeledStatement"></see> class.</summary>
</member>
<member name="M:System.CodeDom.CodeLabeledStatement.#ctor(System.String)">
<summary>Initializes a new instance of the <see cref="T:System.CodeDom.CodeLabeledStatement"></see> class using the specified label name.</summary>
<param name="label">The name of the label.</param>
</member>
<member name="M:System.CodeDom.CodeLabeledStatement.#ctor(System.String,System.CodeDom.CodeStatement)">
<summary>Initializes a new instance of the <see cref="T:System.CodeDom.CodeLabeledStatement"></see> class using the specified label name and statement.</summary>
<param name="label">The name of the label.</param>
<param name="statement">The <see cref="T:System.CodeDom.CodeStatement"></see> to associate with the label.</param>
</member>
<member name="P:System.CodeDom.CodeLabeledStatement.Label">
<summary>Gets or sets the name of the label.</summary>
<returns>The name of the label.</returns>
</member>
<member name="P:System.CodeDom.CodeLabeledStatement.Statement">
<summary>Gets or sets the optional associated statement.</summary>
<returns>A <see cref="T:System.CodeDom.CodeStatement"></see> that indicates the statement associated with the label.</returns>
</member>
<member name="T:System.CodeDom.CodeLinePragma">
<summary>Represents a specific location within a specific file.</summary>
</member>
<member name="M:System.CodeDom.CodeLinePragma.#ctor">
<summary>Initializes a new instance of the <see cref="T:System.CodeDom.CodeLinePragma"></see> class.</summary>
</member>
<member name="M:System.CodeDom.CodeLinePragma.#ctor(System.String,System.Int32)">
<summary>Initializes a new instance of the <see cref="T:System.CodeDom.CodeLinePragma"></see> class.</summary>
<param name="fileName">The file name of the associated file.</param>
<param name="lineNumber">The line number to store a reference to.</param>
</member>
<member name="P:System.CodeDom.CodeLinePragma.FileName">
<summary>Gets or sets the name of the associated file.</summary>
<returns>The file name of the associated file.</returns>
</member>
<member name="P:System.CodeDom.CodeLinePragma.LineNumber">
<summary>Gets or sets the line number of the associated reference.</summary>
<returns>The line number.</returns>
</member>
<member name="T:System.CodeDom.CodeMemberEvent">
<summary>Represents a declaration for an event of a type.</summary>
</member>
<member name="M:System.CodeDom.CodeMemberEvent.#ctor">
<summary>Initializes a new instance of the <see cref="T:System.CodeDom.CodeMemberEvent"></see> class.</summary>
</member>
<member name="P:System.CodeDom.CodeMemberEvent.ImplementationTypes">
<summary>Gets or sets the data type that the member event implements.</summary>
<returns>A <see cref="T:System.CodeDom.CodeTypeReferenceCollection"></see> that indicates the data type or types that the member event implements.</returns>
</member>
<member name="P:System.CodeDom.CodeMemberEvent.PrivateImplementationType">
<summary>Gets or sets the privately implemented data type, if any.</summary>
<returns>A <see cref="T:System.CodeDom.CodeTypeReference"></see> that indicates the data type that the event privately implements.</returns>
</member>
<member name="P:System.CodeDom.CodeMemberEvent.Type">
<summary>Gets or sets the data type of the delegate type that handles the event.</summary>
<returns>A <see cref="T:System.CodeDom.CodeTypeReference"></see> that indicates the delegate type that handles the event.</returns>
</member>
<member name="T:System.CodeDom.CodeMemberField">
<summary>Represents a declaration for a field of a type.</summary>
</member>
<member name="M:System.CodeDom.CodeMemberField.#ctor">
<summary>Initializes a new instance of the <see cref="T:System.CodeDom.CodeMemberField"></see> class.</summary>
</member>
<member name="M:System.CodeDom.CodeMemberField.#ctor(System.CodeDom.CodeTypeReference,System.String)">
<summary>Initializes a new instance of the <see cref="T:System.CodeDom.CodeMemberField"></see> class using the specified field type and field name.</summary>
<param name="type">An object that indicates the type of the field.</param>
<param name="name">The name of the field.</param>
</member>
<member name="M:System.CodeDom.CodeMemberField.#ctor(System.String,System.String)">
<summary>Initializes a new instance of the <see cref="T:System.CodeDom.CodeMemberField"></see> class using the specified field type and field name.</summary>
<param name="type">The type of the field.</param>
<param name="name">The name of the field.</param>
</member>
<member name="M:System.CodeDom.CodeMemberField.#ctor(System.Type,System.String)">
<summary>Initializes a new instance of the <see cref="T:System.CodeDom.CodeMemberField"></see> class using the specified field type and field name.</summary>
<param name="type">The type of the field.</param>
<param name="name">The name of the field.</param>
</member>
<member name="P:System.CodeDom.CodeMemberField.InitExpression">
<summary>Gets or sets the initialization expression for the field.</summary>
<returns>The initialization expression for the field.</returns>
</member>
<member name="P:System.CodeDom.CodeMemberField.Type">
<summary>Gets or sets the type of the field.</summary>
<returns>The type of the field.</returns>
</member>
<member name="T:System.CodeDom.CodeMemberMethod">
<summary>Represents a declaration for a method of a type.</summary>
</member>
<member name="M:System.CodeDom.CodeMemberMethod.#ctor">
<summary>Initializes a new instance of the <see cref="T:System.CodeDom.CodeMemberMethod"></see> class.</summary>
</member>
<member name="P:System.CodeDom.CodeMemberMethod.ImplementationTypes">
<summary>Gets the data types of the interfaces implemented by this method, unless it is a private method implementation, which is indicated by the <see cref="P:System.CodeDom.CodeMemberMethod.PrivateImplementationType"></see> property.</summary>
<returns>A <see cref="T:System.CodeDom.CodeTypeReferenceCollection"></see> that indicates the interfaces implemented by this method.</returns>
</member>
<member name="P:System.CodeDom.CodeMemberMethod.Parameters">
<summary>Gets the parameter declarations for the method.</summary>
<returns>A <see cref="T:System.CodeDom.CodeParameterDeclarationExpressionCollection"></see> that indicates the method parameters.</returns>
</member>
<member name="E:System.CodeDom.CodeMemberMethod.PopulateImplementationTypes">
<summary>An event that will be raised the first time the <see cref="P:System.CodeDom.CodeMemberMethod.ImplementationTypes"></see> collection is accessed.</summary>
<returns></returns>
</member>
<member name="E:System.CodeDom.CodeMemberMethod.PopulateParameters">
<summary>An event that will be raised the first time the <see cref="P:System.CodeDom.CodeMemberMethod.Parameters"></see> collection is accessed.</summary>
<returns></returns>
</member>
<member name="E:System.CodeDom.CodeMemberMethod.PopulateStatements">
<summary>An event that will be raised the first time the <see cref="P:System.CodeDom.CodeMemberMethod.Statements"></see> collection is accessed.</summary>
<returns></returns>
</member>
<member name="P:System.CodeDom.CodeMemberMethod.PrivateImplementationType">
<summary>Gets or sets the data type of the interface this method, if private, implements a method of, if any.</summary>
<returns>A <see cref="T:System.CodeDom.CodeTypeReference"></see> that indicates the data type of the interface with the method that the private method whose declaration is represented by this <see cref="T:System.CodeDom.CodeMemberMethod"></see> implements.</returns>
</member>
<member name="P:System.CodeDom.CodeMemberMethod.ReturnType">
<summary>Gets or sets the data type of the return value of the method.</summary>
<returns>A <see cref="T:System.CodeDom.CodeTypeReference"></see> that indicates the data type of the value returned by the method.</returns>
</member>
<member name="P:System.CodeDom.CodeMemberMethod.ReturnTypeCustomAttributes">
<summary>Gets the custom attributes of the return type of the method.</summary>
<returns>A <see cref="T:System.CodeDom.CodeAttributeDeclarationCollection"></see> that indicates the custom attributes.</returns>
</member>
<member name="P:System.CodeDom.CodeMemberMethod.Statements">
<summary>Gets the statements within the method.</summary>
<returns>A <see cref="T:System.CodeDom.CodeStatementCollection"></see> that indicates the statements within the method.</returns>
</member>
<member name="P:System.CodeDom.CodeMemberMethod.TypeParameters">
<summary>Gets the type parameters for the current generic method.</summary>
<returns>A <see cref="T:System.CodeDom.CodeTypeParameterCollection"></see> that contains the type parameters for the generic method.</returns>
</member>
<member name="T:System.CodeDom.CodeMemberProperty">
<summary>Represents a declaration for a property of a type.</summary>
</member>
<member name="M:System.CodeDom.CodeMemberProperty.#ctor">
<summary>Initializes a new instance of the <see cref="T:System.CodeDom.CodeMemberProperty"></see> class.</summary>
</member>
<member name="P:System.CodeDom.CodeMemberProperty.GetStatements">
<summary>Gets the collection of get statements for the property.</summary>
<returns>A <see cref="T:System.CodeDom.CodeStatementCollection"></see> that contains the get statements for the member property.</returns>
</member>
<member name="P:System.CodeDom.CodeMemberProperty.HasGet">
<summary>Gets or sets a value indicating whether the property has a get method accessor.</summary>
<returns>true if the Count property of the <see cref="P:System.CodeDom.CodeMemberProperty.GetStatements"></see> collection is non-zero, or if the value of this property has been set to true; otherwise, false.</returns>
</member>
<member name="P:System.CodeDom.CodeMemberProperty.HasSet">
<summary>Gets or sets a value indicating whether the property has a set method accessor.</summary>
<returns>true if the <see cref="P:System.Collections.CollectionBase.Count"></see> property of the <see cref="P:System.CodeDom.CodeMemberProperty.SetStatements"></see> collection is non-zero; otherwise, false.</returns>
</member>
<member name="P:System.CodeDom.CodeMemberProperty.ImplementationTypes">
<summary>Gets the data types of any interfaces that the property implements.</summary>
<returns>A <see cref="T:System.CodeDom.CodeTypeReferenceCollection"></see> that indicates the data types the property implements.</returns>
</member>
<member name="P:System.CodeDom.CodeMemberProperty.Parameters">
<summary>Gets the collection of declaration expressions for the property.</summary>
<returns>A <see cref="T:System.CodeDom.CodeParameterDeclarationExpressionCollection"></see> that indicates the declaration expressions for the property.</returns>
</member>
<member name="P:System.CodeDom.CodeMemberProperty.PrivateImplementationType">
<summary>Gets or sets the data type of the interface, if any, this property, if private, implements.</summary>
<returns>A <see cref="T:System.CodeDom.CodeTypeReference"></see> that indicates the data type of the interface, if any, the property, if private, implements.</returns>
</member>
<member name="P:System.CodeDom.CodeMemberProperty.SetStatements">
<summary>Gets the collection of set statements for the property.</summary>
<returns>A <see cref="T:System.CodeDom.CodeStatementCollection"></see> that contains the set statements for the member property.</returns>
</member>
<member name="P:System.CodeDom.CodeMemberProperty.Type">
<summary>Gets or sets the data type of the property.</summary>
<returns>A <see cref="T:System.CodeDom.CodeTypeReference"></see> that indicates the data type of the property.</returns>
</member>
<member name="T:System.CodeDom.CodeMethodInvokeExpression">
<summary>Represents an expression that invokes a method.</summary>
</member>
<member name="M:System.CodeDom.CodeMethodInvokeExpression.#ctor">
<summary>Initializes a new instance of the <see cref="T:System.CodeDom.CodeMethodInvokeExpression"></see> class.</summary>
</member>
<member name="M:System.CodeDom.CodeMethodInvokeExpression.#ctor(System.CodeDom.CodeMethodReferenceExpression,System.CodeDom.CodeExpression[])">
<summary>Initializes a new instance of the <see cref="T:System.CodeDom.CodeMethodInvokeExpression"></see> class using the specified method and parameters.</summary>
<param name="method">A <see cref="T:System.CodeDom.CodeMethodReferenceExpression"></see> that indicates the method to invoke.</param>
<param name="parameters">An array of <see cref="T:System.CodeDom.CodeExpression"></see> objects that indicate the parameters with which to invoke the method.</param>
</member>
<member name="M:System.CodeDom.CodeMethodInvokeExpression.#ctor(System.CodeDom.CodeExpression,System.String,System.CodeDom.CodeExpression[])">
<summary>Initializes a new instance of the <see cref="T:System.CodeDom.CodeMethodInvokeExpression"></see> class using the specified target object, method name, and parameters.</summary>
<param name="targetObject">A <see cref="T:System.CodeDom.CodeExpression"></see> that indicates the target object with the method to invoke.</param>
<param name="methodName">The name of the method to invoke.</param>
<param name="parameters">An array of <see cref="T:System.CodeDom.CodeExpression"></see> objects that indicate the parameters to call the method with.</param>
</member>
<member name="P:System.CodeDom.CodeMethodInvokeExpression.Method">
<summary>Gets or sets the method to invoke.</summary>
<returns>A <see cref="T:System.CodeDom.CodeMethodReferenceExpression"></see> that indicates the method to invoke.</returns>
</member>
<member name="P:System.CodeDom.CodeMethodInvokeExpression.Parameters">
<summary>Gets the parameters to invoke the method with.</summary>
<returns>A <see cref="T:System.CodeDom.CodeExpressionCollection"></see> that indicates the parameters to invoke the method with.</returns>
</member>
<member name="T:System.CodeDom.CodeMethodReferenceExpression">
<summary>Represents a reference to a method.</summary>
</member>
<member name="M:System.CodeDom.CodeMethodReferenceExpression.#ctor">
<summary>Initializes a new instance of the <see cref="T:System.CodeDom.CodeMethodReferenceExpression"></see> class.</summary>
</member>
<member name="M:System.CodeDom.CodeMethodReferenceExpression.#ctor(System.CodeDom.CodeExpression,System.String)">
<summary>Initializes a new instance of the <see cref="T:System.CodeDom.CodeMethodReferenceExpression"></see> class using the specified target object and method name.</summary>
<param name="targetObject">A <see cref="T:System.CodeDom.CodeExpression"></see> that indicates the object to target.</param>
<param name="methodName">The name of the method to call.</param>
</member>
<member name="M:System.CodeDom.CodeMethodReferenceExpression.#ctor(System.CodeDom.CodeExpression,System.String,System.CodeDom.CodeTypeReference[])">
<summary>Initializes a new instance of the <see cref="T:System.CodeDom.CodeMethodReferenceExpression"></see> class using the specified target object, method name, and generic type arguments.</summary>
<param name="targetObject">A <see cref="T:System.CodeDom.CodeExpression"></see> that indicates the object to target.</param>
<param name="methodName">The name of the method to call.</param>
<param name="typeParameters">An array of <see cref="T:System.CodeDom.CodeTypeReference"></see> values that specify the <see cref="P:System.CodeDom.CodeMethodReferenceExpression.TypeArguments"></see> for this <see cref="T:System.CodeDom.CodeMethodReferenceExpression"></see>.</param>
</member>
<member name="P:System.CodeDom.CodeMethodReferenceExpression.MethodName">
<summary>Gets or sets the name of the method to reference.</summary>
<returns>The name of the method to reference.</returns>
</member>
<member name="P:System.CodeDom.CodeMethodReferenceExpression.TargetObject">
<summary>Gets or sets the expression that indicates the method to reference.</summary>
<returns>A <see cref="T:System.CodeDom.CodeExpression"></see> that represents the method to reference.</returns>
</member>
<member name="P:System.CodeDom.CodeMethodReferenceExpression.TypeArguments">
<summary>Gets the type arguments for the current generic method reference expression.</summary>
<returns>A <see cref="T:System.CodeDom.CodeTypeReferenceCollection"></see> containing the type arguments for the current code <see cref="T:System.CodeDom.CodeMethodReferenceExpression"></see>.</returns>
</member>
<member name="T:System.CodeDom.CodeMethodReturnStatement">
<summary>Represents a return value statement.</summary>
</member>
<member name="M:System.CodeDom.CodeMethodReturnStatement.#ctor">
<summary>Initializes a new instance of the <see cref="T:System.CodeDom.CodeMethodReturnStatement"></see> class.</summary>
</member>
<member name="M:System.CodeDom.CodeMethodReturnStatement.#ctor(System.CodeDom.CodeExpression)">
<summary>Initializes a new instance of the <see cref="T:System.CodeDom.CodeMethodReturnStatement"></see> class using the specified expression.</summary>
<param name="expression">A <see cref="T:System.CodeDom.CodeExpression"></see> that indicates the return value.</param>
</member>
<member name="P:System.CodeDom.CodeMethodReturnStatement.Expression">
<summary>Gets or sets the return value.</summary>
<returns>A <see cref="T:System.CodeDom.CodeExpression"></see> that indicates the value to return for the return statement, or null if the statement is part of a subroutine.</returns>
</member>
<member name="T:System.CodeDom.CodeNamespace">
<summary>Represents a namespace declaration.</summary>
</member>
<member name="M:System.CodeDom.CodeNamespace.#ctor">
<summary>Initializes a new instance of the <see cref="T:System.CodeDom.CodeNamespace"></see> class.</summary>
</member>
<member name="M:System.CodeDom.CodeNamespace.#ctor(System.String)">
<summary>Initializes a new instance of the <see cref="T:System.CodeDom.CodeNamespace"></see> class using the specified name.</summary>
<param name="name">The name of the namespace being declared.</param>
</member>
<member name="P:System.CodeDom.CodeNamespace.Comments">
<summary>Gets the comments for the namespace.</summary>
<returns>A <see cref="T:System.CodeDom.CodeCommentStatementCollection"></see> that indicates the comments for the namespace.</returns>
</member>
<member name="P:System.CodeDom.CodeNamespace.Imports">
<summary>Gets the collection of namespace import directives used by the namespace.</summary>
<returns>A <see cref="T:System.CodeDom.CodeNamespaceImportCollection"></see> that indicates the namespace import directives used by the namespace.</returns>
</member>
<member name="P:System.CodeDom.CodeNamespace.Name">
<summary>Gets or sets the name of the namespace.</summary>
<returns>The name of the namespace.</returns>
</member>
<member name="E:System.CodeDom.CodeNamespace.PopulateComments">
<summary>An event that will be raised the first time the <see cref="P:System.CodeDom.CodeNamespace.Comments"></see> collection is accessed.</summary>
<returns></returns>
</member>
<member name="E:System.CodeDom.CodeNamespace.PopulateImports">
<summary>An event that will be raised the first time the <see cref="P:System.CodeDom.CodeNamespace.Imports"></see> collection is accessed.</summary>
<returns></returns>
</member>
<member name="E:System.CodeDom.CodeNamespace.PopulateTypes">
<summary>An event that will be raised the first time the <see cref="P:System.CodeDom.CodeNamespace.Types"></see> collection is accessed.</summary>
<returns></returns>
</member>
<member name="P:System.CodeDom.CodeNamespace.Types">
<summary>Gets the collection of types that the namespace contains.</summary>
<returns>A <see cref="T:System.CodeDom.CodeTypeDeclarationCollection"></see> that indicates the types contained in the namespace.</returns>
</member>
<member name="T:System.CodeDom.CodeNamespaceCollection">
<summary>Represents a collection of <see cref="T:System.CodeDom.CodeNamespace"></see> objects.</summary>
</member>
<member name="M:System.CodeDom.CodeNamespaceCollection.#ctor">
<summary>Initializes a new instance of the <see cref="T:System.CodeDom.CodeNamespaceCollection"></see> class.</summary>
</member>
<member name="M:System.CodeDom.CodeNamespaceCollection.#ctor(System.CodeDom.CodeNamespace[])">
<summary>Initializes a new instance of the <see cref="T:System.CodeDom.CodeNamespaceCollection"></see> class that contains the specified array of <see cref="T:System.CodeDom.CodeNamespace"></see> objects.</summary>
<param name="value">An array of <see cref="T:System.CodeDom.CodeNamespace"></see> objects with which to initialize the collection.</param>
<exception cref="T:System.ArgumentNullException">One or more objects in the array are null.</exception>
</member>
<member name="M:System.CodeDom.CodeNamespaceCollection.#ctor(System.CodeDom.CodeNamespaceCollection)">
<summary>Initializes a new instance of the <see cref="T:System.CodeDom.CodeNamespaceCollection"></see> class that contains the elements of the specified source collection.</summary>
<param name="value">The <see cref="T:System.CodeDom.CodeNamespaceCollection"></see> with which to initialize the collection.</param>
<exception cref="T:System.ArgumentNullException"><paramref name="value">value</paramref> is null.</exception>
</member>
<member name="M:System.CodeDom.CodeNamespaceCollection.Add(System.CodeDom.CodeNamespace)">
<summary>Adds the specified <see cref="T:System.CodeDom.CodeNamespace"></see> object to the collection.</summary>
<param name="value">The <see cref="T:System.CodeDom.CodeNamespace"></see> to add.</param>
<returns>The index at which the new element was inserted.</returns>
</member>
<member name="M:System.CodeDom.CodeNamespaceCollection.AddRange(System.CodeDom.CodeNamespace[])">
<summary>Copies the elements of the specified <see cref="T:System.CodeDom.CodeNamespace"></see> array to the end of the collection.</summary>
<param name="value">An array of type <see cref="T:System.CodeDom.CodeNamespace"></see> that contains the objects to add to the collection.</param>
<exception cref="T:System.ArgumentNullException"><paramref name="value">value</paramref> is null.</exception>
</member>
<member name="M:System.CodeDom.CodeNamespaceCollection.AddRange(System.CodeDom.CodeNamespaceCollection)">
<summary>Adds the contents of the specified <see cref="T:System.CodeDom.CodeNamespaceCollection"></see> object to the end of the collection.</summary>
<param name="value">A <see cref="T:System.CodeDom.CodeNamespaceCollection"></see> that contains the objects to add to the collection.</param>
<exception cref="T:System.ArgumentNullException"><paramref name="value">value</paramref> is null.</exception>
</member>
<member name="M:System.CodeDom.CodeNamespaceCollection.Contains(System.CodeDom.CodeNamespace)">
<summary>Gets a value that indicates whether the collection contains the specified <see cref="T:System.CodeDom.CodeNamespace"></see> object.</summary>
<param name="value">The <see cref="T:System.CodeDom.CodeNamespace"></see> to search for in the collection.</param>
<returns>true if the <see cref="T:System.CodeDom.CodeNamespace"></see> is contained in the collection; otherwise, false.</returns>
</member>
<member name="M:System.CodeDom.CodeNamespaceCollection.CopyTo(System.CodeDom.CodeNamespace[],System.Int32)">
<summary>Copies the collection objects to a one-dimensional <see cref="T:System.Array"></see> instance, starting at the specified index.</summary>
<param name="array">The one-dimensional <see cref="T:System.Array"></see> that is the destination of the values copied from the collection.</param>
<param name="index">The index of the array at which to begin inserting.</param>
<exception cref="T:System.ArgumentException">The destination array is multidimensional. -or- The number of elements in the <see cref="T:System.CodeDom.CodeNamespaceCollection"></see> is greater than the available space between the index of the target array specified by the <paramref name="index">index</paramref> parameter and the end of the target array.</exception>
<exception cref="T:System.ArgumentNullException">The <paramref name="array">array</paramref> parameter is null.</exception>
<exception cref="T:System.ArgumentOutOfRangeException">The <paramref name="index">index</paramref> parameter is less than the target array's minimum index.</exception>
</member>
<member name="M:System.CodeDom.CodeNamespaceCollection.IndexOf(System.CodeDom.CodeNamespace)">
<summary>Gets the index of the specified <see cref="T:System.CodeDom.CodeNamespace"></see> object in the <see cref="T:System.CodeDom.CodeNamespaceCollection"></see>, if it exists in the collection.</summary>
<param name="value">The <see cref="T:System.CodeDom.CodeNamespace"></see> to locate.</param>
<returns>The index of the specified <see cref="T:System.CodeDom.CodeNamespace"></see>, if it is found, in the collection; otherwise, -1.</returns>
</member>
<member name="M:System.CodeDom.CodeNamespaceCollection.Insert(System.Int32,System.CodeDom.CodeNamespace)">
<summary>Inserts the specified <see cref="T:System.CodeDom.CodeNamespace"></see> object into the collection at the specified index.</summary>
<param name="index">The zero-based index where the new item should be inserted.</param>
<param name="value">The <see cref="T:System.CodeDom.CodeNamespace"></see> to insert.</param>
</member>
<member name="P:System.CodeDom.CodeNamespaceCollection.Item(System.Int32)">
<summary>Gets or sets the <see cref="T:System.CodeDom.CodeNamespaceCollection"></see> object at the specified index in the collection.</summary>
<param name="index">The index of the collection to access.</param>
<returns>A <see cref="T:System.CodeDom.CodeNamespace"></see> at each valid index.</returns>
<exception cref="T:System.ArgumentOutOfRangeException">The <paramref name="index">index</paramref> parameter is outside the valid range of indexes for the collection.</exception>
</member>
<member name="M:System.CodeDom.CodeNamespaceCollection.Remove(System.CodeDom.CodeNamespace)">
<summary>Removes the specified <see cref="T:System.CodeDom.CodeNamespace"></see> object from the collection.</summary>
<param name="value">The <see cref="T:System.CodeDom.CodeNamespace"></see> to remove from the collection.</param>
<exception cref="T:System.ArgumentException">The specified object is not found in the collection.</exception>
</member>
<member name="T:System.CodeDom.CodeNamespaceImport">
<summary>Represents a namespace import directive that indicates a namespace to use.</summary>
</member>
<member name="M:System.CodeDom.CodeNamespaceImport.#ctor">
<summary>Initializes a new instance of the <see cref="T:System.CodeDom.CodeNamespaceImport"></see> class.</summary>
</member>
<member name="M:System.CodeDom.CodeNamespaceImport.#ctor(System.String)">
<summary>Initializes a new instance of the <see cref="T:System.CodeDom.CodeNamespaceImport"></see> class using the specified namespace to import.</summary>
<param name="nameSpace">The name of the namespace to import.</param>
</member>
<member name="P:System.CodeDom.CodeNamespaceImport.LinePragma">
<summary>Gets or sets the line and file the statement occurs on.</summary>
<returns>A <see cref="T:System.CodeDom.CodeLinePragma"></see> that indicates the context of the statement.</returns>
</member>
<member name="P:System.CodeDom.CodeNamespaceImport.Namespace">
<summary>Gets or sets the namespace to import.</summary>
<returns>The name of the namespace to import.</returns>
</member>
<member name="T:System.CodeDom.CodeNamespaceImportCollection">
<summary>Represents a collection of <see cref="T:System.CodeDom.CodeNamespaceImport"></see> objects.</summary>
</member>
<member name="M:System.CodeDom.CodeNamespaceImportCollection.#ctor">
<summary>Initializes a new instance of the <see cref="T:System.CodeDom.CodeNamespaceImportCollection"></see> class.</summary>
</member>
<member name="M:System.CodeDom.CodeNamespaceImportCollection.Add(System.CodeDom.CodeNamespaceImport)">
<summary>Adds a <see cref="T:System.CodeDom.CodeNamespaceImport"></see> object to the collection.</summary>
<param name="value">The <see cref="T:System.CodeDom.CodeNamespaceImport"></see> object to add to the collection.</param>
</member>
<member name="M:System.CodeDom.CodeNamespaceImportCollection.AddRange(System.CodeDom.CodeNamespaceImport[])">
<summary>Adds a set of <see cref="T:System.CodeDom.CodeNamespaceImport"></see> objects to the collection.</summary>
<param name="value">An array of type <see cref="T:System.CodeDom.CodeNamespaceImport"></see> that contains the objects to add to the collection.</param>
<exception cref="T:System.ArgumentNullException"><paramref name="value">value</paramref> is null.</exception>
</member>
<member name="M:System.CodeDom.CodeNamespaceImportCollection.Clear">
<summary>Clears the collection of members.</summary>
</member>
<member name="P:System.CodeDom.CodeNamespaceImportCollection.Count">
<summary>Gets the number of namespaces in the collection.</summary>
<returns>The number of namespaces in the collection.</returns>
</member>
<member name="M:System.CodeDom.CodeNamespaceImportCollection.GetEnumerator">
<summary>Gets an enumerator that enumerates the collection members.</summary>
<returns>An <see cref="T:System.Collections.IEnumerator"></see> that indicates the collection members.</returns>
</member>
<member name="P:System.CodeDom.CodeNamespaceImportCollection.Item(System.Int32)">
<summary>Gets or sets the <see cref="T:System.CodeDom.CodeNamespaceImport"></see> object at the specified index in the collection.</summary>
<param name="index">The index of the collection to access.</param>
<returns>A <see cref="T:System.CodeDom.CodeNamespaceImport"></see> object at each valid index.</returns>
<exception cref="T:System.ArgumentOutOfRangeException">The <paramref name="index">index</paramref> parameter is outside the valid range of indexes for the collection.</exception>
</member>
<member name="M:System.CodeDom.CodeNamespaceImportCollection.System#Collections#ICollection#CopyTo(System.Array,System.Int32)">
<summary>Copies the elements of the <see cref="T:System.Collections.ICollection"></see> to an <see cref="T:System.Array"></see>, starting at a particular <see cref="T:System.Array"></see> index.</summary>
<param name="array">The one-dimensional <see cref="T:System.Array"></see> that is the destination of the elements copied from the <see cref="T:System.Collections.ICollection"></see>. The array must have zero-based indexing.</param>
<param name="index">The zero-based index in array at which copying begins.</param>
</member>
<member name="P:System.CodeDom.CodeNamespaceImportCollection.System#Collections#ICollection#Count">
<summary>Gets the number of elements contained in the <see cref="T:System.Collections.ICollection"></see>.</summary>
<returns>The number of elements contained in the <see cref="T:System.Collections.ICollection"></see>.</returns>
</member>
<member name="P:System.CodeDom.CodeNamespaceImportCollection.System#Collections#ICollection#IsSynchronized">
<summary>Gets a value indicating whether access to the <see cref="T:System.Collections.ICollection"></see> is synchronized (thread safe).</summary>
<returns>true if access to the <see cref="T:System.Collections.ICollection"></see> is synchronized (thread safe); otherwise, false. This property always returns false.</returns>
</member>
<member name="P:System.CodeDom.CodeNamespaceImportCollection.System#Collections#ICollection#SyncRoot">
<summary>Gets an object that can be used to synchronize access to the <see cref="T:System.Collections.ICollection"></see>.</summary>
<returns>An object that can be used to synchronize access to the <see cref="T:System.Collections.ICollection"></see>. This property always returns null.</returns>
</member>
<member name="M:System.CodeDom.CodeNamespaceImportCollection.System#Collections#IEnumerable#GetEnumerator">
<summary>Returns an enumerator that can iterate through a collection.</summary>
<returns>An <see cref="T:System.Collections.IEnumerator"></see> that can be used to iterate through the collection.</returns>
</member>
<member name="M:System.CodeDom.CodeNamespaceImportCollection.System#Collections#IList#Add(System.Object)">
<summary>Adds an object to the <see cref="T:System.Collections.IList"></see>.</summary>
<param name="value">The <see cref="T:System.Object"></see> to add to the <see cref="T:System.Collections.IList"></see>.</param>
<returns>The position at which the new element was inserted.</returns>
</member>
<member name="M:System.CodeDom.CodeNamespaceImportCollection.System#Collections#IList#Clear">
<summary>Removes all items from the <see cref="T:System.Collections.IList"></see>.</summary>
</member>
<member name="M:System.CodeDom.CodeNamespaceImportCollection.System#Collections#IList#Contains(System.Object)">
<summary>Determines whether the <see cref="T:System.Collections.IList"></see> contains a specific value.</summary>
<param name="value">The <see cref="T:System.Object"></see> to locate in the <see cref="T:System.Collections.IList"></see>.</param>
<returns>true if the value is in the list; otherwise, false.</returns>
</member>
<member name="M:System.CodeDom.CodeNamespaceImportCollection.System#Collections#IList#IndexOf(System.Object)">
<summary>Determines the index of a specific item in the <see cref="T:System.Collections.IList"></see>.</summary>
<param name="value">The <see cref="T:System.Object"></see> to locate in the <see cref="T:System.Collections.IList"></see>.</param>
<returns>The index of <paramref name="value">value</paramref> if it is found in the list; otherwise, -1.</returns>
</member>
<member name="M:System.CodeDom.CodeNamespaceImportCollection.System#Collections#IList#Insert(System.Int32,System.Object)">
<summary>Inserts an item in the <see cref="T:System.Collections.IList"></see> at the specified position.</summary>
<param name="index">The zero-based index at which value should be inserted.</param>
<param name="value">The <see cref="T:System.Object"></see> to insert into the <see cref="T:System.Collections.IList"></see>.</param>
</member>
<member name="P:System.CodeDom.CodeNamespaceImportCollection.System#Collections#IList#IsFixedSize">
<summary>Gets a value indicating whether the <see cref="T:System.Collections.IList"></see> has a fixed size.</summary>
<returns>true if the <see cref="T:System.Collections.IList"></see> has a fixed size; otherwise, false. This property always returns false.</returns>
</member>
<member name="P:System.CodeDom.CodeNamespaceImportCollection.System#Collections#IList#IsReadOnly">
<summary>Gets a value indicating whether the <see cref="T:System.Collections.IList"></see> is read-only.</summary>
<returns>true if the <see cref="T:System.Collections.IList"></see> is read-only; otherwise, false. This property always returns false.</returns>
</member>
<member name="P:System.CodeDom.CodeNamespaceImportCollection.System#Collections#IList#Item(System.Int32)">
<summary>Gets or sets the element at the specified index.</summary>
<param name="index">The zero-based index of the element to get or set.</param>
<returns>The element at the specified index.</returns>
</member>
<member name="M:System.CodeDom.CodeNamespaceImportCollection.System#Collections#IList#Remove(System.Object)">
<summary>Removes the first occurrence of a specific object from the <see cref="T:System.Collections.IList"></see>.</summary>
<param name="value">The <see cref="T:System.Object"></see> to remove from the <see cref="T:System.Collections.IList"></see>.</param>
</member>
<member name="M:System.CodeDom.CodeNamespaceImportCollection.System#Collections#IList#RemoveAt(System.Int32)">
<summary>Removes the element at the specified index of the <see cref="T:System.Collections.IList"></see>.</summary>
<param name="index">The zero-based index of the element to remove.</param>
</member>
<member name="T:System.CodeDom.CodeObject">
<summary>Provides a common base class for most Code Document Object Model (CodeDOM) objects.</summary>
</member>
<member name="M:System.CodeDom.CodeObject.#ctor">
<summary>Initializes a new instance of the <see cref="T:System.CodeDom.CodeObject"></see> class.</summary>
</member>
<member name="P:System.CodeDom.CodeObject.UserData">
<summary>Gets the user-definable data for the current object.</summary>
<returns>An <see cref="T:System.Collections.IDictionary"></see> containing user data for the current object.</returns>
</member>
<member name="T:System.CodeDom.CodeObjectCreateExpression">
<summary>Represents an expression that creates a new instance of a type.</summary>
</member>
<member name="M:System.CodeDom.CodeObjectCreateExpression.#ctor">
<summary>Initializes a new instance of the <see cref="T:System.CodeDom.CodeObjectCreateExpression"></see> class.</summary>
</member>
<member name="M:System.CodeDom.CodeObjectCreateExpression.#ctor(System.CodeDom.CodeTypeReference,System.CodeDom.CodeExpression[])">
<summary>Initializes a new instance of the <see cref="T:System.CodeDom.CodeObjectCreateExpression"></see> class using the specified type and parameters.</summary>
<param name="createType">A <see cref="T:System.CodeDom.CodeTypeReference"></see> that indicates the data type of the object to create.</param>
<param name="parameters">An array of <see cref="T:System.CodeDom.CodeExpression"></see> objects that indicates the parameters to use to create the object.</param>
</member>
<member name="M:System.CodeDom.CodeObjectCreateExpression.#ctor(System.String,System.CodeDom.CodeExpression[])">
<summary>Initializes a new instance of the <see cref="T:System.CodeDom.CodeObjectCreateExpression"></see> class using the specified type and parameters.</summary>
<param name="createType">The name of the data type of object to create.</param>
<param name="parameters">An array of <see cref="T:System.CodeDom.CodeExpression"></see> objects that indicates the parameters to use to create the object.</param>
</member>
<member name="M:System.CodeDom.CodeObjectCreateExpression.#ctor(System.Type,System.CodeDom.CodeExpression[])">
<summary>Initializes a new instance of the <see cref="T:System.CodeDom.CodeObjectCreateExpression"></see> class using the specified type and parameters.</summary>
<param name="createType">The data type of the object to create.</param>
<param name="parameters">An array of <see cref="T:System.CodeDom.CodeExpression"></see> objects that indicates the parameters to use to create the object.</param>
</member>
<member name="P:System.CodeDom.CodeObjectCreateExpression.CreateType">
<summary>Gets or sets the data type of the object to create.</summary>
<returns>A <see cref="T:System.CodeDom.CodeTypeReference"></see> to the data type of the object to create.</returns>
</member>
<member name="P:System.CodeDom.CodeObjectCreateExpression.Parameters">
<summary>Gets or sets the parameters to use in creating the object.</summary>
<returns>A <see cref="T:System.CodeDom.CodeExpressionCollection"></see> that indicates the parameters to use when creating the object.</returns>
</member>
<member name="T:System.CodeDom.CodeParameterDeclarationExpression">
<summary>Represents a parameter declaration for a method, property, or constructor.</summary>
</member>
<member name="M:System.CodeDom.CodeParameterDeclarationExpression.#ctor">
<summary>Initializes a new instance of the <see cref="T:System.CodeDom.CodeParameterDeclarationExpression"></see> class.</summary>
</member>
<member name="M:System.CodeDom.CodeParameterDeclarationExpression.#ctor(System.CodeDom.CodeTypeReference,System.String)">
<summary>Initializes a new instance of the <see cref="T:System.CodeDom.CodeParameterDeclarationExpression"></see> class using the specified parameter type and name.</summary>
<param name="type">An object that indicates the type of the parameter to declare.</param>
<param name="name">The name of the parameter to declare.</param>
</member>
<member name="M:System.CodeDom.CodeParameterDeclarationExpression.#ctor(System.String,System.String)">
<summary>Initializes a new instance of the <see cref="T:System.CodeDom.CodeParameterDeclarationExpression"></see> class using the specified parameter type and name.</summary>
<param name="type">The type of the parameter to declare.</param>
<param name="name">The name of the parameter to declare.</param>
</member>
<member name="M:System.CodeDom.CodeParameterDeclarationExpression.#ctor(System.Type,System.String)">
<summary>Initializes a new instance of the <see cref="T:System.CodeDom.CodeParameterDeclarationExpression"></see> class using the specified parameter type and name.</summary>
<param name="type">The type of the parameter to declare.</param>
<param name="name">The name of the parameter to declare.</param>
</member>
<member name="P:System.CodeDom.CodeParameterDeclarationExpression.CustomAttributes">
<summary>Gets or sets the custom attributes for the parameter declaration.</summary>
<returns>An object that indicates the custom attributes.</returns>
</member>
<member name="P:System.CodeDom.CodeParameterDeclarationExpression.Direction">
<summary>Gets or sets the direction of the field.</summary>
<returns>An object that indicates the direction of the field.</returns>
</member>
<member name="P:System.CodeDom.CodeParameterDeclarationExpression.Name">
<summary>Gets or sets the name of the parameter.</summary>
<returns>The name of the parameter.</returns>
</member>
<member name="P:System.CodeDom.CodeParameterDeclarationExpression.Type">
<summary>Gets or sets the type of the parameter.</summary>
<returns>The type of the parameter.</returns>
</member>
<member name="T:System.CodeDom.CodeParameterDeclarationExpressionCollection">
<summary>Represents a collection of <see cref="T:System.CodeDom.CodeParameterDeclarationExpression"></see> objects.</summary>
</member>
<member name="M:System.CodeDom.CodeParameterDeclarationExpressionCollection.#ctor">
<summary>Initializes a new instance of the <see cref="T:System.CodeDom.CodeParameterDeclarationExpressionCollection"></see> class.</summary>
</member>
<member name="M:System.CodeDom.CodeParameterDeclarationExpressionCollection.#ctor(System.CodeDom.CodeParameterDeclarationExpression[])">
<summary>Initializes a new instance of the <see cref="T:System.CodeDom.CodeParameterDeclarationExpressionCollection"></see> class containing the specified array of <see cref="T:System.CodeDom.CodeParameterDeclarationExpression"></see> objects.</summary>
<param name="value">An array of <see cref="T:System.CodeDom.CodeParameterDeclarationExpression"></see> objects with which to initialize the collection.</param>
<exception cref="T:System.ArgumentNullException">one or more objects in the array are null.</exception>
</member>
<member name="M:System.CodeDom.CodeParameterDeclarationExpressionCollection.#ctor(System.CodeDom.CodeParameterDeclarationExpressionCollection)">
<summary>Initializes a new instance of the <see cref="T:System.CodeDom.CodeParameterDeclarationExpressionCollection"></see> class containing the elements of the specified source collection.</summary>
<param name="value">A <see cref="T:System.CodeDom.CodeParameterDeclarationExpressionCollection"></see> with which to initialize the collection.</param>
<exception cref="T:System.ArgumentNullException"><paramref name="value">value</paramref> is null.</exception>
</member>
<member name="M:System.CodeDom.CodeParameterDeclarationExpressionCollection.Add(System.CodeDom.CodeParameterDeclarationExpression)">
<summary>Adds the specified <see cref="T:System.CodeDom.CodeParameterDeclarationExpression"></see> to the collection.</summary>
<param name="value">The <see cref="T:System.CodeDom.CodeParameterDeclarationExpression"></see> to add.</param>
<returns>The index at which the new element was inserted.</returns>
</member>
<member name="M:System.CodeDom.CodeParameterDeclarationExpressionCollection.AddRange(System.CodeDom.CodeParameterDeclarationExpression[])">
<summary>Copies the elements of the specified array to the end of the collection.</summary>
<param name="value">An array of type <see cref="T:System.CodeDom.CodeParameterDeclarationExpression"></see> containing the objects to add to the collection.</param>
<exception cref="T:System.ArgumentNullException"><paramref name="value">value</paramref> is null.</exception>
</member>
<member name="M:System.CodeDom.CodeParameterDeclarationExpressionCollection.AddRange(System.CodeDom.CodeParameterDeclarationExpressionCollection)">
<summary>Adds the contents of another <see cref="T:System.CodeDom.CodeParameterDeclarationExpressionCollection"></see> to the end of the collection.</summary>
<param name="value">A <see cref="T:System.CodeDom.CodeParameterDeclarationExpressionCollection"></see> containing the objects to add to the collection.</param>
<exception cref="T:System.ArgumentNullException"><paramref name="value">value</paramref> is null.</exception>
</member>
<member name="M:System.CodeDom.CodeParameterDeclarationExpressionCollection.Contains(System.CodeDom.CodeParameterDeclarationExpression)">
<summary>Gets a value indicating whether the collection contains the specified <see cref="T:System.CodeDom.CodeParameterDeclarationExpression"></see>.</summary>
<param name="value">A <see cref="T:System.CodeDom.CodeParameterDeclarationExpression"></see> to search for in the collection.</param>
<returns>true if the collection contains the specified object; otherwise, false.</returns>
</member>
<member name="M:System.CodeDom.CodeParameterDeclarationExpressionCollection.CopyTo(System.CodeDom.CodeParameterDeclarationExpression[],System.Int32)">
<summary>Copies the collection objects to a one-dimensional <see cref="T:System.Array"></see> instance beginning at the specified index.</summary>
<param name="array">The one-dimensional <see cref="T:System.Array"></see> that is the destination of the values copied from the collection.</param>
<param name="index">The index of the array at which to begin inserting.</param>
<exception cref="T:System.ArgumentException">The destination array is multidimensional. -or- The number of elements in the <see cref="T:System.CodeDom.CodeParameterDeclarationExpressionCollection"></see> is greater than the available space between the index of the target array specified by the <paramref name="index">index</paramref> parameter and the end of the target array.</exception>
<exception cref="T:System.ArgumentNullException">The <paramref name="array">array</paramref> parameter is null.</exception>
<exception cref="T:System.ArgumentOutOfRangeException">The <paramref name="index">index</paramref> parameter is less than the target array's minimum index.</exception>
</member>
<member name="M:System.CodeDom.CodeParameterDeclarationExpressionCollection.IndexOf(System.CodeDom.CodeParameterDeclarationExpression)">
<summary>Gets the index in the collection of the specified <see cref="T:System.CodeDom.CodeParameterDeclarationExpression"></see>, if it exists in the collection.</summary>
<param name="value">The <see cref="T:System.CodeDom.CodeParameterDeclarationExpression"></see> to locate in the collection.</param>
<returns>The index in the collection of the specified object, if found; otherwise, -1.</returns>
</member>
<member name="M:System.CodeDom.CodeParameterDeclarationExpressionCollection.Insert(System.Int32,System.CodeDom.CodeParameterDeclarationExpression)">
<summary>Inserts the specified <see cref="T:System.CodeDom.CodeParameterDeclarationExpression"></see> into the collection at the specified index.</summary>
<param name="index">The zero-based index where the specified object should be inserted.</param>
<param name="value">The <see cref="T:System.CodeDom.CodeParameterDeclarationExpression"></see> to insert.</param>
</member>
<member name="P:System.CodeDom.CodeParameterDeclarationExpressionCollection.Item(System.Int32)">
<summary>Gets or sets the <see cref="T:System.CodeDom.CodeParameterDeclarationExpression"></see> at the specified index in the collection.</summary>
<param name="index">The index of the collection to access.</param>
<returns>A <see cref="T:System.CodeDom.CodeParameterDeclarationExpression"></see> at each valid index.</returns>
<exception cref="T:System.ArgumentOutOfRangeException">The <paramref name="index">index</paramref> parameter is outside the valid range of indexes for the collection.</exception>
</member>
<member name="M:System.CodeDom.CodeParameterDeclarationExpressionCollection.Remove(System.CodeDom.CodeParameterDeclarationExpression)">
<summary>Removes the specified <see cref="T:System.CodeDom.CodeParameterDeclarationExpression"></see> from the collection.</summary>
<param name="value">The <see cref="T:System.CodeDom.CodeParameterDeclarationExpression"></see> to remove from the collection.</param>
<exception cref="T:System.ArgumentException">The specified object is not found in the collection.</exception>
</member>
<member name="T:System.CodeDom.CodePrimitiveExpression">
<summary>Represents a primitive data type value.</summary>
</member>
<member name="M:System.CodeDom.CodePrimitiveExpression.#ctor">
<summary>Initializes a new instance of the <see cref="T:System.CodeDom.CodePrimitiveExpression"></see> class.</summary>
</member>
<member name="M:System.CodeDom.CodePrimitiveExpression.#ctor(System.Object)">
<summary>Initializes a new instance of the <see cref="T:System.CodeDom.CodePrimitiveExpression"></see> class using the specified object.</summary>
<param name="value">The object to represent.</param>
</member>
<member name="P:System.CodeDom.CodePrimitiveExpression.Value">
<summary>Gets or sets the primitive data type to represent.</summary>
<returns>The primitive data type instance to represent the value of.</returns>
</member>
<member name="T:System.CodeDom.CodePropertyReferenceExpression">
<summary>Represents a reference to the value of a property.</summary>
</member>
<member name="M:System.CodeDom.CodePropertyReferenceExpression.#ctor">
<summary>Initializes a new instance of the <see cref="T:System.CodeDom.CodePropertyReferenceExpression"></see> class.</summary>
</member>
<member name="M:System.CodeDom.CodePropertyReferenceExpression.#ctor(System.CodeDom.CodeExpression,System.String)">
<summary>Initializes a new instance of the <see cref="T:System.CodeDom.CodePropertyReferenceExpression"></see> class using the specified target object and property name.</summary>
<param name="targetObject">A <see cref="T:System.CodeDom.CodeExpression"></see> that indicates the object that contains the property to reference.</param>
<param name="propertyName">The name of the property to reference.</param>
</member>
<member name="P:System.CodeDom.CodePropertyReferenceExpression.PropertyName">
<summary>Gets or sets the name of the property to reference.</summary>
<returns>The name of the property to reference.</returns>
</member>
<member name="P:System.CodeDom.CodePropertyReferenceExpression.TargetObject">
<summary>Gets or sets the object that contains the property to reference.</summary>
<returns>A <see cref="T:System.CodeDom.CodeExpression"></see> that indicates the object that contains the property to reference.</returns>
</member>
<member name="T:System.CodeDom.CodePropertySetValueReferenceExpression">
<summary>Represents the value argument of a property set method call within a property set method.</summary>
</member>
<member name="M:System.CodeDom.CodePropertySetValueReferenceExpression.#ctor">
<summary>Initializes a new instance of the <see cref="T:System.CodeDom.CodePropertySetValueReferenceExpression"></see> class.</summary>
</member>
<member name="T:System.CodeDom.CodeRegionDirective">
<summary>Specifies the name and mode for a code region.</summary>
</member>
<member name="M:System.CodeDom.CodeRegionDirective.#ctor">
<summary>Initializes a new instance of the <see cref="T:System.CodeDom.CodeRegionDirective"></see> class with default values.</summary>
</member>
<member name="M:System.CodeDom.CodeRegionDirective.#ctor(System.CodeDom.CodeRegionMode,System.String)">
<summary>Initializes a new instance of the <see cref="T:System.CodeDom.CodeRegionDirective"></see> class, specifying its mode and name.</summary>
<param name="regionMode">One of the <see cref="T:System.CodeDom.CodeRegionMode"></see> values.</param>
<param name="regionText">The name for the region.</param>
</member>
<member name="P:System.CodeDom.CodeRegionDirective.RegionMode">
<summary>Gets or sets the mode for the region directive.</summary>
<returns>One of the <see cref="T:System.CodeDom.CodeRegionMode"></see> values. The default is <see cref="F:System.CodeDom.CodeRegionMode.None"></see>.</returns>
</member>
<member name="P:System.CodeDom.CodeRegionDirective.RegionText">
<summary>Gets or sets the name of the region.</summary>
<returns>The name of the region.</returns>
</member>
<member name="T:System.CodeDom.CodeRegionMode">
<summary>Specifies the start or end of a code region.</summary>
</member>
<member name="F:System.CodeDom.CodeRegionMode.End">
<summary>End of the region.</summary>
<returns></returns>
</member>
<member name="F:System.CodeDom.CodeRegionMode.None">
<summary>Not used.</summary>
<returns></returns>
</member>
<member name="F:System.CodeDom.CodeRegionMode.Start">
<summary>Start of the region.</summary>
<returns></returns>
</member>
<member name="T:System.CodeDom.CodeRemoveEventStatement">
<summary>Represents a statement that removes an event handler.</summary>
</member>
<member name="M:System.CodeDom.CodeRemoveEventStatement.#ctor">
<summary>Initializes a new instance of the <see cref="T:System.CodeDom.CodeRemoveEventStatement"></see> class.</summary>
</member>
<member name="M:System.CodeDom.CodeRemoveEventStatement.#ctor(System.CodeDom.CodeEventReferenceExpression,System.CodeDom.CodeExpression)">
<summary>Initializes a new instance of the <see cref="T:System.CodeDom.CodeRemoveEventStatement"></see> class with the specified event and event handler.</summary>
<param name="eventRef">A <see cref="T:System.CodeDom.CodeEventReferenceExpression"></see> that indicates the event to detach the event handler from.</param>
<param name="listener">A <see cref="T:System.CodeDom.CodeExpression"></see> that indicates the event handler to remove.</param>
</member>
<member name="M:System.CodeDom.CodeRemoveEventStatement.#ctor(System.CodeDom.CodeExpression,System.String,System.CodeDom.CodeExpression)">
<summary>Initializes a new instance of the <see cref="T:System.CodeDom.CodeRemoveEventStatement"></see> class using the specified target object, event name, and event handler.</summary>
<param name="targetObject">A <see cref="T:System.CodeDom.CodeExpression"></see> that indicates the object that contains the event.</param>
<param name="eventName">The name of the event.</param>
<param name="listener">A <see cref="T:System.CodeDom.CodeExpression"></see> that indicates the event handler to remove.</param>
</member>
<member name="P:System.CodeDom.CodeRemoveEventStatement.Event">
<summary>Gets or sets the event to remove a listener from.</summary>
<returns>A <see cref="T:System.CodeDom.CodeEventReferenceExpression"></see> that indicates the event to remove a listener from.</returns>
</member>
<member name="P:System.CodeDom.CodeRemoveEventStatement.Listener">
<summary>Gets or sets the event handler to remove.</summary>
<returns>A <see cref="T:System.CodeDom.CodeExpression"></see> that indicates the event handler to remove.</returns>
</member>
<member name="T:System.CodeDom.CodeSnippetCompileUnit">
<summary>Represents a literal code fragment that can be compiled.</summary>
</member>
<member name="M:System.CodeDom.CodeSnippetCompileUnit.#ctor">
<summary>Initializes a new instance of the <see cref="T:System.CodeDom.CodeSnippetCompileUnit"></see> class.</summary>
</member>
<member name="M:System.CodeDom.CodeSnippetCompileUnit.#ctor(System.String)">
<summary>Initializes a new instance of the <see cref="T:System.CodeDom.CodeSnippetCompileUnit"></see> class.</summary>
<param name="value">The literal code fragment to represent.</param>
</member>
<member name="P:System.CodeDom.CodeSnippetCompileUnit.LinePragma">
<summary>Gets or sets the line and file information about where the code is located in a source code document.</summary>
<returns>A <see cref="T:System.CodeDom.CodeLinePragma"></see> that indicates the position of the code fragment.</returns>
</member>
<member name="P:System.CodeDom.CodeSnippetCompileUnit.Value">
<summary>Gets or sets the literal code fragment to represent.</summary>
<returns>The literal code fragment.</returns>
</member>
<member name="T:System.CodeDom.CodeSnippetExpression">
<summary>Represents a literal expression.</summary>
</member>
<member name="M:System.CodeDom.CodeSnippetExpression.#ctor">
<summary>Initializes a new instance of the <see cref="T:System.CodeDom.CodeSnippetExpression"></see> class.</summary>
</member>
<member name="M:System.CodeDom.CodeSnippetExpression.#ctor(System.String)">
<summary>Initializes a new instance of the <see cref="T:System.CodeDom.CodeSnippetExpression"></see> class using the specified literal expression.</summary>
<param name="value">The literal expression to represent.</param>
</member>
<member name="P:System.CodeDom.CodeSnippetExpression.Value">
<summary>Gets or sets the literal string of code.</summary>
<returns>The literal string.</returns>
</member>
</members>
</doc></span>