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
|
<?xml version="1.0" encoding="utf-8"?>
<doc>
<assembly>
<name>System.Configuration</name>
</assembly>
<members>
<member name="E:System.Configuration.Internal.IInternalConfigRoot.ConfigChanged">
<summary>Represents the method that handles the <see cref="E:System.Configuration.Internal.IInternalConfigRoot.ConfigChanged" /> event of an <see cref="T:System.Configuration.Internal.IInternalConfigRoot" /> object.</summary>
</member>
<member name="E:System.Configuration.Internal.IInternalConfigRoot.ConfigRemoved">
<summary>Represents the method that handles the <see cref="E:System.Configuration.Internal.IInternalConfigRoot.ConfigRemoved" /> event of a <see cref="T:System.Configuration.Internal.IInternalConfigRoot" /> object.</summary>
</member>
<member name="F:System.Configuration.ProtectedConfiguration.DataProtectionProviderName">
<summary>The name of the data protection provider.</summary>
</member>
<member name="F:System.Configuration.ProtectedConfiguration.ProtectedDataSectionName">
<summary>The name of the protected data section.</summary>
</member>
<member name="F:System.Configuration.ProtectedConfiguration.RsaProviderName">
<summary>The name of the RSA provider.</summary>
</member>
<member name="F:System.Configuration.TimeSpanValidatorAttribute.TimeSpanMaxValue">
<summary>Gets the absolute maximum value allowed.</summary>
</member>
<member name="F:System.Configuration.TimeSpanValidatorAttribute.TimeSpanMinValue">
<summary>Gets the absolute minimum value allowed.</summary>
</member>
<member name="M:System.Configuration.AppSettingsSection.#ctor">
<summary>Initializes a new instance of the <see cref="T:System.Configuration.AppSettingsSection" /> class.</summary>
</member>
<member name="M:System.Configuration.CallbackValidator.#ctor(System.Type,System.Configuration.ValidatorCallback)">
<summary>Initializes a new instance of the <see cref="T:System.Configuration.CallbackValidator" /> class.</summary>
<param name="type">The type of object that will be validated.</param>
<param name="callback">The <see cref="T:System.Configuration.ValidatorCallback" /> used as the delegate.</param>
<exception cref="T:System.ArgumentNullException">
<paramref name="type " />is <see langword="null" />.</exception>
</member>
<member name="M:System.Configuration.CallbackValidator.CanValidate(System.Type)">
<summary>Determines whether the type of the object can be validated.</summary>
<param name="type">The type of object.</param>
<returns>
<see langword="true" /> if the <see langword="type" /> parameter matches the type used as the first parameter when creating an instance of <see cref="T:System.Configuration.CallbackValidator" />; otherwise, <see langword="false" />. </returns>
</member>
<member name="M:System.Configuration.CallbackValidator.Validate(System.Object)">
<summary>Determines whether the value of an object is valid.</summary>
<param name="value">The value of an object.</param>
</member>
<member name="M:System.Configuration.CallbackValidatorAttribute.#ctor">
<summary>Initializes a new instance of the <see cref="T:System.Configuration.CallbackValidatorAttribute" /> class. </summary>
</member>
<member name="M:System.Configuration.CommaDelimitedStringCollection.#ctor">
<summary>Creates a new instance of the <see cref="T:System.Configuration.CommaDelimitedStringCollection" /> class.</summary>
</member>
<member name="M:System.Configuration.CommaDelimitedStringCollection.Add(System.String)">
<summary>Adds a string to the comma-delimited collection.</summary>
<param name="value">A string value.</param>
</member>
<member name="M:System.Configuration.CommaDelimitedStringCollection.AddRange(System.String[])">
<summary>Adds all the strings in a string array to the collection.</summary>
<param name="range">An array of strings to add to the collection.</param>
</member>
<member name="M:System.Configuration.CommaDelimitedStringCollection.Clear">
<summary>Clears the collection.</summary>
</member>
<member name="M:System.Configuration.CommaDelimitedStringCollection.Clone">
<summary>Creates a copy of the collection.</summary>
<returns>A copy of the <see cref="T:System.Configuration.CommaDelimitedStringCollection" />.</returns>
</member>
<member name="M:System.Configuration.CommaDelimitedStringCollection.Insert(System.Int32,System.String)">
<summary>Adds a string element to the collection at the specified index.</summary>
<param name="index">The index in the collection at which the new element will be added.</param>
<param name="value">The value of the new element to add to the collection.</param>
</member>
<member name="M:System.Configuration.CommaDelimitedStringCollection.Remove(System.String)">
<summary>Removes a string element from the collection.</summary>
<param name="value">The string to remove.</param>
</member>
<member name="M:System.Configuration.CommaDelimitedStringCollection.SetReadOnly">
<summary>Sets the collection object to read-only.</summary>
</member>
<member name="M:System.Configuration.CommaDelimitedStringCollection.ToString">
<summary>Returns a string representation of the object.</summary>
<returns>A string representation of the object.</returns>
</member>
<member name="M:System.Configuration.CommaDelimitedStringCollectionConverter.#ctor">
<summary>Initializes a new instance of the <see cref="T:System.Configuration.CommaDelimitedStringCollectionConverter" /> class. </summary>
</member>
<member name="M:System.Configuration.CommaDelimitedStringCollectionConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object)">
<summary>Converts a <see cref="T:System.String" /> object to a <see cref="T:System.Configuration.CommaDelimitedStringCollection" /> object.</summary>
<param name="ctx">The <see cref="T:System.ComponentModel.ITypeDescriptorContext" /> used for type conversions.</param>
<param name="ci">The <see cref="T:System.Globalization.CultureInfo" /> used during conversion.</param>
<param name="data">The comma-separated <see cref="T:System.String" /> to convert.</param>
<returns>A <see cref="T:System.Configuration.CommaDelimitedStringCollection" /> containing the converted value.</returns>
</member>
<member name="M:System.Configuration.CommaDelimitedStringCollectionConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object,System.Type)">
<summary>Converts a <see cref="T:System.Configuration.CommaDelimitedStringCollection" /> object to a <see cref="T:System.String" /> object.</summary>
<param name="ctx">The <see cref="T:System.ComponentModel.ITypeDescriptorContext" /> used for type conversions.</param>
<param name="ci">The <see cref="T:System.Globalization.CultureInfo" /> used during conversion.</param>
<param name="value">The value to convert.</param>
<param name="type">The conversion type.</param>
<returns>The <see cref="T:System.String" /> representing the converted <paramref name="value" /> parameter, which is a <see cref="T:System.Configuration.CommaDelimitedStringCollection" />.</returns>
</member>
<member name="M:System.Configuration.Configuration.GetSection(System.String)">
<summary>Returns the specified <see cref="T:System.Configuration.ConfigurationSection" /> object.</summary>
<param name="sectionName">The path to the section to be returned.</param>
<returns>The specified <see cref="T:System.Configuration.ConfigurationSection" /> object.</returns>
</member>
<member name="M:System.Configuration.Configuration.GetSectionGroup(System.String)">
<summary>Gets the specified <see cref="T:System.Configuration.ConfigurationSectionGroup" /> object.</summary>
<param name="sectionGroupName">The path name of the <see cref="T:System.Configuration.ConfigurationSectionGroup" /> to return.</param>
<returns>The <see cref="T:System.Configuration.ConfigurationSectionGroup" /> specified.</returns>
</member>
<member name="M:System.Configuration.Configuration.Save">
<summary>Writes the configuration settings contained within this <see cref="T:System.Configuration.Configuration" /> object to the current XML configuration file.</summary>
<exception cref="T:System.Configuration.ConfigurationErrorsException">The configuration file could not be written to.- or -The configuration file has changed. </exception>
</member>
<member name="M:System.Configuration.Configuration.Save(System.Configuration.ConfigurationSaveMode)">
<summary>Writes the configuration settings contained within this <see cref="T:System.Configuration.Configuration" /> object to the current XML configuration file.</summary>
<param name="saveMode">A <see cref="T:System.Configuration.ConfigurationSaveMode" /> value that determines which property values to save.</param>
<exception cref="T:System.Configuration.ConfigurationErrorsException">The configuration file could not be written to.- or -The configuration file has changed. </exception>
</member>
<member name="M:System.Configuration.Configuration.Save(System.Configuration.ConfigurationSaveMode,System.Boolean)">
<summary>Writes the configuration settings contained within this <see cref="T:System.Configuration.Configuration" /> object to the current XML configuration file.</summary>
<param name="saveMode">A <see cref="T:System.Configuration.ConfigurationSaveMode" /> value that determines which property values to save.</param>
<param name="forceSaveAll">
<see langword="true" /> to save even if the configuration was not modified; otherwise, <see langword="false" />.</param>
<exception cref="T:System.Configuration.ConfigurationErrorsException">The configuration file could not be written to.- or -The configuration file has changed. </exception>
</member>
<member name="M:System.Configuration.Configuration.SaveAs(System.String)">
<summary>Writes the configuration settings contained within this <see cref="T:System.Configuration.Configuration" /> object to the specified XML configuration file.</summary>
<param name="filename">The path and file name to save the configuration file to.</param>
<exception cref="T:System.Configuration.ConfigurationErrorsException">The configuration file could not be written to.- or -The configuration file has changed. </exception>
</member>
<member name="M:System.Configuration.Configuration.SaveAs(System.String,System.Configuration.ConfigurationSaveMode)">
<summary>Writes the configuration settings contained within this <see cref="T:System.Configuration.Configuration" /> object to the specified XML configuration file.</summary>
<param name="filename">The path and file name to save the configuration file to.</param>
<param name="saveMode">A <see cref="T:System.Configuration.ConfigurationSaveMode" /> value that determines which property values to save.</param>
<exception cref="T:System.Configuration.ConfigurationErrorsException">The configuration file could not be written to.- or -The configuration file has changed. </exception>
</member>
<member name="M:System.Configuration.Configuration.SaveAs(System.String,System.Configuration.ConfigurationSaveMode,System.Boolean)">
<summary>Writes the configuration settings contained within this <see cref="T:System.Configuration.Configuration" /> object to the specified XML configuration file.</summary>
<param name="filename">The path and file name to save the configuration file to.</param>
<param name="saveMode">A <see cref="T:System.Configuration.ConfigurationSaveMode" /> value that determines which property values to save.</param>
<param name="forceSaveAll">
<see langword="true" /> to save even if the configuration was not modified; otherwise, <see langword="false" />.</param>
<exception cref="T:System.ArgumentException">
<paramref name="filename" /> is null or an empty string ("").</exception>
</member>
<member name="M:System.Configuration.ConfigurationBuilder.#ctor">
<summary>Initializes a new instance of the <see cref="T:System.Configuration.ConfigurationBuilder" /> class.</summary>
</member>
<member name="M:System.Configuration.ConfigurationBuilder.ProcessConfigurationSection(System.Configuration.ConfigurationSection)">
<summary>Accepts a <see cref="T:System.Configuration.ConfigurationSection" /> object from the configuration system and returns a modified or new <see cref="T:System.Configuration.ConfigurationSection" /> object for further use.</summary>
<param name="configSection">The <see cref="T:System.Configuration.ConfigurationSection" /> to process.</param>
<returns>The processed <see cref="T:System.Configuration.ConfigurationSection" />.</returns>
</member>
<member name="M:System.Configuration.ConfigurationBuilder.ProcessRawXml(System.Xml.XmlNode)">
<summary>Accepts an <see cref="T:System.Xml.XmlNode" /> representing the raw configuration section from a config file and returns a modified or new <see cref="T:System.Xml.XmlNode" /> for further use.</summary>
<param name="rawXml">The <see cref="T:System.Xml.XmlNode" /> to process.</param>
<returns>The processed <see cref="T:System.Xml.XmlNode" />.</returns>
</member>
<member name="M:System.Configuration.ConfigurationBuilderCollection.#ctor">
<summary>Initializes a new instance of the <see cref="T:System.Configuration.ConfigurationBuilderCollection" /> class.</summary>
</member>
<member name="M:System.Configuration.ConfigurationBuilderCollection.Add(System.Configuration.Provider.ProviderBase)">
<summary>Adds a <see cref="T:System.Configuration.ConfigurationBuilder" /> object to the <see cref="T:System.Configuration.ConfigurationBuilderCollection" /> object.</summary>
<param name="builder">The <see cref="T:System.Configuration.ConfigurationBuilder" /> object to add to the collection.</param>
<exception cref="T:System.ArgumentNullException">
<paramref name="builder" /> is <see langword="null" />.</exception>
<exception cref="T:System.ArgumentException">
The configuration provider in <paramref name="builder" /> must implement the class <see cref="T:System.Configuration.ConfigurationBuilder" />.</exception>
</member>
<member name="M:System.Configuration.ConfigurationBuilderSettings.#ctor">
<summary>Initializes a new instance of the <see cref="T:System.Configuration.ConfigurationBuilderSettings" /> class.</summary>
</member>
<member name="M:System.Configuration.ConfigurationBuildersSection.#ctor">
<summary>Initializes a new instance of the <see cref="T:System.Configuration.ConfigurationBuildersSection" /> class.</summary>
</member>
<member name="M:System.Configuration.ConfigurationBuildersSection.GetBuilderFromName(System.String)">
<summary>Returns a <see cref="T:System.Configuration.ConfigurationBuilder" /> object that has the provided configuration builder name.</summary>
<param name="builderName">A configuration builder name or a comma-separated list of names. If <paramref name="builderName" /> is a comma-separated list of <see cref="T:System.Configuration.ConfigurationBuilder" /> names, a special aggregate <see cref="T:System.Configuration.ConfigurationBuilder" /> object that references and applies all named configuration builders is returned.</param>
<returns>A <see cref="T:System.Configuration.ConfigurationBuilder" /> object that has the provided configuration <paramref name="builderName" />.</returns>
<exception cref="T:System.Exception">The <see cref="T:System.Configuration.ConfigurationBuilder" /> object from <paramref name="builderName" /> wasn't found.</exception>
<exception cref="T:System.Exception">The type specified doesn't extend the <see cref="T:System.Configuration.ConfigurationBuilder" /> class.</exception>
<exception cref="T:System.Exception">A configuration provider type can't be instantiated under a partially trusted security policy (<see cref="T:System.Security.AllowPartiallyTrustedCallersAttribute" /> is not present on the target assembly).</exception>
<exception cref="T:System.IO.FileNotFoundException">ConfigurationBuilders.IgnoreLoadFailure is disabled by default. If a bin-deployed configuration builder can't be found or instantiated for one of the sections read from the configuration file, a <see cref="T:System.IO.FileNotFoundException" /> is trapped and reported. If you wish to ignore load failures, enable ConfigurationBuilders.IgnoreLoadFailure.</exception>
<exception cref="T:System.TypeLoadException">ConfigurationBuilders.IgnoreLoadFailure is disabled by default. While loading a configuration builder if a <see cref="T:System.TypeLoadException" /> occurs for one of the sections read from the configuration file, a <see cref="T:System.TypeLoadException" /> is trapped and reported. If you wish to ignore load failures, enable ConfigurationBuilders.IgnoreLoadFailure.</exception>
</member>
<member name="M:System.Configuration.ConfigurationCollectionAttribute.#ctor(System.Type)">
<summary>Initializes a new instance of the <see cref="T:System.Configuration.ConfigurationCollectionAttribute" /> class.</summary>
<param name="itemType">The type of the property collection to create.</param>
<exception cref="T:System.ArgumentNullException">
<paramref name="itemType" /> is <see langword="null" />.</exception>
</member>
<member name="M:System.Configuration.ConfigurationConverterBase.#ctor">
<summary>Initializes a new instance of the <see cref="T:System.Configuration.ConfigurationConverterBase" /> class.</summary>
</member>
<member name="M:System.Configuration.ConfigurationConverterBase.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Type)">
<summary>Determines whether the conversion is allowed.</summary>
<param name="ctx">The <see cref="T:System.ComponentModel.ITypeDescriptorContext" /> object used for type conversions.</param>
<param name="type">The <see cref="T:System.Type" /> to convert from.</param>
<returns>
<see langword="true" /> if the conversion is allowed; otherwise, <see langword="false" />.</returns>
</member>
<member name="M:System.Configuration.ConfigurationConverterBase.CanConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Type)">
<summary>Determines whether the conversion is allowed.</summary>
<param name="ctx">The <see cref="T:System.ComponentModel.ITypeDescriptorContext" /> object used for type conversion.</param>
<param name="type">The type to convert to.</param>
<returns>
<see langword="true" /> if the conversion is allowed; otherwise, <see langword="false" />. </returns>
</member>
<member name="M:System.Configuration.ConfigurationElement.#ctor">
<summary>Initializes a new instance of the <see cref="T:System.Configuration.ConfigurationElement" /> class. </summary>
</member>
<member name="M:System.Configuration.ConfigurationElement.DeserializeElement(System.Xml.XmlReader,System.Boolean)">
<summary>Reads XML from the configuration file.</summary>
<param name="reader">The <see cref="T:System.Xml.XmlReader" /> that reads from the configuration file.</param>
<param name="serializeCollectionKey">
<see langword="true" /> to serialize only the collection key properties; otherwise, <see langword="false" />.</param>
<exception cref="T:System.Configuration.ConfigurationErrorsException">The element to read is locked.- or -An attribute of the current node is not recognized.- or -The lock status of the current node cannot be determined. </exception>
</member>
<member name="M:System.Configuration.ConfigurationElement.Equals(System.Object)">
<summary>Compares the current <see cref="T:System.Configuration.ConfigurationElement" /> instance to the specified object.</summary>
<param name="compareTo">The object to compare with.</param>
<returns>
<see langword="true" /> if the object to compare with is equal to the current <see cref="T:System.Configuration.ConfigurationElement" /> instance; otherwise, <see langword="false" />. The default is <see langword="false" />. </returns>
</member>
<member name="M:System.Configuration.ConfigurationElement.GetHashCode">
<summary>Gets a unique value representing the current <see cref="T:System.Configuration.ConfigurationElement" /> instance.</summary>
<returns>A unique value representing the current <see cref="T:System.Configuration.ConfigurationElement" /> instance.</returns>
</member>
<member name="M:System.Configuration.ConfigurationElement.GetTransformedAssemblyString(System.String)">
<summary>Returns the transformed version of the specified assembly name. </summary>
<param name="assemblyName">The name of the assembly.</param>
<returns>The transformed version of the assembly name. If no transformer is available, the <paramref name="assemblyName" /> parameter value is returned unchanged. The <see cref="P:System.Configuration.Configuration.TypeStringTransformer" /> property is <see langword="null" /> if no transformer is available.</returns>
</member>
<member name="M:System.Configuration.ConfigurationElement.GetTransformedTypeString(System.String)">
<summary>Returns the transformed version of the specified type name.</summary>
<param name="typeName">The name of the type.</param>
<returns>The transformed version of the specified type name. If no transformer is available, the <paramref name="typeName" /> parameter value is returned unchanged. The <see cref="P:System.Configuration.Configuration.TypeStringTransformer" /> property is <see langword="null" /> if no transformer is available.</returns>
</member>
<member name="M:System.Configuration.ConfigurationElement.Init">
<summary>Sets the <see cref="T:System.Configuration.ConfigurationElement" /> object to its initial state.</summary>
</member>
<member name="M:System.Configuration.ConfigurationElement.InitializeDefault">
<summary>Used to initialize a default set of values for the <see cref="T:System.Configuration.ConfigurationElement" /> object.</summary>
</member>
<member name="M:System.Configuration.ConfigurationElement.IsModified">
<summary>Indicates whether this configuration element has been modified since it was last saved or loaded, when implemented in a derived class.</summary>
<returns>
<see langword="true" /> if the element has been modified; otherwise, <see langword="false" />. </returns>
</member>
<member name="M:System.Configuration.ConfigurationElement.IsReadOnly">
<summary>Gets a value indicating whether the <see cref="T:System.Configuration.ConfigurationElement" /> object is read-only.</summary>
<returns>
<see langword="true" /> if the <see cref="T:System.Configuration.ConfigurationElement" /> object is read-only; otherwise, <see langword="false" />.</returns>
</member>
<member name="M:System.Configuration.ConfigurationElement.ListErrors(System.Collections.IList)">
<summary>Adds the invalid-property errors in this <see cref="T:System.Configuration.ConfigurationElement" /> object, and in all subelements, to the passed list.</summary>
<param name="errorList">An object that implements the <see cref="T:System.Collections.IList" /> interface.</param>
</member>
<member name="M:System.Configuration.ConfigurationElement.OnDeserializeUnrecognizedAttribute(System.String,System.String)">
<summary>Gets a value indicating whether an unknown attribute is encountered during deserialization.</summary>
<param name="name">The name of the unrecognized attribute.</param>
<param name="value">The value of the unrecognized attribute.</param>
<returns>
<see langword="true" /> when an unknown attribute is encountered while deserializing; otherwise, <see langword="false" />.</returns>
</member>
<member name="M:System.Configuration.ConfigurationElement.OnDeserializeUnrecognizedElement(System.String,System.Xml.XmlReader)">
<summary>Gets a value indicating whether an unknown element is encountered during deserialization.</summary>
<param name="elementName">The name of the unknown subelement.</param>
<param name="reader">The <see cref="T:System.Xml.XmlReader" /> being used for deserialization.</param>
<returns>
<see langword="true" /> when an unknown element is encountered while deserializing; otherwise, <see langword="false" />.</returns>
<exception cref="T:System.Configuration.ConfigurationErrorsException">The element identified by <paramref name="elementName" /> is locked.- or -One or more of the element's attributes is locked.- or -
<paramref name="elementName" /> is unrecognized, or the element has an unrecognized attribute.- or -The element has a Boolean attribute with an invalid value.- or -An attempt was made to deserialize a property more than once.- or -An attempt was made to deserialize a property that is not a valid member of the element.- or -The element cannot contain a CDATA or text element.</exception>
</member>
<member name="M:System.Configuration.ConfigurationElement.OnRequiredPropertyNotFound(System.String)">
<summary>Throws an exception when a required property is not found.</summary>
<param name="name">The name of the required attribute that was not found.</param>
<returns>None.</returns>
<exception cref="T:System.Configuration.ConfigurationErrorsException">In all cases.</exception>
</member>
<member name="M:System.Configuration.ConfigurationElement.PostDeserialize">
<summary>Called after deserialization.</summary>
</member>
<member name="M:System.Configuration.ConfigurationElement.PreSerialize(System.Xml.XmlWriter)">
<summary>Called before serialization.</summary>
<param name="writer">The <see cref="T:System.Xml.XmlWriter" /> that will be used to serialize the <see cref="T:System.Configuration.ConfigurationElement" />.</param>
</member>
<member name="M:System.Configuration.ConfigurationElement.Reset(System.Configuration.ConfigurationElement)">
<summary>Resets the internal state of the <see cref="T:System.Configuration.ConfigurationElement" /> object, including the locks and the properties collections.</summary>
<param name="parentElement">The parent node of the configuration element.</param>
</member>
<member name="M:System.Configuration.ConfigurationElement.ResetModified">
<summary>Resets the value of the <see cref="M:System.Configuration.ConfigurationElement.IsModified" /> method to <see langword="false" /> when implemented in a derived class.</summary>
</member>
<member name="M:System.Configuration.ConfigurationElement.SerializeElement(System.Xml.XmlWriter,System.Boolean)">
<summary>Writes the contents of this configuration element to the configuration file when implemented in a derived class.</summary>
<param name="writer">The <see cref="T:System.Xml.XmlWriter" /> that writes to the configuration file. </param>
<param name="serializeCollectionKey">
<see langword="true" /> to serialize only the collection key properties; otherwise, <see langword="false" />. </param>
<returns>
<see langword="true" /> if any data was actually serialized; otherwise, <see langword="false" />.</returns>
<exception cref="T:System.Configuration.ConfigurationErrorsException">The current attribute is locked at a higher configuration level.</exception>
</member>
<member name="M:System.Configuration.ConfigurationElement.SerializeToXmlElement(System.Xml.XmlWriter,System.String)">
<summary>Writes the outer tags of this configuration element to the configuration file when implemented in a derived class.</summary>
<param name="writer">The <see cref="T:System.Xml.XmlWriter" /> that writes to the configuration file. </param>
<param name="elementName">The name of the <see cref="T:System.Configuration.ConfigurationElement" /> to be written. </param>
<returns>
<see langword="true" /> if writing was successful; otherwise, <see langword="false" />.</returns>
<exception cref="T:System.Exception">The element has multiple child elements. </exception>
</member>
<member name="M:System.Configuration.ConfigurationElement.SetPropertyValue(System.Configuration.ConfigurationProperty,System.Object,System.Boolean)">
<summary>Sets a property to the specified value.</summary>
<param name="prop">The element property to set. </param>
<param name="value">The value to assign to the property.</param>
<param name="ignoreLocks">
<see langword="true" /> if the locks on the property should be ignored; otherwise, <see langword="false" />.</param>
<exception cref="T:System.Configuration.ConfigurationErrorsException">Occurs if the element is read-only or <paramref name="ignoreLocks" /> is <see langword="true" /> but the locks cannot be ignored.</exception>
</member>
<member name="M:System.Configuration.ConfigurationElement.SetReadOnly">
<summary>Sets the <see cref="M:System.Configuration.ConfigurationElement.IsReadOnly" /> property for the <see cref="T:System.Configuration.ConfigurationElement" /> object and all subelements.</summary>
</member>
<member name="M:System.Configuration.ConfigurationElement.Unmerge(System.Configuration.ConfigurationElement,System.Configuration.ConfigurationElement,System.Configuration.ConfigurationSaveMode)">
<summary>Modifies the <see cref="T:System.Configuration.ConfigurationElement" /> object to remove all values that should not be saved. </summary>
<param name="sourceElement">A <see cref="T:System.Configuration.ConfigurationElement" /> at the current level containing a merged view of the properties.</param>
<param name="parentElement">The parent <see cref="T:System.Configuration.ConfigurationElement" />, or <see langword="null" /> if this is the top level.</param>
<param name="saveMode">A <see cref="T:System.Configuration.ConfigurationSaveMode" /> that determines which property values to include.</param>
</member>
<member name="M:System.Configuration.ConfigurationElementCollection.#ctor">
<summary>Initializes a new instance of the <see cref="T:System.Configuration.ConfigurationElementCollection" /> class.</summary>
</member>
<member name="M:System.Configuration.ConfigurationElementCollection.#ctor(System.Collections.IComparer)">
<summary>Creates a new instance of the <see cref="T:System.Configuration.ConfigurationElementCollection" /> class.</summary>
<param name="comparer">The <see cref="T:System.Collections.IComparer" /> comparer to use.</param>
<exception cref="T:System.ArgumentNullException">
<paramref name="comparer" /> is <see langword="null" />.</exception>
</member>
<member name="M:System.Configuration.ConfigurationElementCollection.BaseAdd(System.Configuration.ConfigurationElement)">
<summary>Adds a configuration element to the <see cref="T:System.Configuration.ConfigurationElementCollection" />.</summary>
<param name="element">The <see cref="T:System.Configuration.ConfigurationElement" /> to add.</param>
</member>
<member name="M:System.Configuration.ConfigurationElementCollection.BaseAdd(System.Configuration.ConfigurationElement,System.Boolean)">
<summary>Adds a configuration element to the configuration element collection.</summary>
<param name="element">The <see cref="T:System.Configuration.ConfigurationElement" /> to add.</param>
<param name="throwIfExists">
<see langword="true" /> to throw an exception if the <see cref="T:System.Configuration.ConfigurationElement" /> specified is already contained in the <see cref="T:System.Configuration.ConfigurationElementCollection" />; otherwise, <see langword="false" />. </param>
<exception cref="T:System.Exception">The <see cref="T:System.Configuration.ConfigurationElement" /> to add already exists in the <see cref="T:System.Configuration.ConfigurationElementCollection" /> and the <paramref name="throwIfExists" /> parameter is <see langword="true" />. </exception>
</member>
<member name="M:System.Configuration.ConfigurationElementCollection.BaseAdd(System.Int32,System.Configuration.ConfigurationElement)">
<summary>Adds a configuration element to the configuration element collection.</summary>
<param name="index">The index location at which to add the specified <see cref="T:System.Configuration.ConfigurationElement" />. </param>
<param name="element">The <see cref="T:System.Configuration.ConfigurationElement" /> to add. </param>
</member>
<member name="M:System.Configuration.ConfigurationElementCollection.BaseClear">
<summary>Removes all configuration element objects from the collection.</summary>
<exception cref="T:System.Configuration.ConfigurationErrorsException">The configuration is read-only.- or -A collection item has been locked in a higher-level configuration.</exception>
</member>
<member name="M:System.Configuration.ConfigurationElementCollection.BaseGet(System.Int32)">
<summary>Gets the configuration element at the specified index location.</summary>
<param name="index">The index location of the <see cref="T:System.Configuration.ConfigurationElement" /> to return. </param>
<returns>The <see cref="T:System.Configuration.ConfigurationElement" /> at the specified index.</returns>
<exception cref="T:System.Configuration.ConfigurationErrorsException">
<paramref name="index" /> is less than <see langword="0" />.- or -There is no <see cref="T:System.Configuration.ConfigurationElement" /> at the specified <paramref name="index" />.</exception>
</member>
<member name="M:System.Configuration.ConfigurationElementCollection.BaseGet(System.Object)">
<summary>Returns the configuration element with the specified key.</summary>
<param name="key">The key of the element to return. </param>
<returns>The <see cref="T:System.Configuration.ConfigurationElement" /> with the specified key; otherwise, <see langword="null" />.</returns>
</member>
<member name="M:System.Configuration.ConfigurationElementCollection.BaseGetAllKeys">
<summary>Returns an array of the keys for all of the configuration elements contained in the <see cref="T:System.Configuration.ConfigurationElementCollection" />.</summary>
<returns>An array that contains the keys for all of the <see cref="T:System.Configuration.ConfigurationElement" /> objects contained in the <see cref="T:System.Configuration.ConfigurationElementCollection" />.</returns>
</member>
<member name="M:System.Configuration.ConfigurationElementCollection.BaseGetKey(System.Int32)">
<summary>Gets the key for the <see cref="T:System.Configuration.ConfigurationElement" /> at the specified index location.</summary>
<param name="index">The index location for the <see cref="T:System.Configuration.ConfigurationElement" />.</param>
<returns>The key for the specified <see cref="T:System.Configuration.ConfigurationElement" />.</returns>
<exception cref="T:System.Configuration.ConfigurationErrorsException">
<paramref name="index" /> is less than <see langword="0" />.- or -There is no <see cref="T:System.Configuration.ConfigurationElement" /> at the specified <paramref name="index" />.</exception>
</member>
<member name="M:System.Configuration.ConfigurationElementCollection.BaseIndexOf(System.Configuration.ConfigurationElement)">
<summary>Indicates the index of the specified <see cref="T:System.Configuration.ConfigurationElement" />.</summary>
<param name="element">The <see cref="T:System.Configuration.ConfigurationElement" /> for the specified index location.</param>
<returns>The index of the specified <see cref="T:System.Configuration.ConfigurationElement" />; otherwise, -1.</returns>
</member>
<member name="M:System.Configuration.ConfigurationElementCollection.BaseIsRemoved(System.Object)">
<summary>Indicates whether the <see cref="T:System.Configuration.ConfigurationElement" /> with the specified key has been removed from the <see cref="T:System.Configuration.ConfigurationElementCollection" />.</summary>
<param name="key">The key of the element to check.</param>
<returns>
<see langword="true" /> if the <see cref="T:System.Configuration.ConfigurationElement" /> with the specified key has been removed; otherwise, <see langword="false" />. The default is <see langword="false" />.</returns>
</member>
<member name="M:System.Configuration.ConfigurationElementCollection.BaseRemove(System.Object)">
<summary>Removes a <see cref="T:System.Configuration.ConfigurationElement" /> from the collection.</summary>
<param name="key">The key of the <see cref="T:System.Configuration.ConfigurationElement" /> to remove.</param>
<exception cref="T:System.Exception">No <see cref="T:System.Configuration.ConfigurationElement" /> with the specified key exists in the collection, the element has already been removed, or the element cannot be removed because the value of its <see cref="P:System.Configuration.ConfigurationProperty.Type" /> is not <see cref="F:System.Configuration.ConfigurationElementCollectionType.AddRemoveClearMap" />. </exception>
</member>
<member name="M:System.Configuration.ConfigurationElementCollection.BaseRemoveAt(System.Int32)">
<summary>Removes the <see cref="T:System.Configuration.ConfigurationElement" /> at the specified index location.</summary>
<param name="index">The index location of the <see cref="T:System.Configuration.ConfigurationElement" /> to remove.</param>
<exception cref="T:System.Configuration.ConfigurationErrorsException">The configuration is read-only.- or -
<paramref name="index" /> is less than <see langword="0" /> or greater than the number of <see cref="T:System.Configuration.ConfigurationElement" /> objects in the collection.- or -The <see cref="T:System.Configuration.ConfigurationElement" /> object has already been removed.- or -The value of the <see cref="T:System.Configuration.ConfigurationElement" /> object has been locked at a higher level.- or -The <see cref="T:System.Configuration.ConfigurationElement" /> object was inherited.- or -The value of the <see cref="T:System.Configuration.ConfigurationElement" /> object's <see cref="P:System.Configuration.ConfigurationProperty.Type" /> is not <see cref="F:System.Configuration.ConfigurationElementCollectionType.AddRemoveClearMap" /> or <see cref="F:System.Configuration.ConfigurationElementCollectionType.AddRemoveClearMapAlternate" />.</exception>
</member>
<member name="M:System.Configuration.ConfigurationElementCollection.CopyTo(System.Configuration.ConfigurationElement[],System.Int32)">
<summary>Copies the contents of the <see cref="T:System.Configuration.ConfigurationElementCollection" /> to an array.</summary>
<param name="array">Array to which to copy the contents of the <see cref="T:System.Configuration.ConfigurationElementCollection" />.</param>
<param name="index">Index location at which to begin copying.</param>
</member>
<member name="M:System.Configuration.ConfigurationElementCollection.CreateNewElement">
<summary>When overridden in a derived class, creates a new <see cref="T:System.Configuration.ConfigurationElement" />.</summary>
<returns>A newly created <see cref="T:System.Configuration.ConfigurationElement" />.</returns>
</member>
<member name="M:System.Configuration.ConfigurationElementCollection.CreateNewElement(System.String)">
<summary>Creates a new <see cref="T:System.Configuration.ConfigurationElement" /> when overridden in a derived class.</summary>
<param name="elementName">The name of the <see cref="T:System.Configuration.ConfigurationElement" /> to create. </param>
<returns>A new <see cref="T:System.Configuration.ConfigurationElement" /> with a specified name.</returns>
</member>
<member name="M:System.Configuration.ConfigurationElementCollection.Equals(System.Object)">
<summary>Compares the <see cref="T:System.Configuration.ConfigurationElementCollection" /> to the specified object.</summary>
<param name="compareTo">The object to compare. </param>
<returns>
<see langword="true" /> if the object to compare with is equal to the current <see cref="T:System.Configuration.ConfigurationElementCollection" /> instance; otherwise, <see langword="false" />. The default is <see langword="false" />.</returns>
</member>
<member name="M:System.Configuration.ConfigurationElementCollection.GetElementKey(System.Configuration.ConfigurationElement)">
<summary>Gets the element key for a specified configuration element when overridden in a derived class.</summary>
<param name="element">The <see cref="T:System.Configuration.ConfigurationElement" /> to return the key for. </param>
<returns>An <see cref="T:System.Object" /> that acts as the key for the specified <see cref="T:System.Configuration.ConfigurationElement" />.</returns>
</member>
<member name="M:System.Configuration.ConfigurationElementCollection.GetEnumerator">
<summary>Gets an <see cref="T:System.Collections.IEnumerator" /> which is used to iterate through the <see cref="T:System.Configuration.ConfigurationElementCollection" />.</summary>
<returns>An <see cref="T:System.Collections.IEnumerator" /> which is used to iterate through the <see cref="T:System.Configuration.ConfigurationElementCollection" />.</returns>
</member>
<member name="M:System.Configuration.ConfigurationElementCollection.GetHashCode">
<summary>Gets a unique value representing the <see cref="T:System.Configuration.ConfigurationElementCollection" /> instance.</summary>
<returns>A unique value representing the <see cref="T:System.Configuration.ConfigurationElementCollection" /> current instance.</returns>
</member>
<member name="M:System.Configuration.ConfigurationElementCollection.IsElementName(System.String)">
<summary>Indicates whether the specified <see cref="T:System.Configuration.ConfigurationElement" /> exists in the <see cref="T:System.Configuration.ConfigurationElementCollection" />.</summary>
<param name="elementName">The name of the element to verify. </param>
<returns>
<see langword="true" /> if the element exists in the collection; otherwise, <see langword="false" />. The default is <see langword="false" />.</returns>
</member>
<member name="M:System.Configuration.ConfigurationElementCollection.IsElementRemovable(System.Configuration.ConfigurationElement)">
<summary>Indicates whether the specified <see cref="T:System.Configuration.ConfigurationElement" /> can be removed from the <see cref="T:System.Configuration.ConfigurationElementCollection" />.</summary>
<param name="element">The element to check.</param>
<returns>
<see langword="true" /> if the specified <see cref="T:System.Configuration.ConfigurationElement" /> can be removed from this <see cref="T:System.Configuration.ConfigurationElementCollection" />; otherwise, <see langword="false" />. The default is <see langword="true" />.</returns>
</member>
<member name="M:System.Configuration.ConfigurationElementCollection.IsModified">
<summary>Indicates whether this <see cref="T:System.Configuration.ConfigurationElementCollection" /> has been modified since it was last saved or loaded when overridden in a derived class.</summary>
<returns>
<see langword="true" /> if any contained element has been modified; otherwise, <see langword="false" /></returns>
</member>
<member name="M:System.Configuration.ConfigurationElementCollection.IsReadOnly">
<summary>Indicates whether the <see cref="T:System.Configuration.ConfigurationElementCollection" /> object is read only.</summary>
<returns>
<see langword="true" /> if the <see cref="T:System.Configuration.ConfigurationElementCollection" /> object is read only; otherwise, <see langword="false" />.</returns>
</member>
<member name="M:System.Configuration.ConfigurationElementCollection.OnDeserializeUnrecognizedElement(System.String,System.Xml.XmlReader)">
<summary>Causes the configuration system to throw an exception.</summary>
<param name="elementName">The name of the unrecognized element.</param>
<param name="reader">An input stream that reads XML from the configuration file. </param>
<returns>
<see langword="true" /> if the unrecognized element was deserialized successfully; otherwise, <see langword="false" />. The default is <see langword="false" />.</returns>
<exception cref="T:System.Configuration.ConfigurationErrorsException">The element specified in <paramref name="elementName" /> is the <see langword="<clear>" /> element.</exception>
<exception cref="T:System.ArgumentException">
<paramref name="elementName" /> starts with the reserved prefix "config" or "lock".</exception>
</member>
<member name="M:System.Configuration.ConfigurationElementCollection.Reset(System.Configuration.ConfigurationElement)">
<summary>Resets the <see cref="T:System.Configuration.ConfigurationElementCollection" /> to its unmodified state when overridden in a derived class.</summary>
<param name="parentElement">The <see cref="T:System.Configuration.ConfigurationElement" /> representing the collection parent element, if any; otherwise, <see langword="null" />. </param>
</member>
<member name="M:System.Configuration.ConfigurationElementCollection.ResetModified">
<summary>Resets the value of the <see cref="M:System.Configuration.ConfigurationElementCollection.IsModified" /> property to <see langword="false" /> when overridden in a derived class.</summary>
</member>
<member name="M:System.Configuration.ConfigurationElementCollection.SerializeElement(System.Xml.XmlWriter,System.Boolean)">
<summary>Writes the configuration data to an XML element in the configuration file when overridden in a derived class.</summary>
<param name="writer">Output stream that writes XML to the configuration file.</param>
<param name="serializeCollectionKey">
<see langword="true" /> to serialize the collection key; otherwise, <see langword="false" />.</param>
<returns>
<see langword="true" /> if the <see cref="T:System.Configuration.ConfigurationElementCollection" /> was written to the configuration file successfully.</returns>
<exception cref="T:System.ArgumentException">One of the elements in the collection was added or replaced and starts with the reserved prefix "config" or "lock".</exception>
</member>
<member name="M:System.Configuration.ConfigurationElementCollection.SetReadOnly">
<summary>Sets the <see cref="M:System.Configuration.ConfigurationElementCollection.IsReadOnly" /> property for the <see cref="T:System.Configuration.ConfigurationElementCollection" /> object and for all sub-elements.</summary>
</member>
<member name="M:System.Configuration.ConfigurationElementCollection.System#Collections#ICollection#CopyTo(System.Array,System.Int32)">
<summary>Copies the <see cref="T:System.Configuration.ConfigurationElementCollection" /> to an array.</summary>
<param name="arr">Array to which to copy this <see cref="T:System.Configuration.ConfigurationElementCollection" />.</param>
<param name="index">Index location at which to begin copying.</param>
</member>
<member name="M:System.Configuration.ConfigurationElementCollection.Unmerge(System.Configuration.ConfigurationElement,System.Configuration.ConfigurationElement,System.Configuration.ConfigurationSaveMode)">
<summary>Reverses the effect of merging configuration information from different levels of the configuration hierarchy </summary>
<param name="sourceElement">A <see cref="T:System.Configuration.ConfigurationElement" /> object at the current level containing a merged view of the properties.</param>
<param name="parentElement">The parent <see cref="T:System.Configuration.ConfigurationElement" /> object of the current element, or <see langword="null" /> if this is the top level.</param>
<param name="saveMode">A <see cref="T:System.Configuration.ConfigurationSaveMode" /> enumerated value that determines which property values to include.</param>
</member>
<member name="M:System.Configuration.ConfigurationElementProperty.#ctor(System.Configuration.ConfigurationValidatorBase)">
<summary>Initializes a new instance of the <see cref="T:System.Configuration.ConfigurationElementProperty" /> class, based on a supplied parameter.</summary>
<param name="validator">A <see cref="T:System.Configuration.ConfigurationValidatorBase" /> object.</param>
<exception cref="T:System.ArgumentNullException">
<paramref name="validator" /> is <see langword="null" />.</exception>
</member>
<member name="M:System.Configuration.ConfigurationErrorsException.#ctor">
<summary>Initializes a new instance of the <see cref="T:System.Configuration.ConfigurationErrorsException" /> class.</summary>
</member>
<member name="M:System.Configuration.ConfigurationErrorsException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>Initializes a new instance of the <see cref="T:System.Configuration.ConfigurationErrorsException" /> class.</summary>
<param name="info">The object that holds the information to deserialize.</param>
<param name="context">Contextual information about the source or destination.</param>
<exception cref="T:System.InvalidOperationException">The current type is not a <see cref="T:System.Configuration.ConfigurationException" /> or a <see cref="T:System.Configuration.ConfigurationErrorsException" />.</exception>
</member>
<member name="M:System.Configuration.ConfigurationErrorsException.#ctor(System.String)">
<summary>Initializes a new instance of the <see cref="T:System.Configuration.ConfigurationErrorsException" /> class.</summary>
<param name="message">A message that describes why this <see cref="T:System.Configuration.ConfigurationErrorsException" /> exception was thrown.</param>
</member>
<member name="M:System.Configuration.ConfigurationErrorsException.#ctor(System.String,System.Exception)">
<summary>Initializes a new instance of the <see cref="T:System.Configuration.ConfigurationErrorsException" /> class.</summary>
<param name="message">A message that describes why this <see cref="T:System.Configuration.ConfigurationErrorsException" /> exception was thrown.</param>
<param name="inner">The exception that caused this <see cref="T:System.Configuration.ConfigurationErrorsException" /> exception to be thrown.</param>
</member>
<member name="M:System.Configuration.ConfigurationErrorsException.#ctor(System.String,System.Exception,System.String,System.Int32)">
<summary>Initializes a new instance of a <see cref="T:System.Configuration.ConfigurationErrorsException" /> class.</summary>
<param name="message">A message that describes why this <see cref="T:System.Configuration.ConfigurationErrorsException" /> exception was thrown.</param>
<param name="inner">The inner exception that caused this <see cref="T:System.Configuration.ConfigurationErrorsException" /> exception to be thrown.</param>
<param name="filename">The path to the configuration file that caused this <see cref="T:System.Configuration.ConfigurationErrorsException" /> exception to be thrown.</param>
<param name="line">The line number within the configuration file at which this <see cref="T:System.Configuration.ConfigurationErrorsException" /> exception was thrown.</param>
</member>
<member name="M:System.Configuration.ConfigurationErrorsException.#ctor(System.String,System.Exception,System.Xml.XmlNode)">
<summary>Initializes a new instance of the <see cref="T:System.Configuration.ConfigurationErrorsException" /> class.</summary>
<param name="message">A message that describes why this <see cref="T:System.Configuration.ConfigurationErrorsException" /> exception was thrown.</param>
<param name="inner">The inner exception that caused this <see cref="T:System.Configuration.ConfigurationErrorsException" /> exception to be thrown.</param>
<param name="node">The <see cref="T:System.Xml.XmlNode" /> object that caused this <see cref="T:System.Configuration.ConfigurationErrorsException" /> exception to be thrown.</param>
</member>
<member name="M:System.Configuration.ConfigurationErrorsException.#ctor(System.String,System.Exception,System.Xml.XmlReader)">
<summary>Initializes a new instance of the <see cref="T:System.Configuration.ConfigurationErrorsException" /> class.</summary>
<param name="message">A message that describes why this <see cref="T:System.Configuration.ConfigurationErrorsException" /> exception was thrown.</param>
<param name="inner">The inner exception that caused this <see cref="T:System.Configuration.ConfigurationErrorsException" /> exception to be thrown.</param>
<param name="reader">The <see cref="T:System.Xml.XmlReader" /> object that caused this <see cref="T:System.Configuration.ConfigurationErrorsException" /> exception to be thrown.</param>
</member>
<member name="M:System.Configuration.ConfigurationErrorsException.#ctor(System.String,System.String,System.Int32)">
<summary>Initializes a new instance of the <see cref="T:System.Configuration.ConfigurationErrorsException" /> class.</summary>
<param name="message">A message that describes why this <see cref="T:System.Configuration.ConfigurationErrorsException" /> exception was thrown.</param>
<param name="filename">The path to the configuration file that caused this <see cref="T:System.Configuration.ConfigurationErrorsException" /> exception to be thrown.</param>
<param name="line">The line number within the configuration file at which this <see cref="T:System.Configuration.ConfigurationErrorsException" /> exception was thrown.</param>
</member>
<member name="M:System.Configuration.ConfigurationErrorsException.#ctor(System.String,System.Xml.XmlNode)">
<summary>Initializes a new instance of the <see cref="T:System.Configuration.ConfigurationErrorsException" /> class.</summary>
<param name="message">A message that describes why this <see cref="T:System.Configuration.ConfigurationErrorsException" /> exception was thrown.</param>
<param name="node">The <see cref="T:System.Xml.XmlNode" /> object that caused this <see cref="T:System.Configuration.ConfigurationErrorsException" /> exception to be thrown.</param>
</member>
<member name="M:System.Configuration.ConfigurationErrorsException.#ctor(System.String,System.Xml.XmlReader)">
<summary>Initializes a new instance of the <see cref="T:System.Configuration.ConfigurationErrorsException" /> class.</summary>
<param name="message">A message that describes why this <see cref="T:System.Configuration.ConfigurationErrorsException" /> exception was thrown.</param>
<param name="reader">The <see cref="T:System.Xml.XmlReader" /> object that caused this <see cref="T:System.Configuration.ConfigurationErrorsException" /> exception to be thrown.</param>
</member>
<member name="M:System.Configuration.ConfigurationErrorsException.GetFilename(System.Xml.XmlNode)">
<summary>Gets the path to the configuration file from which the internal <see cref="T:System.Xml.XmlNode" /> object was loaded when this configuration exception was thrown.</summary>
<param name="node">The <see cref="T:System.Xml.XmlNode" /> object that caused this <see cref="T:System.Configuration.ConfigurationErrorsException" /> exception to be thrown.</param>
<returns>The path to the configuration file from which the internal <see cref="T:System.Xml.XmlNode" /> object was loaded when this configuration exception was thrown. </returns>
</member>
<member name="M:System.Configuration.ConfigurationErrorsException.GetFilename(System.Xml.XmlReader)">
<summary>Gets the path to the configuration file that the internal <see cref="T:System.Xml.XmlReader" /> was reading when this configuration exception was thrown.</summary>
<param name="reader">The <see cref="T:System.Xml.XmlReader" /> object that caused this <see cref="T:System.Configuration.ConfigurationErrorsException" /> exception to be thrown.</param>
<returns>The path of the configuration file the internal <see cref="T:System.Xml.XmlReader" /> object was accessing when the exception occurred.</returns>
</member>
<member name="M:System.Configuration.ConfigurationErrorsException.GetLineNumber(System.Xml.XmlNode)">
<summary>Gets the line number within the configuration file that the internal <see cref="T:System.Xml.XmlNode" /> object represented when this configuration exception was thrown.</summary>
<param name="node">The <see cref="T:System.Xml.XmlNode" /> object that caused this <see cref="T:System.Configuration.ConfigurationErrorsException" /> exception to be thrown.</param>
<returns>The line number within the configuration file that contains the <see cref="T:System.Xml.XmlNode" /> object being parsed when this configuration exception was thrown.</returns>
</member>
<member name="M:System.Configuration.ConfigurationErrorsException.GetLineNumber(System.Xml.XmlReader)">
<summary>Gets the line number within the configuration file that the internal <see cref="T:System.Xml.XmlReader" /> object was processing when this configuration exception was thrown.</summary>
<param name="reader">The <see cref="T:System.Xml.XmlReader" /> object that caused this <see cref="T:System.Configuration.ConfigurationErrorsException" /> exception to be thrown.</param>
<returns>The line number within the configuration file that the <see cref="T:System.Xml.XmlReader" /> object was accessing when the exception occurred.</returns>
</member>
<member name="M:System.Configuration.ConfigurationErrorsException.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>Sets the <see cref="T:System.Runtime.Serialization.SerializationInfo" /> object with the file name and line number at which this configuration exception occurred.</summary>
<param name="info">The object that holds the information to be serialized.</param>
<param name="context">The contextual information about the source or destination.</param>
</member>
<member name="M:System.Configuration.ConfigurationFileMap.#ctor">
<summary>Initializes a new instance of the <see cref="T:System.Configuration.ConfigurationFileMap" /> class. </summary>
</member>
<member name="M:System.Configuration.ConfigurationFileMap.#ctor(System.String)">
<summary>Initializes a new instance of the <see cref="T:System.Configuration.ConfigurationFileMap" /> class based on the supplied parameter.</summary>
<param name="machineConfigFilename">The name of the machine configuration file.</param>
</member>
<member name="M:System.Configuration.ConfigurationFileMap.Clone">
<summary>Creates a copy of the existing <see cref="T:System.Configuration.ConfigurationFileMap" /> object.</summary>
<returns>A <see cref="T:System.Configuration.ConfigurationFileMap" /> object.</returns>
</member>
<member name="M:System.Configuration.ConfigurationLocation.OpenConfiguration">
<summary>Creates an instance of a Configuration object.</summary>
<returns>A Configuration object.</returns>
</member>
<member name="M:System.Configuration.ConfigurationLockCollection.Add(System.String)">
<summary>Locks a configuration object by adding it to the collection.</summary>
<param name="name">The name of the configuration object.</param>
<exception cref="T:System.Configuration.ConfigurationErrorsException">Occurs when the <paramref name="name" /> does not match an existing configuration object within the collection.</exception>
</member>
<member name="M:System.Configuration.ConfigurationLockCollection.Clear">
<summary>Clears all configuration objects from the collection.</summary>
</member>
<member name="M:System.Configuration.ConfigurationLockCollection.Contains(System.String)">
<summary>Verifies whether a specific configuration object is locked.</summary>
<param name="name">The name of the configuration object to verify.</param>
<returns>
<see langword="true" /> if the <see cref="T:System.Configuration.ConfigurationLockCollection" /> contains the specified configuration object; otherwise, <see langword="false" />.</returns>
</member>
<member name="M:System.Configuration.ConfigurationLockCollection.CopyTo(System.String[],System.Int32)">
<summary>Copies the entire <see cref="T:System.Configuration.ConfigurationLockCollection" /> collection to a compatible one-dimensional <see cref="T:System.Array" />, starting at the specified index of the target array.</summary>
<param name="array">A one-dimensional <see cref="T:System.Array" /> that is the destination of the elements copied from the <see cref="T:System.Configuration.ConfigurationLockCollection" />. The <see cref="T:System.Array" /> must have zero-based indexing.</param>
<param name="index">The zero-based index in <paramref name="array" /> at which copying begins.</param>
</member>
<member name="M:System.Configuration.ConfigurationLockCollection.GetEnumerator">
<summary>Gets an <see cref="T:System.Collections.IEnumerator" /> object, which is used to iterate through this <see cref="T:System.Configuration.ConfigurationLockCollection" /> collection.</summary>
<returns>An <see cref="T:System.Collections.IEnumerator" /> object.</returns>
</member>
<member name="M:System.Configuration.ConfigurationLockCollection.IsReadOnly(System.String)">
<summary>Verifies whether a specific configuration object is read-only.</summary>
<param name="name">The name of the configuration object to verify.</param>
<returns>
<see langword="true" /> if the specified configuration object in the <see cref="T:System.Configuration.ConfigurationLockCollection" /> collection is read-only; otherwise, <see langword="false" />.</returns>
<exception cref="T:System.Configuration.ConfigurationErrorsException">The specified configuration object is not in the collection.</exception>
</member>
<member name="M:System.Configuration.ConfigurationLockCollection.Remove(System.String)">
<summary>Removes a configuration object from the collection.</summary>
<param name="name">The name of the configuration object.</param>
<exception cref="T:System.Configuration.ConfigurationErrorsException">Occurs when the <paramref name="name" /> does not match an existing configuration object within the collection.</exception>
</member>
<member name="M:System.Configuration.ConfigurationLockCollection.SetFromList(System.String)">
<summary>Locks a set of configuration objects based on the supplied list.</summary>
<param name="attributeList">A comma-delimited string.</param>
<exception cref="T:System.Configuration.ConfigurationErrorsException">Occurs when an item in the <paramref name="attributeList" /> parameter is not a valid lockable configuration attribute.</exception>
</member>
<member name="M:System.Configuration.ConfigurationLockCollection.System#Collections#ICollection#CopyTo(System.Array,System.Int32)">
<summary>Copies the entire <see cref="T:System.Configuration.ConfigurationLockCollection" /> collection to a compatible one-dimensional <see cref="T:System.Array" />, starting at the specified index of the target array.</summary>
<param name="array">A one-dimensional <see cref="T:System.Array" /> that is the destination of the elements copied from the <see cref="T:System.Configuration.ConfigurationLockCollection" /> collection. The <see cref="T:System.Array" /> must have zero-based indexing.</param>
<param name="index">The zero-based index in <paramref name="array" /> at which copying begins.</param>
</member>
<member name="M:System.Configuration.ConfigurationManager.GetSection(System.String)">
<summary>Retrieves a specified configuration section for the current application's default configuration.</summary>
<param name="sectionName">The configuration section path and name.</param>
<returns>The specified <see cref="T:System.Configuration.ConfigurationSection" /> object, or <see langword="null" /> if the section does not exist.</returns>
<exception cref="T:System.Configuration.ConfigurationErrorsException">A configuration file could not be loaded.</exception>
</member>
<member name="M:System.Configuration.ConfigurationManager.OpenExeConfiguration(System.Configuration.ConfigurationUserLevel)">
<summary>Opens the configuration file for the current application as a <see cref="T:System.Configuration.Configuration" /> object.</summary>
<param name="userLevel">The <see cref="T:System.Configuration.ConfigurationUserLevel" /> for which you are opening the configuration.</param>
<returns>A <see cref="T:System.Configuration.Configuration" /> object.</returns>
<exception cref="T:System.Configuration.ConfigurationErrorsException">A configuration file could not be loaded.</exception>
</member>
<member name="M:System.Configuration.ConfigurationManager.OpenExeConfiguration(System.String)">
<summary>Opens the specified client configuration file as a <see cref="T:System.Configuration.Configuration" /> object.</summary>
<param name="exePath">The path of the executable (exe) file.</param>
<returns>A <see cref="T:System.Configuration.Configuration" /> object.</returns>
<exception cref="T:System.Configuration.ConfigurationErrorsException">A configuration file could not be loaded.</exception>
</member>
<member name="M:System.Configuration.ConfigurationManager.OpenMachineConfiguration">
<summary>Opens the machine configuration file on the current computer as a <see cref="T:System.Configuration.Configuration" /> object.</summary>
<returns>A <see cref="T:System.Configuration.Configuration" /> object.</returns>
<exception cref="T:System.Configuration.ConfigurationErrorsException">A configuration file could not be loaded.</exception>
</member>
<member name="M:System.Configuration.ConfigurationManager.OpenMappedExeConfiguration(System.Configuration.ExeConfigurationFileMap,System.Configuration.ConfigurationUserLevel)">
<summary>Opens the specified client configuration file as a <see cref="T:System.Configuration.Configuration" /> object that uses the specified file mapping and user level.</summary>
<param name="fileMap">An <see cref="T:System.Configuration.ExeConfigurationFileMap" /> object that references configuration file to use instead of the application default configuration file.</param>
<param name="userLevel">The <see cref="T:System.Configuration.ConfigurationUserLevel" /> object for which you are opening the configuration.</param>
<returns>The configuration object.</returns>
<exception cref="T:System.Configuration.ConfigurationErrorsException">A configuration file could not be loaded.</exception>
</member>
<member name="M:System.Configuration.ConfigurationManager.OpenMappedExeConfiguration(System.Configuration.ExeConfigurationFileMap,System.Configuration.ConfigurationUserLevel,System.Boolean)">
<summary>Opens the specified client configuration file as a <see cref="T:System.Configuration.Configuration" /> object that uses the specified file mapping, user level, and preload option.</summary>
<param name="fileMap">An <see cref="T:System.Configuration.ExeConfigurationFileMap" /> object that references the configuration file to use instead of the default application configuration file.</param>
<param name="userLevel">The <see cref="T:System.Configuration.ConfigurationUserLevel" /> object for which you are opening the configuration.</param>
<param name="preLoad">
<see langword="true" /> to preload all section groups and sections; otherwise, <see langword="false" />.</param>
<returns>The configuration object.</returns>
<exception cref="T:System.Configuration.ConfigurationErrorsException">A configuration file could not be loaded.</exception>
</member>
<member name="M:System.Configuration.ConfigurationManager.OpenMappedMachineConfiguration(System.Configuration.ConfigurationFileMap)">
<summary>Opens the machine configuration file as a <see cref="T:System.Configuration.Configuration" /> object that uses the specified file mapping.</summary>
<param name="fileMap">An <see cref="T:System.Configuration.ExeConfigurationFileMap" /> object that references configuration file to use instead of the application default configuration file.</param>
<returns>A <see cref="T:System.Configuration.Configuration" /> object.</returns>
<exception cref="T:System.Configuration.ConfigurationErrorsException">A configuration file could not be loaded.</exception>
</member>
<member name="M:System.Configuration.ConfigurationManager.RefreshSection(System.String)">
<summary>Refreshes the named section so the next time that it is retrieved it will be re-read from disk.</summary>
<param name="sectionName">The configuration section name or the configuration path and section name of the section to refresh.</param>
</member>
<member name="M:System.Configuration.ConfigurationPermission.#ctor(System.Security.Permissions.PermissionState)">
<summary>Initializes a new instance of the <see cref="T:System.Configuration.ConfigurationPermission" /> class. </summary>
<param name="state">The permission level to grant.</param>
<exception cref="T:System.ArgumentException">The value of <paramref name="state" /> is neither <see cref="F:System.Security.Permissions.PermissionState.Unrestricted" /> nor <see cref="F:System.Security.Permissions.PermissionState.None" />.</exception>
</member>
<member name="M:System.Configuration.ConfigurationPermission.Copy">
<summary>Returns a new <see cref="T:System.Configuration.ConfigurationPermission" /> object with the same permission level.</summary>
<returns>A new <see cref="T:System.Configuration.ConfigurationPermission" /> with the same permission level.</returns>
</member>
<member name="M:System.Configuration.ConfigurationPermission.FromXml(System.Security.SecurityElement)">
<summary>Reads the value of the permission state from XML.</summary>
<param name="securityElement">The configuration element from which the permission state is read.</param>
<exception cref="T:System.ArgumentNullException">
<paramref name="securityElement" /> is <see langword="null" />.</exception>
<exception cref="T:System.ArgumentException">The <see cref="P:System.Security.SecurityElement.Tag" /> for the given <paramref name="securityElement" /> does not equal "IPermission".</exception>
<exception cref="T:System.ArgumentException">The <see langword="class" /> attribute of the given <paramref name="securityElement " />equals <see langword="null" />.</exception>
<exception cref="T:System.ArgumentException">The <see langword="class" /> attribute of the given <paramref name="securityElement" /> is not the type name for <see cref="T:System.Configuration.ConfigurationPermission" />.</exception>
<exception cref="T:System.ArgumentException">The <see langword="version" /> attribute for the given <paramref name="securityElement" /> does not equal 1.</exception>
<exception cref="T:System.ArgumentException">The <see langword="unrestricted" /> attribute for the given <paramref name="securityElement" /> is neither <see langword="true" /> nor <see langword="false" />.</exception>
</member>
<member name="M:System.Configuration.ConfigurationPermission.Intersect(System.Security.IPermission)">
<summary>Returns the logical intersection between the <see cref="T:System.Configuration.ConfigurationPermission" /> object and a given object that implements the <see cref="T:System.Security.IPermission" /> interface.</summary>
<param name="target">The object containing the permissions to perform the intersection with.</param>
<returns>The logical intersection between the <see cref="T:System.Configuration.ConfigurationPermission" /> and a given object that implements <see cref="T:System.Security.IPermission" />.</returns>
<exception cref="T:System.ArgumentException">
<paramref name="target" /> is not typed as <see cref="T:System.Configuration.ConfigurationPermission" />.</exception>
</member>
<member name="M:System.Configuration.ConfigurationPermission.IsSubsetOf(System.Security.IPermission)">
<summary>Compares the <see cref="T:System.Configuration.ConfigurationPermission" /> object with an object implementing the <see cref="T:System.Security.IPermission" /> interface.</summary>
<param name="target">The object to compare to.</param>
<returns>
<see langword="true" /> if the permission state is equal; otherwise, <see langword="false" />.</returns>
<exception cref="T:System.ArgumentException">
<paramref name="target" /> is not typed as <see cref="T:System.Configuration.ConfigurationPermission" />.</exception>
</member>
<member name="M:System.Configuration.ConfigurationPermission.IsUnrestricted">
<summary>Indicates whether the permission state for the <see cref="T:System.Configuration.ConfigurationPermission" /> object is the <see cref="F:System.Security.Permissions.PermissionState.Unrestricted" /> value of the <see cref="T:System.Security.Permissions.PermissionState" /> enumeration.</summary>
<returns>
<see langword="true" /> if the permission state for the <see cref="T:System.Configuration.ConfigurationPermission" /> is the <see cref="F:System.Security.Permissions.PermissionState.Unrestricted" /> value of <see cref="T:System.Security.Permissions.PermissionState" />; otherwise, <see langword="false" />.</returns>
</member>
<member name="M:System.Configuration.ConfigurationPermission.ToXml">
<summary>Returns a <see cref="T:System.Security.SecurityElement" /> object with attribute values based on the current <see cref="T:System.Configuration.ConfigurationPermission" /> object.</summary>
<returns>A <see cref="T:System.Security.SecurityElement" /> with attribute values based on the current <see cref="T:System.Configuration.ConfigurationPermission" />.</returns>
</member>
<member name="M:System.Configuration.ConfigurationPermission.Union(System.Security.IPermission)">
<summary>Returns the logical union of the <see cref="T:System.Configuration.ConfigurationPermission" /> object and an object that implements the <see cref="T:System.Security.IPermission" /> interface.</summary>
<param name="target">The object to perform the union with.</param>
<returns>The logical union of the <see cref="T:System.Configuration.ConfigurationPermission" /> and an object that implements <see cref="T:System.Security.IPermission" />.</returns>
<exception cref="T:System.ArgumentException">
<paramref name="target" /> is not typed as <see cref="T:System.Configuration.ConfigurationPermission" />.</exception>
</member>
<member name="M:System.Configuration.ConfigurationPermissionAttribute.#ctor(System.Security.Permissions.SecurityAction)">
<summary>Initializes a new instance of the <see cref="T:System.Configuration.ConfigurationPermissionAttribute" /> class.</summary>
<param name="action">The security action represented by an enumeration member of <see cref="T:System.Security.Permissions.SecurityAction" />. Determines the permission state of the attribute.</param>
</member>
<member name="M:System.Configuration.ConfigurationPermissionAttribute.CreatePermission">
<summary>Creates and returns an object that implements the <see cref="T:System.Security.IPermission" /> interface.</summary>
<returns>Returns an object that implements <see cref="T:System.Security.IPermission" />.</returns>
</member>
<member name="M:System.Configuration.ConfigurationProperty.#ctor(System.String,System.Type)">
<summary>Initializes a new instance of the <see cref="T:System.Configuration.ConfigurationProperty" /> class. </summary>
<param name="name">The name of the configuration entity. </param>
<param name="type">The type of the configuration entity. </param>
</member>
<member name="M:System.Configuration.ConfigurationProperty.#ctor(System.String,System.Type,System.Object)">
<summary>Initializes a new instance of the <see cref="T:System.Configuration.ConfigurationProperty" /> class. </summary>
<param name="name">The name of the configuration entity. </param>
<param name="type">The type of the configuration entity. </param>
<param name="defaultValue">The default value of the configuration entity. </param>
</member>
<member name="M:System.Configuration.ConfigurationProperty.#ctor(System.String,System.Type,System.Object,System.ComponentModel.TypeConverter,System.Configuration.ConfigurationValidatorBase,System.Configuration.ConfigurationPropertyOptions)">
<summary>Initializes a new instance of the <see cref="T:System.Configuration.ConfigurationProperty" /> class. </summary>
<param name="name">The name of the configuration entity. </param>
<param name="type">The type of the configuration entity.</param>
<param name="defaultValue">The default value of the configuration entity. </param>
<param name="typeConverter">The type of the converter to apply.</param>
<param name="validator">The validator to use. </param>
<param name="options">One of the <see cref="T:System.Configuration.ConfigurationPropertyOptions" /> enumeration values. </param>
</member>
<member name="M:System.Configuration.ConfigurationProperty.#ctor(System.String,System.Type,System.Object,System.ComponentModel.TypeConverter,System.Configuration.ConfigurationValidatorBase,System.Configuration.ConfigurationPropertyOptions,System.String)">
<summary>Initializes a new instance of the <see cref="T:System.Configuration.ConfigurationProperty" /> class. </summary>
<param name="name">The name of the configuration entity. </param>
<param name="type">The type of the configuration entity. </param>
<param name="defaultValue">The default value of the configuration entity. </param>
<param name="typeConverter">The type of the converter to apply.</param>
<param name="validator">The validator to use. </param>
<param name="options">One of the <see cref="T:System.Configuration.ConfigurationPropertyOptions" /> enumeration values. </param>
<param name="description">The description of the configuration entity. </param>
</member>
<member name="M:System.Configuration.ConfigurationProperty.#ctor(System.String,System.Type,System.Object,System.Configuration.ConfigurationPropertyOptions)">
<summary>Initializes a new instance of the <see cref="T:System.Configuration.ConfigurationProperty" /> class. </summary>
<param name="name">The name of the configuration entity. </param>
<param name="type">The type of the configuration entity. </param>
<param name="defaultValue">The default value of the configuration entity. </param>
<param name="options">One of the <see cref="T:System.Configuration.ConfigurationPropertyOptions" /> enumeration values.</param>
</member>
<member name="M:System.Configuration.ConfigurationPropertyAttribute.#ctor(System.String)">
<summary>Initializes a new instance of <see cref="T:System.Configuration.ConfigurationPropertyAttribute" /> class.</summary>
<param name="name">Name of the <see cref="T:System.Configuration.ConfigurationProperty" /> object defined.</param>
</member>
<member name="M:System.Configuration.ConfigurationPropertyCollection.#ctor">
<summary>Initializes a new instance of the <see cref="T:System.Configuration.ConfigurationPropertyCollection" /> class. </summary>
</member>
<member name="M:System.Configuration.ConfigurationPropertyCollection.Add(System.Configuration.ConfigurationProperty)">
<summary>Adds a configuration property to the collection.</summary>
<param name="property">The <see cref="T:System.Configuration.ConfigurationProperty" /> to add. </param>
</member>
<member name="M:System.Configuration.ConfigurationPropertyCollection.Clear">
<summary>Removes all configuration property objects from the collection.</summary>
</member>
<member name="M:System.Configuration.ConfigurationPropertyCollection.Contains(System.String)">
<summary>Specifies whether the configuration property is contained in this collection.</summary>
<param name="name">An identifier for the <see cref="T:System.Configuration.ConfigurationProperty" /> to verify. </param>
<returns>
<see langword="true" /> if the specified <see cref="T:System.Configuration.ConfigurationProperty" /> is contained in the collection; otherwise, <see langword="false" />.</returns>
</member>
<member name="M:System.Configuration.ConfigurationPropertyCollection.CopyTo(System.Configuration.ConfigurationProperty[],System.Int32)">
<summary>Copies this ConfigurationPropertyCollection to an array.</summary>
<param name="array">Array to which to copy.</param>
<param name="index">Index at which to begin copying.</param>
</member>
<member name="M:System.Configuration.ConfigurationPropertyCollection.GetEnumerator">
<summary>Gets the <see cref="T:System.Collections.IEnumerator" /> object as it applies to the collection.</summary>
<returns>The <see cref="T:System.Collections.IEnumerator" /> object as it applies to the collection</returns>
</member>
<member name="M:System.Configuration.ConfigurationPropertyCollection.Remove(System.String)">
<summary>Removes a configuration property from the collection.</summary>
<param name="name">The <see cref="T:System.Configuration.ConfigurationProperty" /> to remove. </param>
<returns>
<see langword="true" /> if the specified <see cref="T:System.Configuration.ConfigurationProperty" /> was removed; otherwise, <see langword="false" />.</returns>
</member>
<member name="M:System.Configuration.ConfigurationPropertyCollection.System#Collections#ICollection#CopyTo(System.Array,System.Int32)">
<summary>Copies this collection to an array.</summary>
<param name="array">The array to which to copy.</param>
<param name="index">The index location at which to begin copying.</param>
</member>
<member name="M:System.Configuration.ConfigurationSection.#ctor">
<summary>Initializes a new instance of the <see cref="T:System.Configuration.ConfigurationSection" /> class. </summary>
</member>
<member name="M:System.Configuration.ConfigurationSection.DeserializeSection(System.Xml.XmlReader)">
<summary>Reads XML from the configuration file.</summary>
<param name="reader">The <see cref="T:System.Xml.XmlReader" /> object, which reads from the configuration file. </param>
<exception cref="T:System.Configuration.ConfigurationErrorsException">
<paramref name="reader" /> found no elements in the configuration file.</exception>
</member>
<member name="M:System.Configuration.ConfigurationSection.GetRuntimeObject">
<summary>Returns a custom object when overridden in a derived class.</summary>
<returns>The object representing the section.</returns>
</member>
<member name="M:System.Configuration.ConfigurationSection.IsModified">
<summary>Indicates whether this configuration element has been modified since it was last saved or loaded when implemented in a derived class.</summary>
<returns>
<see langword="true" /> if the element has been modified; otherwise, <see langword="false" />. </returns>
</member>
<member name="M:System.Configuration.ConfigurationSection.ResetModified">
<summary>Resets the value of the <see cref="M:System.Configuration.ConfigurationElement.IsModified" /> method to <see langword="false" /> when implemented in a derived class.</summary>
</member>
<member name="M:System.Configuration.ConfigurationSection.SerializeSection(System.Configuration.ConfigurationElement,System.String,System.Configuration.ConfigurationSaveMode)">
<summary>Creates an XML string containing an unmerged view of the <see cref="T:System.Configuration.ConfigurationSection" /> object as a single section to write to a file.</summary>
<param name="parentElement">The <see cref="T:System.Configuration.ConfigurationElement" /> instance to use as the parent when performing the un-merge.</param>
<param name="name">The name of the section to create.</param>
<param name="saveMode">The <see cref="T:System.Configuration.ConfigurationSaveMode" /> instance to use when writing to a string.</param>
<returns>An XML string containing an unmerged view of the <see cref="T:System.Configuration.ConfigurationSection" /> object.</returns>
</member>
<member name="M:System.Configuration.ConfigurationSection.ShouldSerializeElementInTargetVersion(System.Configuration.ConfigurationElement,System.String,System.Runtime.Versioning.FrameworkName)">
<summary>Indicates whether the specified element should be serialized when the configuration object hierarchy is serialized for the specified target version of the .NET Framework.</summary>
<param name="element">The <see cref="T:System.Configuration.ConfigurationElement" /> object that is a candidate for serialization.</param>
<param name="elementName">The name of the <see cref="T:System.Configuration.ConfigurationElement" /> object as it occurs in XML.</param>
<param name="targetFramework">The target version of the .NET Framework.</param>
<returns>
<see langword="true" /> if the <paramref name="element" /> should be serialized; otherwise, <see langword="false" />.</returns>
</member>
<member name="M:System.Configuration.ConfigurationSection.ShouldSerializePropertyInTargetVersion(System.Configuration.ConfigurationProperty,System.String,System.Runtime.Versioning.FrameworkName,System.Configuration.ConfigurationElement)">
<summary>Indicates whether the specified property should be serialized when the configuration object hierarchy is serialized for the specified target version of the .NET Framework.</summary>
<param name="property">The <see cref="T:System.Configuration.ConfigurationProperty" /> object that is a candidate for serialization.</param>
<param name="propertyName">The name of the <see cref="T:System.Configuration.ConfigurationProperty" /> object as it occurs in XML.</param>
<param name="targetFramework">The target version of the .NET Framework.</param>
<param name="parentConfigurationElement">The parent element of the property.</param>
<returns>
<see langword="true" /> if the <paramref name="property" /> should be serialized; otherwise, <see langword="false" />.</returns>
</member>
<member name="M:System.Configuration.ConfigurationSection.ShouldSerializeSectionInTargetVersion(System.Runtime.Versioning.FrameworkName)">
<summary>Indicates whether the current <see cref="T:System.Configuration.ConfigurationSection" /> instance should be serialized when the configuration object hierarchy is serialized for the specified target version of the .NET Framework.</summary>
<param name="targetFramework">The target version of the .NET Framework.</param>
<returns>
<see langword="true" /> if the current section should be serialized; otherwise, <see langword="false" />.</returns>
</member>
<member name="M:System.Configuration.ConfigurationSectionCollection.Add(System.String,System.Configuration.ConfigurationSection)">
<summary>Adds a <see cref="T:System.Configuration.ConfigurationSection" /> object to the <see cref="T:System.Configuration.ConfigurationSectionCollection" /> object.</summary>
<param name="name">The name of the section to be added.</param>
<param name="section">The section to be added.</param>
</member>
<member name="M:System.Configuration.ConfigurationSectionCollection.Clear">
<summary>Clears this <see cref="T:System.Configuration.ConfigurationSectionCollection" /> object.</summary>
</member>
<member name="M:System.Configuration.ConfigurationSectionCollection.CopyTo(System.Configuration.ConfigurationSection[],System.Int32)">
<summary>Copies this <see cref="T:System.Configuration.ConfigurationSectionCollection" /> object to an array.</summary>
<param name="array">The array to copy the <see cref="T:System.Configuration.ConfigurationSectionCollection" /> object to.</param>
<param name="index">The index location at which to begin copying.</param>
<exception cref="T:System.ArgumentNullException">
<paramref name="array" /> is <see langword="null" />.</exception>
<exception cref="T:System.ArgumentOutOfRangeException">The length of <paramref name="array" /> is less than the value of <see cref="P:System.Configuration.ConfigurationSectionCollection.Count" /> plus <paramref name="index" />.</exception>
</member>
<member name="M:System.Configuration.ConfigurationSectionCollection.Get(System.Int32)">
<summary>Gets the specified <see cref="T:System.Configuration.ConfigurationSection" /> object contained in this <see cref="T:System.Configuration.ConfigurationSectionCollection" /> object.</summary>
<param name="index">The index of the <see cref="T:System.Configuration.ConfigurationSection" /> object to be returned.</param>
<returns>The <see cref="T:System.Configuration.ConfigurationSection" /> object at the specified index.</returns>
</member>
<member name="M:System.Configuration.ConfigurationSectionCollection.Get(System.String)">
<summary>Gets the specified <see cref="T:System.Configuration.ConfigurationSection" /> object contained in this <see cref="T:System.Configuration.ConfigurationSectionCollection" /> object.</summary>
<param name="name">The name of the <see cref="T:System.Configuration.ConfigurationSection" /> object to be returned.</param>
<returns>The <see cref="T:System.Configuration.ConfigurationSection" /> object with the specified name.</returns>
<exception cref="T:System.ArgumentException">
<paramref name="name" /> is null or an empty string ("").</exception>
</member>
<member name="M:System.Configuration.ConfigurationSectionCollection.GetEnumerator">
<summary>Gets an enumerator that can iterate through this <see cref="T:System.Configuration.ConfigurationSectionCollection" /> object.</summary>
<returns>An <see cref="T:System.Collections.IEnumerator" /> that can be used to iterate through this <see cref="T:System.Configuration.ConfigurationSectionCollection" /> object.</returns>
</member>
<member name="M:System.Configuration.ConfigurationSectionCollection.GetKey(System.Int32)">
<summary>Gets the key of the specified <see cref="T:System.Configuration.ConfigurationSection" /> object contained in this <see cref="T:System.Configuration.ConfigurationSectionCollection" /> object.</summary>
<param name="index">The index of the <see cref="T:System.Configuration.ConfigurationSection" /> object whose key is to be returned. </param>
<returns>The key of the <see cref="T:System.Configuration.ConfigurationSection" /> object at the specified index.</returns>
</member>
<member name="M:System.Configuration.ConfigurationSectionCollection.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>Used by the system during serialization.</summary>
<param name="info">The applicable <see cref="T:System.Runtime.Serialization.SerializationInfo" /> object.</param>
<param name="context">The applicable <see cref="T:System.Runtime.Serialization.StreamingContext" /> object.</param>
</member>
<member name="M:System.Configuration.ConfigurationSectionCollection.Remove(System.String)">
<summary>Removes the specified <see cref="T:System.Configuration.ConfigurationSection" /> object from this <see cref="T:System.Configuration.ConfigurationSectionCollection" /> object.</summary>
<param name="name">The name of the section to be removed. </param>
</member>
<member name="M:System.Configuration.ConfigurationSectionCollection.RemoveAt(System.Int32)">
<summary>Removes the specified <see cref="T:System.Configuration.ConfigurationSection" /> object from this <see cref="T:System.Configuration.ConfigurationSectionCollection" /> object.</summary>
<param name="index">The index of the section to be removed. </param>
</member>
<member name="M:System.Configuration.ConfigurationSectionGroup.#ctor">
<summary>Initializes a new instance of the <see cref="T:System.Configuration.ConfigurationSectionGroup" /> class. </summary>
</member>
<member name="M:System.Configuration.ConfigurationSectionGroup.ForceDeclaration">
<summary>Forces the declaration for this <see cref="T:System.Configuration.ConfigurationSectionGroup" /> object.</summary>
</member>
<member name="M:System.Configuration.ConfigurationSectionGroup.ForceDeclaration(System.Boolean)">
<summary>Forces the declaration for this <see cref="T:System.Configuration.ConfigurationSectionGroup" /> object.</summary>
<param name="force">
<see langword="true" /> if the <see cref="T:System.Configuration.ConfigurationSectionGroup" /> object must be written to the file; otherwise, <see langword="false" />.</param>
<exception cref="T:System.InvalidOperationException">The <see cref="T:System.Configuration.ConfigurationSectionGroup" /> object is the root section group.- or -The <see cref="T:System.Configuration.ConfigurationSectionGroup" /> object has a location.</exception>
</member>
<member name="M:System.Configuration.ConfigurationSectionGroup.ShouldSerializeSectionGroupInTargetVersion(System.Runtime.Versioning.FrameworkName)">
<summary>Indicates whether the current <see cref="T:System.Configuration.ConfigurationSectionGroup" /> instance should be serialized when the configuration object hierarchy is serialized for the specified target version of the .NET Framework.</summary>
<param name="targetFramework">The target version of the .NET Framework.</param>
<returns>
<see langword="true" /> if the current section group should be serialized; otherwise, <see langword="false" />.</returns>
</member>
<member name="M:System.Configuration.ConfigurationSectionGroupCollection.Add(System.String,System.Configuration.ConfigurationSectionGroup)">
<summary>Adds a <see cref="T:System.Configuration.ConfigurationSectionGroup" /> object to this <see cref="T:System.Configuration.ConfigurationSectionGroupCollection" /> object.</summary>
<param name="name">The name of the <see cref="T:System.Configuration.ConfigurationSectionGroup" /> object to be added.</param>
<param name="sectionGroup">The <see cref="T:System.Configuration.ConfigurationSectionGroup" /> object to be added.</param>
</member>
<member name="M:System.Configuration.ConfigurationSectionGroupCollection.Clear">
<summary>Clears the collection.</summary>
</member>
<member name="M:System.Configuration.ConfigurationSectionGroupCollection.CopyTo(System.Configuration.ConfigurationSectionGroup[],System.Int32)">
<summary>Copies this <see cref="T:System.Configuration.ConfigurationSectionGroupCollection" /> object to an array.</summary>
<param name="array">The array to copy the object to.</param>
<param name="index">The index location at which to begin copying.</param>
<exception cref="T:System.ArgumentNullException">
<paramref name="array" /> is <see langword="null" />.</exception>
<exception cref="T:System.ArgumentOutOfRangeException">The length of <paramref name="array" /> is less than the value of <see cref="P:System.Configuration.ConfigurationSectionGroupCollection.Count" /> plus <paramref name="index" />.</exception>
</member>
<member name="M:System.Configuration.ConfigurationSectionGroupCollection.Get(System.Int32)">
<summary>Gets the specified <see cref="T:System.Configuration.ConfigurationSectionGroup" /> object contained in the collection.</summary>
<param name="index">The index of the <see cref="T:System.Configuration.ConfigurationSectionGroup" /> object to be returned. </param>
<returns>The <see cref="T:System.Configuration.ConfigurationSectionGroup" /> object at the specified index.</returns>
</member>
<member name="M:System.Configuration.ConfigurationSectionGroupCollection.Get(System.String)">
<summary>Gets the specified <see cref="T:System.Configuration.ConfigurationSectionGroup" /> object from the collection.</summary>
<param name="name">The name of the <see cref="T:System.Configuration.ConfigurationSectionGroup" /> object to be returned. </param>
<returns>The <see cref="T:System.Configuration.ConfigurationSectionGroup" /> object with the specified name.</returns>
<exception cref="T:System.ArgumentException">
<paramref name="name" /> is null or an empty string ("").</exception>
</member>
<member name="M:System.Configuration.ConfigurationSectionGroupCollection.GetEnumerator">
<summary>Gets an enumerator that can iterate through the <see cref="T:System.Configuration.ConfigurationSectionGroupCollection" /> object.</summary>
<returns>An <see cref="T:System.Collections.IEnumerator" /> that can be used to iterate through the <see cref="T:System.Configuration.ConfigurationSectionGroupCollection" /> object.</returns>
</member>
<member name="M:System.Configuration.ConfigurationSectionGroupCollection.GetKey(System.Int32)">
<summary>Gets the key of the specified <see cref="T:System.Configuration.ConfigurationSectionGroup" /> object contained in this <see cref="T:System.Configuration.ConfigurationSectionGroupCollection" /> object.</summary>
<param name="index">The index of the section group whose key is to be returned. </param>
<returns>The key of the <see cref="T:System.Configuration.ConfigurationSectionGroup" /> object at the specified index.</returns>
</member>
<member name="M:System.Configuration.ConfigurationSectionGroupCollection.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>Used by the system during serialization.</summary>
<param name="info">The applicable <see cref="T:System.Runtime.Serialization.SerializationInfo" /> object.</param>
<param name="context">The applicable <see cref="T:System.Runtime.Serialization.StreamingContext" /> object.</param>
</member>
<member name="M:System.Configuration.ConfigurationSectionGroupCollection.Remove(System.String)">
<summary>Removes the <see cref="T:System.Configuration.ConfigurationSectionGroup" /> object whose name is specified from this <see cref="T:System.Configuration.ConfigurationSectionGroupCollection" /> object.</summary>
<param name="name">The name of the section group to be removed. </param>
</member>
<member name="M:System.Configuration.ConfigurationSectionGroupCollection.RemoveAt(System.Int32)">
<summary>Removes the <see cref="T:System.Configuration.ConfigurationSectionGroup" /> object whose index is specified from this <see cref="T:System.Configuration.ConfigurationSectionGroupCollection" /> object.</summary>
<param name="index">The index of the section group to be removed. </param>
</member>
<member name="M:System.Configuration.ConfigurationValidatorAttribute.#ctor">
<summary>Initializes a new instance of the <see cref="T:System.Configuration.ConfigurationValidatorAttribute" /> class.</summary>
</member>
<member name="M:System.Configuration.ConfigurationValidatorAttribute.#ctor(System.Type)">
<summary>Initializes a new instance of the <see cref="T:System.Configuration.ConfigurationValidatorAttribute" /> class using the specified validator type.</summary>
<param name="validator">The validator type to use when creating an instance of <see cref="T:System.Configuration.ConfigurationValidatorAttribute" />.</param>
<exception cref="T:System.ArgumentNullException">
<paramref name="validator" /> is <see langword="null" />.</exception>
<exception cref="T:System.ArgumentException">
<paramref name="validator" /> is not derived from <see cref="T:System.Configuration.ConfigurationValidatorBase" />.</exception>
</member>
<member name="M:System.Configuration.ConfigurationValidatorBase.#ctor">
<summary>Initializes an instance of the <see cref="T:System.Configuration.ConfigurationValidatorBase" /> class.</summary>
</member>
<member name="M:System.Configuration.ConfigurationValidatorBase.CanValidate(System.Type)">
<summary>Determines whether an object can be validated based on type.</summary>
<param name="type">The object type.</param>
<returns>
<see langword="true" /> if the <paramref name="type" /> parameter value matches the expected <see langword="type" />; otherwise, <see langword="false" />. </returns>
</member>
<member name="M:System.Configuration.ConfigurationValidatorBase.Validate(System.Object)">
<summary>Determines whether the value of an object is valid. </summary>
<param name="value">The object value.</param>
</member>
<member name="M:System.Configuration.ConnectionStringSettings.#ctor">
<summary>Initializes a new instance of a <see cref="T:System.Configuration.ConnectionStringSettings" /> class.</summary>
</member>
<member name="M:System.Configuration.ConnectionStringSettings.#ctor(System.String,System.String)">
<summary>Initializes a new instance of a <see cref="T:System.Configuration.ConnectionStringSettings" /> class.</summary>
<param name="name">The name of the connection string.</param>
<param name="connectionString">The connection string.</param>
</member>
<member name="M:System.Configuration.ConnectionStringSettings.#ctor(System.String,System.String,System.String)">
<summary>Initializes a new instance of a <see cref="T:System.Configuration.ConnectionStringSettings" /> object.</summary>
<param name="name">The name of the connection string.</param>
<param name="connectionString">The connection string.</param>
<param name="providerName">The name of the provider to use with the connection string.</param>
</member>
<member name="M:System.Configuration.ConnectionStringSettings.ToString">
<summary>Returns a string representation of the object.</summary>
<returns>A string representation of the object.</returns>
</member>
<member name="M:System.Configuration.ConnectionStringSettingsCollection.#ctor">
<summary>Initializes a new instance of the <see cref="T:System.Configuration.ConnectionStringSettingsCollection" /> class. </summary>
</member>
<member name="M:System.Configuration.ConnectionStringSettingsCollection.Add(System.Configuration.ConnectionStringSettings)">
<summary>Adds a <see cref="T:System.Configuration.ConnectionStringSettings" /> object to the collection.</summary>
<param name="settings">A <see cref="T:System.Configuration.ConnectionStringSettings" /> object to add to the collection.</param>
</member>
<member name="M:System.Configuration.ConnectionStringSettingsCollection.Clear">
<summary>Removes all the <see cref="T:System.Configuration.ConnectionStringSettings" /> objects from the collection.</summary>
</member>
<member name="M:System.Configuration.ConnectionStringSettingsCollection.IndexOf(System.Configuration.ConnectionStringSettings)">
<summary>Returns the collection index of the passed <see cref="T:System.Configuration.ConnectionStringSettings" /> object.</summary>
<param name="settings">A <see cref="T:System.Configuration.ConnectionStringSettings" /> object in the collection.</param>
<returns>The collection index of the specified <see cref="T:System.Configuration.ConnectionStringSettingsCollection" /> object.</returns>
</member>
<member name="M:System.Configuration.ConnectionStringSettingsCollection.Remove(System.Configuration.ConnectionStringSettings)">
<summary>Removes the specified <see cref="T:System.Configuration.ConnectionStringSettings" /> object from the collection.</summary>
<param name="settings">A <see cref="T:System.Configuration.ConnectionStringSettings" /> object in the collection.</param>
</member>
<member name="M:System.Configuration.ConnectionStringSettingsCollection.Remove(System.String)">
<summary>Removes the specified <see cref="T:System.Configuration.ConnectionStringSettings" /> object from the collection.</summary>
<param name="name">The name of a <see cref="T:System.Configuration.ConnectionStringSettings" /> object in the collection.</param>
</member>
<member name="M:System.Configuration.ConnectionStringSettingsCollection.RemoveAt(System.Int32)">
<summary>Removes the <see cref="T:System.Configuration.ConnectionStringSettings" /> object at the specified index in the collection.</summary>
<param name="index">The index of a <see cref="T:System.Configuration.ConnectionStringSettings" /> object in the collection.</param>
</member>
<member name="M:System.Configuration.ConnectionStringsSection.#ctor">
<summary>Initializes a new instance of the <see cref="T:System.Configuration.ConnectionStringsSection" /> class.</summary>
</member>
<member name="M:System.Configuration.ContextInformation.GetSection(System.String)">
<summary>Provides an object containing configuration-section information based on the specified section name.</summary>
<param name="sectionName">The name of the configuration section.</param>
<returns>An object containing the specified section within the configuration.</returns>
</member>
<member name="M:System.Configuration.DefaultSection.#ctor">
<summary>Initializes a new instance of the <see cref="T:System.Configuration.DefaultSection" /> class. </summary>
</member>
<member name="M:System.Configuration.DefaultValidator.#ctor">
<summary>Initializes a new instance of the <see cref="T:System.Configuration.DefaultValidator" /> class. </summary>
</member>
<member name="M:System.Configuration.DefaultValidator.CanValidate(System.Type)">
<summary>Determines whether an object can be validated, based on type.</summary>
<param name="type">The object type.</param>
<returns>
<see langword="true" /> for all types being validated. </returns>
</member>
<member name="M:System.Configuration.DefaultValidator.Validate(System.Object)">
<summary>Determines whether the value of an object is valid. </summary>
<param name="value">The object value.</param>
</member>
<member name="M:System.Configuration.DpapiProtectedConfigurationProvider.#ctor">
<summary>Initializes a new instance of the <see cref="T:System.Configuration.DpapiProtectedConfigurationProvider" /> class using default settings.</summary>
</member>
<member name="M:System.Configuration.DpapiProtectedConfigurationProvider.Decrypt(System.Xml.XmlNode)">
<summary>Decrypts the passed <see cref="T:System.Xml.XmlNode" /> object.</summary>
<param name="encryptedNode">The <see cref="T:System.Xml.XmlNode" /> object to decrypt. </param>
<returns>A decrypted <see cref="T:System.Xml.XmlNode" /> object.</returns>
<exception cref="T:System.Configuration.ConfigurationErrorsException">
<paramref name="encryptedNode" /> does not have <see cref="P:System.Xml.XmlNode.Name" /> set to "EncryptedData" and <see cref="T:System.Xml.XmlNodeType" /> set to <see cref="F:System.Xml.XmlNodeType.Element" />.- or -
<paramref name="encryptedNode" /> does not have a child node named "CipherData" with a child node named "CipherValue".- or -The child node named "CipherData" is an empty node.</exception>
</member>
<member name="M:System.Configuration.DpapiProtectedConfigurationProvider.Encrypt(System.Xml.XmlNode)">
<summary>Encrypts the passed <see cref="T:System.Xml.XmlNode" /> object.</summary>
<param name="node">The <see cref="T:System.Xml.XmlNode" /> object to encrypt. </param>
<returns>An encrypted <see cref="T:System.Xml.XmlNode" /> object.</returns>
</member>
<member name="M:System.Configuration.DpapiProtectedConfigurationProvider.Initialize(System.String,System.Collections.Specialized.NameValueCollection)">
<summary>Initializes the provider with default settings.</summary>
<param name="name">The provider name to use for the object.</param>
<param name="configurationValues">A <see cref="T:System.Collections.Specialized.NameValueCollection" /> collection of values to use when initializing the object.</param>
<exception cref="T:System.Configuration.ConfigurationErrorsException">
<paramref name="configurationValues" /> contains an unrecognized configuration setting.</exception>
</member>
<member name="M:System.Configuration.ExeConfigurationFileMap.#ctor">
<summary>Initializes a new instance of the <see cref="T:System.Configuration.ExeConfigurationFileMap" /> class.</summary>
</member>
<member name="M:System.Configuration.ExeConfigurationFileMap.#ctor(System.String)">
<summary>Initializes a new instance of the <see cref="T:System.Configuration.ExeConfigurationFileMap" /> class by using the specified machine configuration file name.</summary>
<param name="machineConfigFileName">The name of the machine configuration file that includes the complete physical path (for example, c:\Windows\Microsoft.NET\Framework\v2.0.50727\CONFIG\machine.config).</param>
</member>
<member name="M:System.Configuration.ExeConfigurationFileMap.Clone">
<summary>Creates a copy of the existing <see cref="T:System.Configuration.ExeConfigurationFileMap" /> object.</summary>
<returns>An <see cref="T:System.Configuration.ExeConfigurationFileMap" /> object.</returns>
</member>
<member name="M:System.Configuration.GenericEnumConverter.#ctor(System.Type)">
<summary>Initializes a new instance of the <see cref="T:System.Configuration.GenericEnumConverter" /> class.</summary>
<param name="typeEnum">The enumeration type to convert.</param>
<exception cref="T:System.ArgumentNullException">
<paramref name="typeEnum" /> is <see langword="null" />.</exception>
</member>
<member name="M:System.Configuration.GenericEnumConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object)">
<summary>Converts a <see cref="T:System.String" /> to an <see cref="T:System.Enum" /> type.</summary>
<param name="ctx">The <see cref="T:System.ComponentModel.ITypeDescriptorContext" /> object used for type conversions.</param>
<param name="ci">The <see cref="T:System.Globalization.CultureInfo" /> object used during conversion.</param>
<param name="data">The <see cref="T:System.String" /> object to convert.</param>
<returns>The <see cref="T:System.Enum" /> type that represents the <paramref name="data" /> parameter.</returns>
<exception cref="T:System.ArgumentException">
<paramref name="data" /> is null or an empty string ("").- or -
<paramref name="data" /> starts with a numeric character.- or -
<paramref name="data" /> includes white space.</exception>
</member>
<member name="M:System.Configuration.GenericEnumConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object,System.Type)">
<summary>Converts an <see cref="T:System.Enum" /> type to a <see cref="T:System.String" /> value.</summary>
<param name="ctx">The <see cref="T:System.ComponentModel.ITypeDescriptorContext" /> object used for type conversions.</param>
<param name="ci">The <see cref="T:System.Globalization.CultureInfo" /> object used during conversion.</param>
<param name="value">The value to convert to.</param>
<param name="type">The type to convert to.</param>
<returns>The <see cref="T:System.String" /> that represents the <paramref name="value" /> parameter.</returns>
</member>
<member name="M:System.Configuration.IgnoreSection.#ctor">
<summary>Initializes a new instance of the <see cref="T:System.Configuration.IgnoreSection" /> class.</summary>
</member>
<member name="M:System.Configuration.InfiniteIntConverter.#ctor">
<summary>Initializes a new instance of the <see cref="T:System.Configuration.InfiniteIntConverter" /> class.</summary>
</member>
<member name="M:System.Configuration.InfiniteIntConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object)">
<summary>Converts a <see cref="T:System.String" /> to an <see cref="T:System.Int32" />.</summary>
<param name="ctx">The <see cref="T:System.ComponentModel.ITypeDescriptorContext" /> object used for type conversions.</param>
<param name="ci">The <see cref="T:System.Globalization.CultureInfo" /> object used during conversion.</param>
<param name="data">The <see cref="T:System.String" /> object to convert.</param>
<returns>The <see cref="F:System.Int32.MaxValue" />, if the <paramref name="data" /> parameter is the <see cref="T:System.String" /> "infinite"; otherwise, the <see cref="T:System.Int32" /> representing the <paramref name="data" /> parameter integer value.</returns>
</member>
<member name="M:System.Configuration.InfiniteIntConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object,System.Type)">
<summary>Converts an <see cref="T:System.Int32" />.to a <see cref="T:System.String" />.</summary>
<param name="ctx">The <see cref="T:System.ComponentModel.ITypeDescriptorContext" /> object used for type conversions.</param>
<param name="ci">The <see cref="T:System.Globalization.CultureInfo" /> object used during conversion.</param>
<param name="value">The value to convert to.</param>
<param name="type">The type to convert to.</param>
<returns>The <see cref="T:System.String" /> "infinite" if the <paramref name="value" /> is <see cref="F:System.Int32.MaxValue" />; otherwise, the <see cref="T:System.String" /> representing the <paramref name="value" /> parameter.</returns>
</member>
<member name="M:System.Configuration.InfiniteTimeSpanConverter.#ctor">
<summary>Initializes a new instance of the <see cref="T:System.Configuration.InfiniteTimeSpanConverter" /> class.</summary>
</member>
<member name="M:System.Configuration.InfiniteTimeSpanConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object)">
<summary>Converts a <see cref="T:System.String" /> to a <see cref="T:System.TimeSpan" />.</summary>
<param name="ctx">The <see cref="T:System.ComponentModel.ITypeDescriptorContext" /> object used for type conversions.</param>
<param name="ci">The <see cref="T:System.Globalization.CultureInfo" /> object used during conversion.</param>
<param name="data">The <see cref="T:System.String" /> object to convert.</param>
<returns>The <see cref="F:System.TimeSpan.MaxValue" />, if the <paramref name="data" /> parameter is the <see cref="T:System.String" /> infinite; otherwise, the <see cref="T:System.TimeSpan" /> representing the <paramref name="data" /> parameter in minutes.</returns>
</member>
<member name="M:System.Configuration.InfiniteTimeSpanConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object,System.Type)">
<summary>Converts a <see cref="T:System.TimeSpan" /> to a <see cref="T:System.String" />.</summary>
<param name="ctx">The <see cref="T:System.ComponentModel.ITypeDescriptorContext" /> object used for type conversions.</param>
<param name="ci">The <see cref="T:System.Globalization.CultureInfo" /> used during object conversion.</param>
<param name="value">The value to convert.</param>
<param name="type">The conversion type.</param>
<returns>The <see cref="T:System.String" /> "infinite", if the <paramref name="value" /> parameter is <see cref="F:System.TimeSpan.MaxValue" />; otherwise, the <see cref="T:System.String" /> representing the <paramref name="value" /> parameter in minutes.</returns>
</member>
<member name="M:System.Configuration.IntegerValidator.#ctor(System.Int32,System.Int32)">
<summary>Initializes a new instance of the <see cref="T:System.Configuration.IntegerValidator" /> class. </summary>
<param name="minValue">An <see cref="T:System.Int32" /> object that specifies the minimum value.</param>
<param name="maxValue">An <see cref="T:System.Int32" /> object that specifies the maximum value.</param>
</member>
<member name="M:System.Configuration.IntegerValidator.#ctor(System.Int32,System.Int32,System.Boolean)">
<summary>Initializes a new instance of the <see cref="T:System.Configuration.IntegerValidator" /> class. </summary>
<param name="minValue">An <see cref="T:System.Int32" /> object that specifies the minimum value.</param>
<param name="maxValue">An <see cref="T:System.Int32" /> object that specifies the maximum value.</param>
<param name="rangeIsExclusive">
<see langword="true" /> to specify that the validation range is exclusive. Inclusive means the value to be validated must be within the specified range; exclusive means that it must be below the minimum or above the maximum.</param>
</member>
<member name="M:System.Configuration.IntegerValidator.#ctor(System.Int32,System.Int32,System.Boolean,System.Int32)">
<summary>Initializes a new instance of the <see cref="T:System.Configuration.IntegerValidator" /> class. </summary>
<param name="minValue">An <see cref="T:System.Int32" /> object that specifies the minimum length of the integer value.</param>
<param name="maxValue">An <see cref="T:System.Int32" /> object that specifies the maximum length of the integer value.</param>
<param name="rangeIsExclusive">A <see cref="T:System.Boolean" /> value that specifies whether the validation range is exclusive.</param>
<param name="resolution">An <see cref="T:System.Int32" /> object that specifies a value that must be matched.</param>
<exception cref="T:System.ArgumentOutOfRangeException">
<paramref name="resolution" /> is less than <see langword="0" />.- or -
<paramref name="minValue" /> is greater than <paramref name="maxValue" />.</exception>
</member>
<member name="M:System.Configuration.IntegerValidator.CanValidate(System.Type)">
<summary>Determines whether the type of the object can be validated.</summary>
<param name="type">The type of the object.</param>
<returns>
<see langword="true" /> if the <paramref name="type" /> parameter matches an <see cref="T:System.Int32" /> value; otherwise, <see langword="false" />. </returns>
</member>
<member name="M:System.Configuration.IntegerValidator.Validate(System.Object)">
<summary>Determines whether the value of an object is valid.</summary>
<param name="value">The value to be validated.</param>
</member>
<member name="M:System.Configuration.IntegerValidatorAttribute.#ctor">
<summary>Creates a new instance of the <see cref="T:System.Configuration.IntegerValidatorAttribute" /> class.</summary>
</member>
<member name="M:System.Configuration.Internal.DelegatingConfigHost.#ctor">
<summary>Initializes a new instance of the <see cref="T:System.Configuration.Internal.DelegatingConfigHost" /> class.</summary>
</member>
<member name="M:System.Configuration.Internal.DelegatingConfigHost.CreateConfigurationContext(System.String,System.String)">
<summary>Creates a new configuration context.</summary>
<param name="configPath">A string representing the path to a configuration file.</param>
<param name="locationSubPath">A string representing a location subpath.</param>
<returns>A <see cref="T:System.Object" /> representing a new configuration context.</returns>
</member>
<member name="M:System.Configuration.Internal.DelegatingConfigHost.CreateDeprecatedConfigContext(System.String)">
<summary>Creates a deprecated configuration context.</summary>
<param name="configPath">A string representing the path to a configuration file.</param>
<returns>A <see cref="T:System.Object" /> representing a deprecated configuration context.</returns>
</member>
<member name="M:System.Configuration.Internal.DelegatingConfigHost.DecryptSection(System.String,System.Configuration.ProtectedConfigurationProvider,System.Configuration.ProtectedConfigurationSection)">
<summary>Decrypts an encrypted configuration section.</summary>
<param name="encryptedXml">An encrypted section of a configuration file.</param>
<param name="protectionProvider">A <see cref="T:System.Configuration.ProtectedConfigurationProvider" /> object.</param>
<param name="protectedConfigSection">A <see cref="T:System.Configuration.ProtectedConfigurationSection" /> object.</param>
<returns>A string representing a decrypted configuration section.</returns>
</member>
<member name="M:System.Configuration.Internal.DelegatingConfigHost.DeleteStream(System.String)">
<summary>Deletes the <see cref="T:System.IO.Stream" /> object performing I/O tasks on a configuration file.</summary>
<param name="streamName">The name of a <see cref="T:System.IO.Stream" /> object performing I/O tasks on a configuration file.</param>
</member>
<member name="M:System.Configuration.Internal.DelegatingConfigHost.EncryptSection(System.String,System.Configuration.ProtectedConfigurationProvider,System.Configuration.ProtectedConfigurationSection)">
<summary>Encrypts a section of a configuration object.</summary>
<param name="clearTextXml">A section of the configuration that is not encrypted.</param>
<param name="protectionProvider">A <see cref="T:System.Configuration.ProtectedConfigurationProvider" /> object.</param>
<param name="protectedConfigSection">A <see cref="T:System.Configuration.ProtectedConfigurationSection" /> object.</param>
<returns>A string representing an encrypted section of the configuration object.</returns>
</member>
<member name="M:System.Configuration.Internal.DelegatingConfigHost.GetConfigPathFromLocationSubPath(System.String,System.String)">
<summary>Returns a configuration path based on a location subpath.</summary>
<param name="configPath">A string representing the path to a configuration file.</param>
<param name="locationSubPath">A string representing a location subpath.</param>
<returns>A string representing a configuration path.</returns>
</member>
<member name="M:System.Configuration.Internal.DelegatingConfigHost.GetConfigType(System.String,System.Boolean)">
<summary>Returns a <see cref="T:System.Type" /> representing the type of the configuration.</summary>
<param name="typeName">A string representing the configuration type.</param>
<param name="throwOnError">
<see langword="true" /> if an exception should be thrown if an error is encountered; <see langword="false" /> if an exception should not be thrown if an error is encountered.</param>
<returns>A <see cref="T:System.Type" /> representing the type of the configuration.</returns>
</member>
<member name="M:System.Configuration.Internal.DelegatingConfigHost.GetConfigTypeName(System.Type)">
<summary>Returns a string representing the type name of the configuration object.</summary>
<param name="t">A <see cref="T:System.Type" /> object.</param>
<returns>A string representing the type name of the configuration object.</returns>
</member>
<member name="M:System.Configuration.Internal.DelegatingConfigHost.GetRestrictedPermissions(System.Configuration.Internal.IInternalConfigRecord,System.Security.PermissionSet@,System.Boolean@)">
<summary>Sets the specified permission set if available within the host object.</summary>
<param name="configRecord">An <see cref="T:System.Configuration.Internal.IInternalConfigRecord" /> object.</param>
<param name="permissionSet">A <see cref="T:System.Security.PermissionSet" /> object.</param>
<param name="isHostReady">
<see langword="true" /> if the host has finished initialization; otherwise, <see langword="false" />.</param>
</member>
<member name="M:System.Configuration.Internal.DelegatingConfigHost.GetStreamName(System.String)">
<summary>Returns the name of a <see cref="T:System.IO.Stream" /> object performing I/O tasks on a configuration file.</summary>
<param name="configPath">A string representing the path to a configuration file.</param>
<returns>A string representing the name of a <see cref="T:System.IO.Stream" /> object performing I/O tasks on a configuration file.</returns>
</member>
<member name="M:System.Configuration.Internal.DelegatingConfigHost.GetStreamNameForConfigSource(System.String,System.String)">
<summary>Returns the name of a <see cref="T:System.IO.Stream" /> object performing I/O tasks on a configuration source.</summary>
<param name="streamName">The name of a <see cref="T:System.IO.Stream" /> object performing I/O tasks on a configuration file.</param>
<param name="configSource">A string representing the configuration source.</param>
<returns>A string representing the name of a <see cref="T:System.IO.Stream" /> object performing I/O tasks on a configuration source.</returns>
</member>
<member name="M:System.Configuration.Internal.DelegatingConfigHost.GetStreamVersion(System.String)">
<summary>Returns a <see cref="P:System.Diagnostics.FileVersionInfo.FileVersion" /> object representing the version of a <see cref="T:System.IO.Stream" /> object performing I/O tasks on a configuration file.</summary>
<param name="streamName">The name of a <see cref="T:System.IO.Stream" /> object performing I/O tasks on a configuration file.</param>
<returns>A <see cref="P:System.Diagnostics.FileVersionInfo.FileVersion" /> object representing the version of a <see cref="T:System.IO.Stream" /> object performing I/O tasks on a configuration file.</returns>
</member>
<member name="M:System.Configuration.Internal.DelegatingConfigHost.Impersonate">
<summary>Instructs the host to impersonate and returns an <see cref="T:System.IDisposable" /> object required internally by the .NET Framework.</summary>
<returns>An <see cref="T:System.IDisposable" /> value.</returns>
</member>
<member name="M:System.Configuration.Internal.DelegatingConfigHost.Init(System.Configuration.Internal.IInternalConfigRoot,System.Object[])">
<summary>Initializes the configuration host.</summary>
<param name="configRoot">An <see cref="T:System.Configuration.Internal.IInternalConfigRoot" /> object.</param>
<param name="hostInitParams">A parameter object containing the values used for initializing the configuration host.</param>
</member>
<member name="M:System.Configuration.Internal.DelegatingConfigHost.InitForConfiguration(System.String@,System.String@,System.String@,System.Configuration.Internal.IInternalConfigRoot,System.Object[])">
<summary>Initializes the host for configuration.</summary>
<param name="locationSubPath">A string representing a location subpath (passed by reference).</param>
<param name="configPath">A string representing the path to a configuration file.</param>
<param name="locationConfigPath">The location configuration path.</param>
<param name="configRoot">The configuration root element.</param>
<param name="hostInitConfigurationParams">A parameter object representing the parameters used to initialize the host.</param>
</member>
<member name="M:System.Configuration.Internal.DelegatingConfigHost.IsAboveApplication(System.String)">
<summary>Returns a value indicating whether the configuration is above the application configuration in the configuration hierarchy.</summary>
<param name="configPath">A string representing the path to a configuration file.</param>
<returns>
<see langword="true" /> if the configuration is above the application configuration in the configuration hierarchy; otherwise, <see langword="false" />.</returns>
</member>
<member name="M:System.Configuration.Internal.DelegatingConfigHost.IsConfigRecordRequired(System.String)">
<summary>Returns a value indicating whether a configuration record is required for the host configuration initialization.</summary>
<param name="configPath">A string representing the path to a configuration file.</param>
<returns>
<see langword="true" /> if a configuration record is required for the host configuration initialization; otherwise, <see langword="false" />.</returns>
</member>
<member name="M:System.Configuration.Internal.DelegatingConfigHost.IsDefinitionAllowed(System.String,System.Configuration.ConfigurationAllowDefinition,System.Configuration.ConfigurationAllowExeDefinition)">
<summary>Restricts or allows definitions in the host configuration. </summary>
<param name="configPath">A string representing the path to a configuration file.</param>
<param name="allowDefinition">The <see cref="T:System.Configuration.ConfigurationAllowDefinition" /> object.</param>
<param name="allowExeDefinition">The <see cref="T:System.Configuration.ConfigurationAllowExeDefinition" /> object.</param>
<returns>
<see langword="true" /> if the grant or restriction of definitions in the host configuration was successful; otherwise, <see langword="false" />.</returns>
</member>
<member name="M:System.Configuration.Internal.DelegatingConfigHost.IsFile(System.String)">
<summary>Returns a value indicating whether the file path used by a <see cref="T:System.IO.Stream" /> object to read a configuration file is a valid path.</summary>
<param name="streamName">The name of a <see cref="T:System.IO.Stream" /> object performing I/O tasks on a configuration file.</param>
<returns>
<see langword="true" /> if the path used by a <see cref="T:System.IO.Stream" /> object to read a configuration file is a valid path; otherwise, <see langword="false" />.</returns>
</member>
<member name="M:System.Configuration.Internal.DelegatingConfigHost.IsFullTrustSectionWithoutAptcaAllowed(System.Configuration.Internal.IInternalConfigRecord)">
<summary>Returns a value indicating whether a configuration section requires a fully trusted code access security level and does not allow the <see cref="T:System.Security.AllowPartiallyTrustedCallersAttribute" /> attribute to disable implicit link demands.</summary>
<param name="configRecord">The <see cref="T:System.Configuration.Internal.IInternalConfigRecord" /> object.</param>
<returns>
<see langword="true" /> if the configuration section requires a fully trusted code access security level and does not allow the <see cref="T:System.Security.AllowPartiallyTrustedCallersAttribute" /> attribute to disable implicit link demands; otherwise, <see langword="false" />.</returns>
</member>
<member name="M:System.Configuration.Internal.DelegatingConfigHost.IsInitDelayed(System.Configuration.Internal.IInternalConfigRecord)">
<summary>Returns a value indicating whether the initialization of a configuration object is considered delayed.</summary>
<param name="configRecord">The <see cref="T:System.Configuration.Internal.IInternalConfigRecord" /> object.</param>
<returns>
<see langword="true" /> if the initialization of a configuration object is considered delayed; otherwise, <see langword="false" />.</returns>
</member>
<member name="M:System.Configuration.Internal.DelegatingConfigHost.IsLocationApplicable(System.String)">
<summary>Returns a value indicating whether the configuration object supports a location tag.</summary>
<param name="configPath">A string representing the path to a configuration file.</param>
<returns>
<see langword="true" /> if the configuration object supports a location tag; otherwise, <see langword="false" />.</returns>
</member>
<member name="M:System.Configuration.Internal.DelegatingConfigHost.IsSecondaryRoot(System.String)">
<summary>Returns a value indicating whether a configuration path is to a configuration node whose contents should be treated as a root.</summary>
<param name="configPath">A string representing the path to a configuration file.</param>
<returns>
<see langword="true" /> if the configuration path is to a configuration node whose contents should be treated as a root; otherwise, <see langword="false" />.</returns>
</member>
<member name="M:System.Configuration.Internal.DelegatingConfigHost.IsTrustedConfigPath(System.String)">
<summary>Returns a value indicating whether the configuration path is trusted.</summary>
<param name="configPath">A string representing the path to a configuration file.</param>
<returns>
<see langword="true" /> if the configuration path is trusted; otherwise, <see langword="false" />.</returns>
</member>
<member name="M:System.Configuration.Internal.DelegatingConfigHost.OpenStreamForRead(System.String)">
<summary>Opens a <see cref="T:System.IO.Stream" /> object to read a configuration file.</summary>
<param name="streamName">The name of a <see cref="T:System.IO.Stream" /> object performing I/O tasks on a configuration file.</param>
<returns>Returns the <see cref="T:System.IO.Stream" /> object specified by <paramref name="streamName" />.</returns>
</member>
<member name="M:System.Configuration.Internal.DelegatingConfigHost.OpenStreamForRead(System.String,System.Boolean)">
<summary>Opens a <see cref="T:System.IO.Stream" /> object to read a configuration file.</summary>
<param name="streamName">The name of a <see cref="T:System.IO.Stream" /> object performing I/O tasks on a configuration file.</param>
<param name="assertPermissions">
<see langword="true" /> to assert permissions; otherwise, <see langword="false" />.</param>
<returns>Returns the <see cref="T:System.IO.Stream" /> object specified by <paramref name="streamName" />.</returns>
</member>
<member name="M:System.Configuration.Internal.DelegatingConfigHost.OpenStreamForWrite(System.String,System.String,System.Object@)">
<summary>Opens a <see cref="T:System.IO.Stream" /> object for writing to a configuration file or for writing to a temporary file used to build a configuration file. Allows a <see cref="T:System.IO.Stream" /> object to be designated as a template for copying file attributes.</summary>
<param name="streamName">The name of a <see cref="T:System.IO.Stream" /> object performing I/O tasks on a configuration file.</param>
<param name="templateStreamName">The name of a <see cref="T:System.IO.Stream" /> object from which file attributes are to be copied as a template.</param>
<param name="writeContext">The write context of the <see cref="T:System.IO.Stream" /> object (passed by reference).</param>
<returns>A <see cref="T:System.IO.Stream" /> object.</returns>
</member>
<member name="M:System.Configuration.Internal.DelegatingConfigHost.OpenStreamForWrite(System.String,System.String,System.Object@,System.Boolean)">
<summary>Opens a <see cref="T:System.IO.Stream" /> object for writing to a configuration file. Allows a <see cref="T:System.IO.Stream" /> object to be designated as a template for copying file attributes.</summary>
<param name="streamName">The name of a <see cref="T:System.IO.Stream" /> object performing I/O tasks on a configuration file.</param>
<param name="templateStreamName">The name of a <see cref="T:System.IO.Stream" /> object from which file attributes are to be copied as a template.</param>
<param name="writeContext">The write context of the <see cref="T:System.IO.Stream" /> object performing I/O tasks on the configuration file (passed by reference).</param>
<param name="assertPermissions">
<see langword="true" /> to assert permissions; otherwise, <see langword="false" />.</param>
<returns>Returns the <see cref="T:System.IO.Stream" /> object specified by the <paramref name="streamName" /> parameter.</returns>
</member>
<member name="M:System.Configuration.Internal.DelegatingConfigHost.PrefetchAll(System.String,System.String)">
<summary>Returns a value indicating whether the entire configuration file could be read by a designated <see cref="T:System.IO.Stream" /> object.</summary>
<param name="configPath">A string representing the path to a configuration file.</param>
<param name="streamName">The name of a <see cref="T:System.IO.Stream" /> object performing I/O tasks on a configuration file.</param>
<returns>
<see langword="true" /> if the entire configuration file could be read by the <see cref="T:System.IO.Stream" /> object designated by <paramref name="streamName" />; otherwise, <see langword="false" />.</returns>
</member>
<member name="M:System.Configuration.Internal.DelegatingConfigHost.PrefetchSection(System.String,System.String)">
<summary>Instructs the <see cref="T:System.Configuration.Internal.IInternalConfigHost" /> object to read a designated section of its associated configuration file.</summary>
<param name="sectionGroupName">A string representing the name of a section group in the configuration file.</param>
<param name="sectionName">A string representing the name of a section in the configuration file.</param>
<returns>
<see langword="true" /> if a section of the configuration file designated by the <paramref name="sectionGroupName" /> and <paramref name="sectionName" /> parameters can be read by a <see cref="T:System.IO.Stream" /> object; otherwise, <see langword="false" />.</returns>
</member>
<member name="M:System.Configuration.Internal.DelegatingConfigHost.ProcessConfigurationSection(System.Configuration.ConfigurationSection,System.Configuration.ConfigurationBuilder)">
<summary>Processes a <see cref="T:System.Configuration.ConfigurationSection" /> object using the provided <see cref="T:System.Configuration.ConfigurationBuilder" />.</summary>
<param name="configSection">The <see cref="T:System.Configuration.ConfigurationSection" /> to process.</param>
<param name="builder">
<see cref="T:System.Configuration.ConfigurationBuilder" /> to use to process the <paramref name="configSection" />.</param>
<returns>The processed <see cref="T:System.Configuration.ConfigurationSection" />.</returns>
</member>
<member name="M:System.Configuration.Internal.DelegatingConfigHost.ProcessRawXml(System.Xml.XmlNode,System.Configuration.ConfigurationBuilder)">
<summary>Processes the markup of a configuration section using the provided <see cref="T:System.Configuration.ConfigurationBuilder" />.</summary>
<param name="rawXml">The <see cref="T:System.Xml.XmlNode" /> to process.</param>
<param name="builder">
<see cref="T:System.Configuration.ConfigurationBuilder" /> to use to process the <paramref name="rawXml" />.</param>
<returns>The processed <see cref="T:System.Xml.XmlNode" />.</returns>
</member>
<member name="M:System.Configuration.Internal.DelegatingConfigHost.RequireCompleteInit(System.Configuration.Internal.IInternalConfigRecord)">
<summary>Indicates that a new configuration record requires a complete initialization.</summary>
<param name="configRecord">An <see cref="T:System.Configuration.Internal.IInternalConfigRecord" /> object.</param>
</member>
<member name="M:System.Configuration.Internal.DelegatingConfigHost.StartMonitoringStreamForChanges(System.String,System.Configuration.Internal.StreamChangeCallback)">
<summary>Instructs the host to monitor an associated <see cref="T:System.IO.Stream" /> object for changes in a configuration file.</summary>
<param name="streamName">The name of a <see cref="T:System.IO.Stream" /> object performing I/O tasks on a configuration file.</param>
<param name="callback">A <see cref="T:System.Configuration.Internal.StreamChangeCallback" /> object to receive the returned data representing the changes in the configuration file.</param>
<returns>An <see cref="T:System.Object" /> instance containing changed configuration settings.</returns>
</member>
<member name="M:System.Configuration.Internal.DelegatingConfigHost.StopMonitoringStreamForChanges(System.String,System.Configuration.Internal.StreamChangeCallback)">
<summary>Instructs the host object to stop monitoring an associated <see cref="T:System.IO.Stream" /> object for changes in a configuration file.</summary>
<param name="streamName">The name of a <see cref="T:System.IO.Stream" /> object performing I/O tasks on a configuration file.</param>
<param name="callback">A <see cref="T:System.Configuration.Internal.StreamChangeCallback" /> object.</param>
</member>
<member name="M:System.Configuration.Internal.DelegatingConfigHost.VerifyDefinitionAllowed(System.String,System.Configuration.ConfigurationAllowDefinition,System.Configuration.ConfigurationAllowExeDefinition,System.Configuration.Internal.IConfigErrorInfo)">
<summary>Verifies that a configuration definition is allowed for a configuration record.</summary>
<param name="configPath">A string representing the path to a configuration file.</param>
<param name="allowDefinition">An <see cref="P:System.Configuration.SectionInformation.AllowDefinition" /> object.</param>
<param name="allowExeDefinition">A <see cref="T:System.Configuration.ConfigurationAllowExeDefinition" /> object</param>
<param name="errorInfo">An <see cref="T:System.Configuration.Internal.IConfigErrorInfo" /> object.</param>
</member>
<member name="M:System.Configuration.Internal.DelegatingConfigHost.WriteCompleted(System.String,System.Boolean,System.Object)">
<summary>Indicates that all writing to the configuration file has completed.</summary>
<param name="streamName">The name of a <see cref="T:System.IO.Stream" /> object performing I/O tasks on a configuration file.</param>
<param name="success">
<see langword="true" /> if writing to the configuration file completed successfully; otherwise, <see langword="false" />.</param>
<param name="writeContext">The write context of the <see cref="T:System.IO.Stream" /> object performing I/O tasks on the configuration file.</param>
</member>
<member name="M:System.Configuration.Internal.DelegatingConfigHost.WriteCompleted(System.String,System.Boolean,System.Object,System.Boolean)">
<summary>Indicates that all writing to the configuration file has completed and specifies whether permissions should be asserted.</summary>
<param name="streamName">The name of a <see cref="T:System.IO.Stream" /> object performing I/O tasks on a configuration file.</param>
<param name="success">
<see langword="true" /> to indicate that writing was completed successfully; otherwise, <see langword="false" />.</param>
<param name="writeContext">The write context of the <see cref="T:System.IO.Stream" /> object performing I/O tasks on the configuration file.</param>
<param name="assertPermissions">
<see langword="true" /> to assert permissions; otherwise, <see langword="false" />.</param>
</member>
<member name="M:System.Configuration.Internal.IConfigSystem.Init(System.Type,System.Object[])">
<summary>Initializes a configuration object.</summary>
<param name="typeConfigHost">The type of configuration host.</param>
<param name="hostInitParams">An array of configuration host parameters.</param>
</member>
<member name="M:System.Configuration.Internal.IConfigurationManagerHelper.EnsureNetConfigLoaded">
<summary>Ensures that the networking configuration is loaded.</summary>
</member>
<member name="M:System.Configuration.Internal.IInternalConfigClientHost.GetExeConfigPath">
<summary>Returns the path to the application configuration file. </summary>
<returns>A string representing the path to the application configuration file.</returns>
</member>
<member name="M:System.Configuration.Internal.IInternalConfigClientHost.GetLocalUserConfigPath">
<summary>Returns a string representing the path to the known local user configuration file.</summary>
<returns>A string representing the path to the known local user configuration file.</returns>
</member>
<member name="M:System.Configuration.Internal.IInternalConfigClientHost.GetRoamingUserConfigPath">
<summary>Returns a string representing the path to the known roaming user configuration file.</summary>
<returns>A string representing the path to the known roaming user configuration file.</returns>
</member>
<member name="M:System.Configuration.Internal.IInternalConfigClientHost.IsExeConfig(System.String)">
<summary>Returns a value indicating whether a configuration file path is the same as a currently known application configuration file path. </summary>
<param name="configPath">A string representing the path to the application configuration file.</param>
<returns>
<see langword="true" /> if a string representing a configuration path is the same as a path to the application configuration file; <see langword="false" /> if a string representing a configuration path is not the same as a path to the application configuration file. </returns>
</member>
<member name="M:System.Configuration.Internal.IInternalConfigClientHost.IsLocalUserConfig(System.String)">
<summary>Returns a value indicating whether a configuration file path is the same as the configuration file path for the currently known local user. </summary>
<param name="configPath">A string representing the path to the application configuration file.</param>
<returns>
<see langword="true" /> if a string representing a configuration path is the same as a path to a known local user configuration file; otherwise, <see langword="false" />.</returns>
</member>
<member name="M:System.Configuration.Internal.IInternalConfigClientHost.IsRoamingUserConfig(System.String)">
<summary>Returns a value indicating whether a configuration file path is the same as the configuration file path for the currently known roaming user.</summary>
<param name="configPath">A string representing the path to an application configuration file.</param>
<returns>
<see langword="true" /> if a string representing a configuration path is the same as a path to a known roaming user configuration file; otherwise, <see langword="false" />.</returns>
</member>
<member name="M:System.Configuration.Internal.IInternalConfigConfigurationFactory.Create(System.Type,System.Object[])">
<summary>Creates and initializes a <see cref="T:System.Configuration.Configuration" /> object.</summary>
<param name="typeConfigHost">The <see cref="T:System.Type" /> of the <see cref="T:System.Configuration.Configuration" /> object to be created.</param>
<param name="hostInitConfigurationParams">A parameter array of <see cref="T:System.Object" /> that contains the parameters to be applied to the created <see cref="T:System.Configuration.Configuration" /> object.</param>
<returns>A <see cref="T:System.Configuration.Configuration" /> object.</returns>
</member>
<member name="M:System.Configuration.Internal.IInternalConfigConfigurationFactory.NormalizeLocationSubPath(System.String,System.Configuration.Internal.IConfigErrorInfo)">
<summary>Normalizes a location subpath of a path to a configuration file.</summary>
<param name="subPath">A string representing the path to the configuration file.</param>
<param name="errorInfo">An instance of <see cref="T:System.Configuration.Internal.IConfigErrorInfo" /> or <see langword="null" />.</param>
<returns>A normalized subpath string.</returns>
</member>
<member name="M:System.Configuration.Internal.IInternalConfigHost.CreateConfigurationContext(System.String,System.String)">
<summary>Creates and returns a context object for a <see cref="T:System.Configuration.ConfigurationElement" /> of an application configuration.</summary>
<param name="configPath">A string representing the path of the application configuration file.</param>
<param name="locationSubPath">A string representing a subpath location of the configuration element.</param>
<returns>A context object for a <see cref="T:System.Configuration.ConfigurationElement" /> object of an application configuration.</returns>
</member>
<member name="M:System.Configuration.Internal.IInternalConfigHost.CreateDeprecatedConfigContext(System.String)">
<summary>Creates and returns a deprecated context object of the application configuration.</summary>
<param name="configPath">A string representing a path to an application configuration file.</param>
<returns>A deprecated context object of the application configuration.</returns>
</member>
<member name="M:System.Configuration.Internal.IInternalConfigHost.DecryptSection(System.String,System.Configuration.ProtectedConfigurationProvider,System.Configuration.ProtectedConfigurationSection)">
<summary>Decrypts an encrypted configuration section and returns it as a string.</summary>
<param name="encryptedXml">An encrypted XML string representing a configuration section.</param>
<param name="protectionProvider">The <see cref="T:System.Configuration.ProtectedConfigurationProvider" /> object.</param>
<param name="protectedConfigSection">The <see cref="T:System.Configuration.ProtectedConfigurationSection" /> object.</param>
<returns>A decrypted configuration section as a string.</returns>
</member>
<member name="M:System.Configuration.Internal.IInternalConfigHost.DeleteStream(System.String)">
<summary>Deletes the <see cref="T:System.IO.Stream" /> object performing I/O tasks on the application configuration file.</summary>
<param name="streamName">A string representing the name of the <see cref="T:System.IO.Stream" /> object performing I/O tasks on the configuration file.</param>
</member>
<member name="M:System.Configuration.Internal.IInternalConfigHost.EncryptSection(System.String,System.Configuration.ProtectedConfigurationProvider,System.Configuration.ProtectedConfigurationSection)">
<summary>Encrypts a configuration section and returns it as a string.</summary>
<param name="clearTextXml">An XML string representing a configuration section to encrypt.</param>
<param name="protectionProvider">The <see cref="T:System.Configuration.ProtectedConfigurationProvider" /> object.</param>
<param name="protectedConfigSection">The <see cref="T:System.Configuration.ProtectedConfigurationSection" /> object.</param>
<returns>An encrypted configuration section represented as a string.</returns>
</member>
<member name="M:System.Configuration.Internal.IInternalConfigHost.GetConfigPathFromLocationSubPath(System.String,System.String)">
<summary>Returns the complete path to an application configuration file based on the location subpath.</summary>
<param name="configPath">A string representing the path of the application configuration file.</param>
<param name="locationSubPath">The subpath location of the configuration file.</param>
<returns>A string representing the complete path to an application configuration file.</returns>
</member>
<member name="M:System.Configuration.Internal.IInternalConfigHost.GetConfigType(System.String,System.Boolean)">
<summary>Returns a <see cref="T:System.Type" /> object representing the type of the configuration object.</summary>
<param name="typeName">The type name</param>
<param name="throwOnError">
<see langword="true" /> to throw an exception if an error occurs; otherwise, <see langword="false" /></param>
<returns>A <see cref="T:System.Type" /> object representing the type of the configuration object.</returns>
</member>
<member name="M:System.Configuration.Internal.IInternalConfigHost.GetConfigTypeName(System.Type)">
<summary>Returns a string representing a type name from the <see cref="T:System.Type" /> object representing the type of the configuration.</summary>
<param name="t">A <see cref="T:System.Type" /> object.</param>
<returns>A string representing the type name from a <see cref="T:System.Type" /> object representing the type of the configuration.</returns>
</member>
<member name="M:System.Configuration.Internal.IInternalConfigHost.GetRestrictedPermissions(System.Configuration.Internal.IInternalConfigRecord,System.Security.PermissionSet@,System.Boolean@)">
<summary>Associates the configuration with a <see cref="T:System.Security.PermissionSet" /> object.</summary>
<param name="configRecord">An <see cref="T:System.Configuration.Internal.IInternalConfigRecord" /> object.</param>
<param name="permissionSet">The <see cref="T:System.Security.PermissionSet" /> object to associate with the configuration.</param>
<param name="isHostReady">
<see langword="true" /> to indicate the configuration host is has completed building associated permissions; otherwise, <see langword="false" />.</param>
</member>
<member name="M:System.Configuration.Internal.IInternalConfigHost.GetStreamName(System.String)">
<summary>Returns a string representing the configuration file name associated with the <see cref="T:System.IO.Stream" /> object performing I/O tasks on the configuration file.</summary>
<param name="configPath">A string representing the path of the application configuration file.</param>
<returns>A string representing the configuration file name associated with the <see cref="T:System.IO.Stream" /> I/O tasks on the configuration file.</returns>
</member>
<member name="M:System.Configuration.Internal.IInternalConfigHost.GetStreamNameForConfigSource(System.String,System.String)">
<summary>Returns a string representing the configuration file name associated with the <see cref="T:System.IO.Stream" /> object performing I/O tasks on a remote configuration file.</summary>
<param name="streamName">A string representing the configuration file name associated with the <see cref="T:System.IO.Stream" /> object performing I/O tasks on the configuration file.</param>
<param name="configSource">A string representing a path to a remote configuration file.</param>
<returns>A string representing the configuration file name associated with the <see cref="T:System.IO.Stream" /> object performing I/O tasks on the configuration file.</returns>
</member>
<member name="M:System.Configuration.Internal.IInternalConfigHost.GetStreamVersion(System.String)">
<summary>Returns the version of the <see cref="T:System.IO.Stream" /> object associated with configuration file.</summary>
<param name="streamName">A string representing the name of the <see cref="T:System.IO.Stream" /> object performing I/O tasks on the configuration file.</param>
<returns>The version of the <see cref="T:System.IO.Stream" /> object associated with configuration file.</returns>
</member>
<member name="M:System.Configuration.Internal.IInternalConfigHost.Impersonate">
<summary>Instructs the host to impersonate and returns an <see cref="T:System.IDisposable" /> object required by the internal .NET structure.</summary>
<returns>An <see cref="T:System.IDisposable" /> value.</returns>
</member>
<member name="M:System.Configuration.Internal.IInternalConfigHost.Init(System.Configuration.Internal.IInternalConfigRoot,System.Object[])">
<summary>Initializes a configuration host.</summary>
<param name="configRoot">The configuration root object.</param>
<param name="hostInitParams">The parameter object containing the values used for initializing the configuration host.</param>
</member>
<member name="M:System.Configuration.Internal.IInternalConfigHost.InitForConfiguration(System.String@,System.String@,System.String@,System.Configuration.Internal.IInternalConfigRoot,System.Object[])">
<summary>Initializes a configuration object.</summary>
<param name="locationSubPath">The subpath location of the configuration file.</param>
<param name="configPath">A string representing the path of the application configuration file.</param>
<param name="locationConfigPath">A string representing the location of a configuration path.</param>
<param name="configRoot">The <see cref="T:System.Configuration.Internal.IInternalConfigRoot" /> object.</param>
<param name="hostInitConfigurationParams">The parameter object containing the values used for initializing the configuration host.</param>
</member>
<member name="M:System.Configuration.Internal.IInternalConfigHost.IsAboveApplication(System.String)">
<summary>Returns a value indicating whether the configuration file is located at a higher level in the configuration hierarchy than the application configuration.</summary>
<param name="configPath">A string representing the path of the application configuration file.</param>
<returns>
<see langword="true" /> the configuration file is located at a higher level in the configuration hierarchy than the application configuration; otherwise, <see langword="false" />.</returns>
</member>
<member name="M:System.Configuration.Internal.IInternalConfigHost.IsConfigRecordRequired(System.String)">
<summary>Returns a value indicating whether a child record is required for a child configuration path.</summary>
<param name="configPath">A string representing the path of the application configuration file.</param>
<returns>
<see langword="true" /> if child record is required for a child configuration path; otherwise, <see langword="false" />.</returns>
</member>
<member name="M:System.Configuration.Internal.IInternalConfigHost.IsDefinitionAllowed(System.String,System.Configuration.ConfigurationAllowDefinition,System.Configuration.ConfigurationAllowExeDefinition)">
<summary>Determines if a different <see cref="T:System.Type" /> definition is allowable for an application configuration object.</summary>
<param name="configPath">A string representing the path of the application configuration file.</param>
<param name="allowDefinition">A <see cref="T:System.Configuration.ConfigurationAllowDefinition" /> object.</param>
<param name="allowExeDefinition">A <see cref="T:System.Configuration.ConfigurationAllowExeDefinition" /> object.</param>
<returns>
<see langword="true" /> if a different <see cref="T:System.Type" /> definition is allowable for an application configuration object; otherwise, <see langword="false" />.</returns>
</member>
<member name="M:System.Configuration.Internal.IInternalConfigHost.IsFile(System.String)">
<summary>Returns a value indicating whether the file path used by a <see cref="T:System.IO.Stream" /> object to read a configuration file is a valid path.</summary>
<param name="streamName">A string representing the name of the <see cref="T:System.IO.Stream" /> object performing I/O tasks on the configuration file.</param>
<returns>
<see langword="true" /> if the path used by a <see cref="T:System.IO.Stream" /> object to read a configuration file is a valid path; otherwise, <see langword="false" />.</returns>
</member>
<member name="M:System.Configuration.Internal.IInternalConfigHost.IsFullTrustSectionWithoutAptcaAllowed(System.Configuration.Internal.IInternalConfigRecord)">
<summary>Returns a value indicating whether a configuration section requires a fully trusted code access security level and does not allow the <see cref="T:System.Security.AllowPartiallyTrustedCallersAttribute" /> attribute to disable implicit link demands.</summary>
<param name="configRecord">The <see cref="T:System.Configuration.Internal.IInternalConfigRecord" /> object.</param>
<returns>
<see langword="true" /> if the configuration section requires a fully trusted code access security level and does not allow the <see cref="T:System.Security.AllowPartiallyTrustedCallersAttribute" /> attribute to disable implicit link demands; otherwise, <see langword="false" />.</returns>
</member>
<member name="M:System.Configuration.Internal.IInternalConfigHost.IsInitDelayed(System.Configuration.Internal.IInternalConfigRecord)">
<summary>Returns a value indicating whether the initialization of a configuration object is considered delayed.</summary>
<param name="configRecord">The <see cref="T:System.Configuration.Internal.IInternalConfigRecord" /> object.</param>
<returns>
<see langword="true" /> if the initialization of a configuration object is considered delayed; otherwise, <see langword="false" />.</returns>
</member>
<member name="M:System.Configuration.Internal.IInternalConfigHost.IsLocationApplicable(System.String)">
<summary>Returns a value indicating whether the configuration object supports a location tag.</summary>
<param name="configPath">A string representing the path of the application configuration file.</param>
<returns>
<see langword="true" /> if the configuration object supports a location tag; otherwise, <see langword="false" />.</returns>
</member>
<member name="M:System.Configuration.Internal.IInternalConfigHost.IsSecondaryRoot(System.String)">
<summary>Returns a value indicating whether a configuration path is to a configuration node whose contents should be treated as a root.</summary>
<param name="configPath">A string representing the path of the application configuration file.</param>
<returns>
<see langword="true" /> if the configuration path is to a configuration node whose contents should be treated as a root; otherwise, <see langword="false" />.</returns>
</member>
<member name="M:System.Configuration.Internal.IInternalConfigHost.IsTrustedConfigPath(System.String)">
<summary>Returns a value indicating whether the configuration path is trusted.</summary>
<param name="configPath">A string representing the path of the application configuration file.</param>
<returns>
<see langword="true" /> if the configuration path is trusted; otherwise, <see langword="false" />.</returns>
</member>
<member name="M:System.Configuration.Internal.IInternalConfigHost.OpenStreamForRead(System.String)">
<summary>Opens a <see cref="T:System.IO.Stream" /> to read a configuration file.</summary>
<param name="streamName">A string representing the name of the <see cref="T:System.IO.Stream" /> object performing I/O tasks on the configuration file.</param>
<returns>A <see cref="T:System.IO.Stream" /> object.</returns>
</member>
<member name="M:System.Configuration.Internal.IInternalConfigHost.OpenStreamForRead(System.String,System.Boolean)">
<summary>Opens a <see cref="T:System.IO.Stream" /> object to read a configuration file.</summary>
<param name="streamName">A string representing the name of the <see cref="T:System.IO.Stream" /> object performing I/O tasks on the configuration file.</param>
<param name="assertPermissions">
<see langword="true" /> to assert permissions; otherwise, <see langword="false" />.</param>
<returns>Returns the <see cref="T:System.IO.Stream" /> object specified by <paramref name="streamName" />.</returns>
</member>
<member name="M:System.Configuration.Internal.IInternalConfigHost.OpenStreamForWrite(System.String,System.String,System.Object@)">
<summary>Opens a <see cref="T:System.IO.Stream" /> object for writing to a configuration file or for writing to a temporary file used to build a configuration file. Allows a <see cref="T:System.IO.Stream" /> object to be designated as a template for copying file attributes.</summary>
<param name="streamName">A string representing the name of the <see cref="T:System.IO.Stream" /> object performing I/O tasks on the configuration file.</param>
<param name="templateStreamName">The name of a <see cref="T:System.IO.Stream" /> object from which file attributes are to be copied as a template.</param>
<param name="writeContext">The write context of the <see cref="T:System.IO.Stream" /> object.</param>
<returns>A <see cref="T:System.IO.Stream" /> object.</returns>
</member>
<member name="M:System.Configuration.Internal.IInternalConfigHost.OpenStreamForWrite(System.String,System.String,System.Object@,System.Boolean)">
<summary>Opens a <see cref="T:System.IO.Stream" /> object for writing to a configuration file. Allows a <see cref="T:System.IO.Stream" /> object to be designated as a template for copying file attributes.</summary>
<param name="streamName">A string representing the name of the <see cref="T:System.IO.Stream" /> object performing I/O tasks on the configuration file.</param>
<param name="templateStreamName">The name of a <see cref="T:System.IO.Stream" /> from which file attributes are to be copied as a template.</param>
<param name="writeContext">The write context of the <see cref="T:System.IO.Stream" /> object performing I/O tasks on the configuration file.</param>
<param name="assertPermissions">
<see langword="true" /> to assert permissions; otherwise, <see langword="false" />.</param>
<returns>Returns the <see cref="T:System.IO.Stream" /> object specified by <paramref name="streamName" />.</returns>
</member>
<member name="M:System.Configuration.Internal.IInternalConfigHost.PrefetchAll(System.String,System.String)">
<summary>Returns a value indicating whether the entire configuration file could be read by a designated <see cref="T:System.IO.Stream" /> object.</summary>
<param name="configPath">A string representing the path of the application configuration file.</param>
<param name="streamName">A string representing the name of the <see cref="T:System.IO.Stream" /> object performing I/O tasks on the configuration file.</param>
<returns>
<see langword="true" /> if the entire configuration file could be read by the <see cref="T:System.IO.Stream" /> object designated by <paramref name="streamName" />; otherwise, <see langword="false" />.</returns>
</member>
<member name="M:System.Configuration.Internal.IInternalConfigHost.PrefetchSection(System.String,System.String)">
<summary>Instructs the <see cref="T:System.Configuration.Internal.IInternalConfigHost" /> object to read a designated section of its associated configuration file.</summary>
<param name="sectionGroupName">A string representing the identifying name of a configuration file section group.</param>
<param name="sectionName">A string representing the identifying name of a configuration file section.</param>
<returns>
<see langword="true" /> if a section of the configuration file designated by <paramref name="sectionGroupName" /> and <paramref name="sectionName" /> could be read by a <see cref="T:System.IO.Stream" /> object; otherwise, <see langword="false" />.</returns>
</member>
<member name="M:System.Configuration.Internal.IInternalConfigHost.RequireCompleteInit(System.Configuration.Internal.IInternalConfigRecord)">
<summary>Indicates a new configuration record requires a complete initialization.</summary>
<param name="configRecord">An <see cref="T:System.Configuration.Internal.IInternalConfigRecord" /> object.</param>
</member>
<member name="M:System.Configuration.Internal.IInternalConfigHost.StartMonitoringStreamForChanges(System.String,System.Configuration.Internal.StreamChangeCallback)">
<summary>Instructs the <see cref="T:System.Configuration.Internal.IInternalConfigHost" /> object to monitor an associated <see cref="T:System.IO.Stream" /> object for changes in a configuration file.</summary>
<param name="streamName">A string representing the name of the <see cref="T:System.IO.Stream" /> object performing I/O tasks on the configuration file.</param>
<param name="callback">A <see cref="T:System.Configuration.Internal.StreamChangeCallback" /> object to receive the returned data representing the changes in the configuration file.</param>
<returns>An <see cref="T:System.Object" /> containing changed configuration settings.</returns>
</member>
<member name="M:System.Configuration.Internal.IInternalConfigHost.StopMonitoringStreamForChanges(System.String,System.Configuration.Internal.StreamChangeCallback)">
<summary>Instructs the <see cref="T:System.Configuration.Internal.IInternalConfigHost" /> object to stop monitoring an associated <see cref="T:System.IO.Stream" /> object for changes in a configuration file.</summary>
<param name="streamName">A string representing the name of the <see cref="T:System.IO.Stream" /> object performing I/O tasks on the configuration file.</param>
<param name="callback">A <see cref="T:System.Configuration.Internal.StreamChangeCallback" /> object.</param>
</member>
<member name="M:System.Configuration.Internal.IInternalConfigHost.VerifyDefinitionAllowed(System.String,System.Configuration.ConfigurationAllowDefinition,System.Configuration.ConfigurationAllowExeDefinition,System.Configuration.Internal.IConfigErrorInfo)">
<summary>Verifies that a configuration definition is allowed for a configuration record.</summary>
<param name="configPath">A string representing the path of the application configuration file.</param>
<param name="allowDefinition">A <see cref="P:System.Configuration.SectionInformation.AllowDefinition" /> object.</param>
<param name="allowExeDefinition">A <see cref="T:System.Configuration.ConfigurationAllowExeDefinition" /> object</param>
<param name="errorInfo">An <see cref="T:System.Configuration.Internal.IConfigErrorInfo" /> object.</param>
</member>
<member name="M:System.Configuration.Internal.IInternalConfigHost.WriteCompleted(System.String,System.Boolean,System.Object)">
<summary>Indicates that all writing to the configuration file has completed.</summary>
<param name="streamName">A string representing the name of the <see cref="T:System.IO.Stream" /> object performing I/O tasks on the configuration file.</param>
<param name="success">
<see langword="true" /> if the write to the configuration file was completed successfully; otherwise, <see langword="false" />.</param>
<param name="writeContext">The write context of the <see cref="T:System.IO.Stream" /> object performing I/O tasks on the configuration file.</param>
</member>
<member name="M:System.Configuration.Internal.IInternalConfigHost.WriteCompleted(System.String,System.Boolean,System.Object,System.Boolean)">
<summary>Indicates that all writing to the configuration file has completed and specifies whether permissions should be asserted.</summary>
<param name="streamName">A string representing the name of the <see cref="T:System.IO.Stream" /> object performing I/O tasks on the configuration file.</param>
<param name="success">
<see langword="true" /> to indicate the write was completed successfully; otherwise, <see langword="false" />.</param>
<param name="writeContext">The write context of the <see cref="T:System.IO.Stream" /> object performing I/O tasks on the configuration file.</param>
<param name="assertPermissions">
<see langword="true" /> to assert permissions; otherwise, <see langword="false" />.</param>
</member>
<member name="M:System.Configuration.Internal.IInternalConfigRecord.GetLkgSection(System.String)">
<summary>Returns an object representing a section of a configuration from the last-known-good (LKG) configuration.</summary>
<param name="configKey">A string representing a key to a configuration section.</param>
<returns>An <see cref="T:System.Object" /> instance representing the section of the last-known-good configuration specified by <paramref name="configKey" />.</returns>
</member>
<member name="M:System.Configuration.Internal.IInternalConfigRecord.GetSection(System.String)">
<summary>Returns an <see cref="T:System.Object" /> instance representing a section of a configuration file.</summary>
<param name="configKey">A string representing a key to a configuration section.</param>
<returns>An <see cref="T:System.Object" /> instance representing a section of a configuration file.</returns>
</member>
<member name="M:System.Configuration.Internal.IInternalConfigRecord.RefreshSection(System.String)">
<summary>Causes a specified section of the configuration object to be reinitialized.</summary>
<param name="configKey">A string representing a key to a configuration section that is to be refreshed.</param>
</member>
<member name="M:System.Configuration.Internal.IInternalConfigRecord.Remove">
<summary>Removes a configuration record.</summary>
</member>
<member name="M:System.Configuration.Internal.IInternalConfigRecord.ThrowIfInitErrors">
<summary>Grants the configuration object the permission to throw an exception if an error occurs during initialization.</summary>
</member>
<member name="M:System.Configuration.Internal.IInternalConfigRoot.GetConfigRecord(System.String)">
<summary>Returns an <see cref="T:System.Configuration.Internal.IInternalConfigRecord" /> object representing a configuration specified by a configuration path.</summary>
<param name="configPath">A string representing the path to a configuration file.</param>
<returns>An <see cref="T:System.Configuration.Internal.IInternalConfigRecord" /> object representing a configuration specified by <paramref name="configPath" />.</returns>
</member>
<member name="M:System.Configuration.Internal.IInternalConfigRoot.GetSection(System.String,System.String)">
<summary>Returns an <see cref="T:System.Object" /> representing the data in a section of a configuration file.</summary>
<param name="section">A string representing a section of a configuration file.</param>
<param name="configPath">A string representing the path to a configuration file.</param>
<returns>An <see cref="T:System.Object" /> representing the data in a section of a configuration file.</returns>
</member>
<member name="M:System.Configuration.Internal.IInternalConfigRoot.GetUniqueConfigPath(System.String)">
<summary>Returns a value representing the file path of the nearest configuration ancestor that has configuration data.</summary>
<param name="configPath">The path of configuration file.</param>
<returns>Returns a string representing the file path of the nearest configuration ancestor that has configuration data.</returns>
</member>
<member name="M:System.Configuration.Internal.IInternalConfigRoot.GetUniqueConfigRecord(System.String)">
<summary>Returns an <see cref="T:System.Configuration.Internal.IInternalConfigRecord" /> object representing a unique configuration record for given configuration path.</summary>
<param name="configPath">The path of the configuration file.</param>
<returns>An <see cref="T:System.Configuration.Internal.IInternalConfigRecord" /> object representing a unique configuration record for a given configuration path.</returns>
</member>
<member name="M:System.Configuration.Internal.IInternalConfigRoot.Init(System.Configuration.Internal.IInternalConfigHost,System.Boolean)">
<summary>Initializes a configuration object.</summary>
<param name="host">An <see cref="T:System.Configuration.Internal.IInternalConfigHost" /> object.</param>
<param name="isDesignTime">
<see langword="true" /> if design time; <see langword="false" /> if run time.</param>
</member>
<member name="M:System.Configuration.Internal.IInternalConfigRoot.RemoveConfig(System.String)">
<summary>Finds and removes a configuration record and all its children for a given configuration path.</summary>
<param name="configPath">The path of the configuration file.</param>
</member>
<member name="M:System.Configuration.Internal.IInternalConfigSettingsFactory.CompleteInit">
<summary>Indicates that initialization of the configuration system has completed. </summary>
</member>
<member name="M:System.Configuration.Internal.IInternalConfigSettingsFactory.SetConfigurationSystem(System.Configuration.Internal.IInternalConfigSystem,System.Boolean)">
<summary>Provides hierarchical configuration settings and extensions specific to ASP.NET to the configuration system. </summary>
<param name="internalConfigSystem">An <see cref="T:System.Configuration.Internal.IInternalConfigSystem" /> object used by the <see cref="T:System.Configuration.ConfigurationSettings" /> class.</param>
<param name="initComplete">
<see langword="true" /> if the initialization process of the configuration system is complete; otherwise, <see langword="false" />.</param>
</member>
<member name="M:System.Configuration.Internal.IInternalConfigSystem.GetSection(System.String)">
<summary>Returns the configuration object based on the specified key. </summary>
<param name="configKey">The configuration key value.</param>
<returns>A configuration object.</returns>
</member>
<member name="M:System.Configuration.Internal.IInternalConfigSystem.RefreshConfig(System.String)">
<summary>Refreshes the configuration system based on the specified section name. </summary>
<param name="sectionName">The name of the configuration section.</param>
</member>
<member name="M:System.Configuration.Internal.IInternalConfigurationBuilderHost.ProcessConfigurationSection(System.Configuration.ConfigurationSection,System.Configuration.ConfigurationBuilder)">
<summary>Processes a <see cref="T:System.Configuration.ConfigurationSection" /> object using the provided <see cref="T:System.Configuration.ConfigurationBuilder" />.</summary>
<param name="configSection">The <see cref="T:System.Configuration.ConfigurationSection" /> to process.</param>
<param name="builder">
<see cref="T:System.Configuration.ConfigurationBuilder" /> to use to process the <paramref name="configSection" />.</param>
<returns>The processed <see cref="T:System.Configuration.ConfigurationSection" />.</returns>
</member>
<member name="M:System.Configuration.Internal.IInternalConfigurationBuilderHost.ProcessRawXml(System.Xml.XmlNode,System.Configuration.ConfigurationBuilder)">
<summary>Processes the markup of a configuration section using the provided <see cref="T:System.Configuration.ConfigurationBuilder" />.</summary>
<param name="rawXml">The <see cref="T:System.Xml.XmlNode" /> to process.</param>
<param name="builder">
<see cref="T:System.Configuration.ConfigurationBuilder" /> to use to process the <paramref name="rawXml" />.</param>
<returns>The processed <see cref="T:System.Xml.XmlNode" />.</returns>
</member>
<member name="M:System.Configuration.Internal.InternalConfigEventArgs.#ctor(System.String)">
<summary>Initializes a new instance of the <see cref="T:System.Configuration.Internal.InternalConfigEventArgs" /> class.</summary>
<param name="configPath">A configuration path.</param>
</member>
<member name="M:System.Configuration.KeyValueConfigurationCollection.#ctor">
<summary>Initializes a new instance of the <see cref="T:System.Configuration.KeyValueConfigurationCollection" /> class.</summary>
</member>
<member name="M:System.Configuration.KeyValueConfigurationCollection.Add(System.Configuration.KeyValueConfigurationElement)">
<summary>Adds a <see cref="T:System.Configuration.KeyValueConfigurationElement" /> object to the collection based on the supplied parameters.</summary>
<param name="keyValue">A <see cref="T:System.Configuration.KeyValueConfigurationElement" />.</param>
</member>
<member name="M:System.Configuration.KeyValueConfigurationCollection.Add(System.String,System.String)">
<summary>Adds a <see cref="T:System.Configuration.KeyValueConfigurationElement" /> object to the collection based on the supplied parameters.</summary>
<param name="key">A string specifying the key.</param>
<param name="value">A string specifying the value.</param>
</member>
<member name="M:System.Configuration.KeyValueConfigurationCollection.Clear">
<summary>Clears the <see cref="T:System.Configuration.KeyValueConfigurationCollection" /> collection.</summary>
</member>
<member name="M:System.Configuration.KeyValueConfigurationCollection.CreateNewElement">
<summary>When overridden in a derived class, the <see cref="M:System.Configuration.KeyValueConfigurationCollection.CreateNewElement" /> method creates a new <see cref="T:System.Configuration.KeyValueConfigurationElement" /> object.</summary>
<returns>A newly created <see cref="T:System.Configuration.KeyValueConfigurationElement" />.</returns>
</member>
<member name="M:System.Configuration.KeyValueConfigurationCollection.GetElementKey(System.Configuration.ConfigurationElement)">
<summary>Gets the element key for a specified configuration element when overridden in a derived class.</summary>
<param name="element">The <see cref="T:System.Configuration.KeyValueConfigurationElement" /> to which the key should be returned.</param>
<returns>An object that acts as the key for the specified <see cref="T:System.Configuration.KeyValueConfigurationElement" />.</returns>
</member>
<member name="M:System.Configuration.KeyValueConfigurationCollection.Remove(System.String)">
<summary>Removes a <see cref="T:System.Configuration.KeyValueConfigurationElement" /> object from the collection.</summary>
<param name="key">A string specifying the <paramref name="key" />.</param>
</member>
<member name="M:System.Configuration.KeyValueConfigurationElement.#ctor(System.String,System.String)">
<summary>Initializes a new instance of the <see cref="T:System.Configuration.KeyValueConfigurationElement" /> class based on the supplied parameters.</summary>
<param name="key">The key of the <see cref="T:System.Configuration.KeyValueConfigurationElement" />.</param>
<param name="value">The value of the <see cref="T:System.Configuration.KeyValueConfigurationElement" />.</param>
</member>
<member name="M:System.Configuration.KeyValueConfigurationElement.Init">
<summary>Sets the <see cref="T:System.Configuration.KeyValueConfigurationElement" /> object to its initial state.</summary>
</member>
<member name="M:System.Configuration.LongValidator.#ctor(System.Int64,System.Int64)">
<summary>Initializes a new instance of the <see cref="T:System.Configuration.LongValidator" /> class. </summary>
<param name="minValue">An <see cref="T:System.Int64" /> value that specifies the minimum length of the <see langword="long" /> value.</param>
<param name="maxValue">An <see cref="T:System.Int64" /> value that specifies the maximum length of the <see langword="long" /> value.</param>
</member>
<member name="M:System.Configuration.LongValidator.#ctor(System.Int64,System.Int64,System.Boolean)">
<summary>Initializes a new instance of the <see cref="T:System.Configuration.LongValidator" /> class. </summary>
<param name="minValue">An <see cref="T:System.Int64" /> value that specifies the minimum length of the <see langword="long" /> value.</param>
<param name="maxValue">An <see cref="T:System.Int64" /> value that specifies the maximum length of the <see langword="long" /> value.</param>
<param name="rangeIsExclusive">A <see cref="T:System.Boolean" /> value that specifies whether the validation range is exclusive.</param>
</member>
<member name="M:System.Configuration.LongValidator.#ctor(System.Int64,System.Int64,System.Boolean,System.Int64)">
<summary>Initializes a new instance of the <see cref="T:System.Configuration.LongValidator" /> class. </summary>
<param name="minValue">An <see cref="T:System.Int64" /> value that specifies the minimum length of the <see langword="long" /> value.</param>
<param name="maxValue">An <see cref="T:System.Int64" /> value that specifies the maximum length of the <see langword="long" /> value.</param>
<param name="rangeIsExclusive">A <see cref="T:System.Boolean" /> value that specifies whether the validation range is exclusive.</param>
<param name="resolution">An <see cref="T:System.Int64" /> value that specifies a specific value that must be matched.</param>
<exception cref="T:System.ArgumentOutOfRangeException">
<paramref name="resolution" /> is equal to or less than <see langword="0" />.- or -
<paramref name="maxValue" /> is less than <paramref name="minValue" />.</exception>
</member>
<member name="M:System.Configuration.LongValidator.CanValidate(System.Type)">
<summary>Determines whether the type of the object can be validated.</summary>
<param name="type">The type of object.</param>
<returns>
<see langword="true" /> if the <paramref name="type" /> parameter matches an <see cref="T:System.Int64" /> value; otherwise, <see langword="false" />. </returns>
</member>
<member name="M:System.Configuration.LongValidator.Validate(System.Object)">
<summary>Determines whether the value of an object is valid.</summary>
<param name="value">The value of an object.</param>
</member>
<member name="M:System.Configuration.LongValidatorAttribute.#ctor">
<summary>Initializes a new instance of the <see cref="T:System.Configuration.LongValidatorAttribute" /> class.</summary>
</member>
<member name="M:System.Configuration.NameValueConfigurationCollection.#ctor">
<summary>Initializes a new instance of the <see cref="T:System.Configuration.NameValueConfigurationCollection" /> class.</summary>
</member>
<member name="M:System.Configuration.NameValueConfigurationCollection.Add(System.Configuration.NameValueConfigurationElement)">
<summary>Adds a <see cref="T:System.Configuration.NameValueConfigurationElement" /> object to the collection.</summary>
<param name="nameValue">A <see cref="T:System.Configuration.NameValueConfigurationElement" /> object.</param>
</member>
<member name="M:System.Configuration.NameValueConfigurationCollection.Clear">
<summary>Clears the <see cref="T:System.Configuration.NameValueConfigurationCollection" />.</summary>
</member>
<member name="M:System.Configuration.NameValueConfigurationCollection.Remove(System.Configuration.NameValueConfigurationElement)">
<summary>Removes a <see cref="T:System.Configuration.NameValueConfigurationElement" /> object from the collection based on the provided parameter.</summary>
<param name="nameValue">A <see cref="T:System.Configuration.NameValueConfigurationElement" /> object.</param>
</member>
<member name="M:System.Configuration.NameValueConfigurationCollection.Remove(System.String)">
<summary>Removes a <see cref="T:System.Configuration.NameValueConfigurationElement" /> object from the collection based on the provided parameter.</summary>
<param name="name">The name of the <see cref="T:System.Configuration.NameValueConfigurationElement" /> object.</param>
</member>
<member name="M:System.Configuration.NameValueConfigurationElement.#ctor(System.String,System.String)">
<summary>Initializes a new instance of the <see cref="T:System.Configuration.NameValueConfigurationElement" /> class based on supplied parameters.</summary>
<param name="name">The name of the <see cref="T:System.Configuration.NameValueConfigurationElement" /> object.</param>
<param name="value">The value of the <see cref="T:System.Configuration.NameValueConfigurationElement" /> object.</param>
</member>
<member name="M:System.Configuration.PositiveTimeSpanValidator.#ctor">
<summary>Initializes a new instance of the <see cref="T:System.Configuration.PositiveTimeSpanValidator" /> class. </summary>
</member>
<member name="M:System.Configuration.PositiveTimeSpanValidator.CanValidate(System.Type)">
<summary>Determines whether the object type can be validated.</summary>
<param name="type">The object type.</param>
<returns>
<see langword="true" /> if the <paramref name="type" /> parameter matches a <see cref="T:System.TimeSpan" /> object; otherwise, <see langword="false" />. </returns>
</member>
<member name="M:System.Configuration.PositiveTimeSpanValidator.Validate(System.Object)">
<summary>Determines whether the value of an object is valid.</summary>
<param name="value">The value of an object.</param>
<exception cref="T:System.ArgumentNullException">
<paramref name="value" /> is <see langword="null" />.</exception>
<exception cref="T:System.ArgumentException">
<paramref name="value" /> cannot be resolved as a positive <see cref="T:System.TimeSpan" /> value.</exception>
</member>
<member name="M:System.Configuration.PositiveTimeSpanValidatorAttribute.#ctor">
<summary>Initializes a new instance of the <see cref="T:System.Configuration.PositiveTimeSpanValidatorAttribute" /> class. </summary>
</member>
<member name="M:System.Configuration.PropertyInformationCollection.CopyTo(System.Configuration.PropertyInformation[],System.Int32)">
<summary>Copies the entire <see cref="T:System.Configuration.PropertyInformationCollection" /> collection to a compatible one-dimensional <see cref="T:System.Array" />, starting at the specified index of the target array.</summary>
<param name="array">A one-dimensional <see cref="T:System.Array" /> that is the destination of the elements copied from the <see cref="T:System.Configuration.PropertyInformationCollection" /> collection. The <see cref="T:System.Array" /> must have zero-based indexing.</param>
<param name="index">The zero-based index in <paramref name="array" /> at which copying begins.</param>
<exception cref="T:System.ArgumentNullException">
<paramref name="array" /> is <see langword="null" />.</exception>
<exception cref="T:System.ArgumentOutOfRangeException">The <see cref="P:System.Array.Length" /> property of <paramref name="array" /> is less than <see cref="P:System.Collections.Specialized.NameObjectCollectionBase.Count" /> + <paramref name="index" />.</exception>
</member>
<member name="M:System.Configuration.PropertyInformationCollection.GetEnumerator">
<summary>Gets an <see cref="T:System.Collections.IEnumerator" /> object, which is used to iterate through this <see cref="T:System.Configuration.PropertyInformationCollection" /> collection.</summary>
<returns>An <see cref="T:System.Collections.IEnumerator" /> object, which is used to iterate through this <see cref="T:System.Configuration.PropertyInformationCollection" />.</returns>
</member>
<member name="M:System.Configuration.PropertyInformationCollection.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>Populates a <see cref="T:System.Runtime.Serialization.SerializationInfo" /> object with the data needed to serialize the <see cref="T:System.Configuration.PropertyInformationCollection" /> instance.</summary>
<param name="info">A <see cref="T:System.Runtime.Serialization.SerializationInfo" /> object that contains the information required to serialize the <see cref="T:System.Configuration.PropertyInformationCollection" /> instance.</param>
<param name="context">A <see cref="T:System.Runtime.Serialization.StreamingContext" /> object that contains the source and destination of the serialized stream associated with the <see cref="T:System.Configuration.PropertyInformationCollection" /> instance.</param>
<exception cref="T:System.ArgumentNullException">
<paramref name="info" /> is <see langword="null" />.</exception>
</member>
<member name="M:System.Configuration.ProtectedConfigurationProvider.#ctor">
<summary>Initializes a new instance of the <see cref="T:System.Configuration.ProtectedConfigurationProvider" /> class using default settings.</summary>
</member>
<member name="M:System.Configuration.ProtectedConfigurationProvider.Decrypt(System.Xml.XmlNode)">
<summary>Decrypts the passed <see cref="T:System.Xml.XmlNode" /> object from a configuration file.</summary>
<param name="encryptedNode">The <see cref="T:System.Xml.XmlNode" /> object to decrypt.</param>
<returns>The <see cref="T:System.Xml.XmlNode" /> object containing decrypted data.</returns>
</member>
<member name="M:System.Configuration.ProtectedConfigurationProvider.Encrypt(System.Xml.XmlNode)">
<summary>Encrypts the passed <see cref="T:System.Xml.XmlNode" /> object from a configuration file.</summary>
<param name="node">The <see cref="T:System.Xml.XmlNode" /> object to encrypt.</param>
<returns>The <see cref="T:System.Xml.XmlNode" /> object containing encrypted data.</returns>
</member>
<member name="M:System.Configuration.ProtectedConfigurationProviderCollection.#ctor">
<summary>Initializes a new instance of the <see cref="T:System.Configuration.ProtectedConfigurationProviderCollection" /> class using default settings.</summary>
</member>
<member name="M:System.Configuration.ProtectedConfigurationProviderCollection.Add(System.Configuration.Provider.ProviderBase)">
<summary>Adds a <see cref="T:System.Configuration.ProtectedConfigurationProvider" /> object to the collection.</summary>
<param name="provider">A <see cref="T:System.Configuration.ProtectedConfigurationProvider" /> object to add to the collection.</param>
<exception cref="T:System.ArgumentNullException">
<paramref name="provider" /> is <see langword="null" />.</exception>
<exception cref="T:System.ArgumentException">
<paramref name="provider" /> is not a <see cref="T:System.Configuration.ProtectedConfigurationProvider" /> object.</exception>
<exception cref="T:System.Configuration.ConfigurationException">The <see cref="T:System.Configuration.ProtectedConfigurationProvider" /> object to add already exists in the collection.- or -The collection is read-only.</exception>
</member>
<member name="M:System.Configuration.ProtectedConfigurationSection.#ctor">
<summary>Initializes a new instance of the <see cref="T:System.Configuration.ProtectedConfigurationSection" /> class using default settings.</summary>
</member>
<member name="M:System.Configuration.ProtectedProviderSettings.#ctor">
<summary>Initializes a new instance of the <see cref="T:System.Configuration.ProtectedProviderSettings" /> class. </summary>
</member>
<member name="M:System.Configuration.Provider.ProviderBase.#ctor">
<summary>Initializes a new instance of the <see cref="T:System.Configuration.Provider.ProviderBase" /> class. </summary>
</member>
<member name="M:System.Configuration.Provider.ProviderBase.Initialize(System.String,System.Collections.Specialized.NameValueCollection)">
<summary>Initializes the configuration builder.</summary>
<param name="name">The friendly name of the provider.</param>
<param name="config">A collection of the name/value pairs representing the provider-specific attributes specified in the configuration for this provider.</param>
<exception cref="T:System.ArgumentNullException">The name of the provider is <see langword="null" />.</exception>
<exception cref="T:System.ArgumentException">The name of the provider has a length of zero.</exception>
<exception cref="T:System.InvalidOperationException">An attempt is made to call <see cref="M:System.Configuration.Provider.ProviderBase.Initialize(System.String,System.Collections.Specialized.NameValueCollection)" /> on a provider after the provider has already been initialized.</exception>
</member>
<member name="M:System.Configuration.Provider.ProviderCollection.#ctor">
<summary>Initializes a new instance of the <see cref="T:System.Configuration.Provider.ProviderCollection" /> class. </summary>
</member>
<member name="M:System.Configuration.Provider.ProviderCollection.Add(System.Configuration.Provider.ProviderBase)">
<summary>Adds a provider to the collection.</summary>
<param name="provider">The provider to be added.</param>
<exception cref="T:System.NotSupportedException">The collection is read-only.</exception>
<exception cref="T:System.ArgumentNullException">
<paramref name="provider" /> is <see langword="null" />.</exception>
<exception cref="T:System.ArgumentException">The <see cref="P:System.Configuration.Provider.ProviderBase.Name" /> of <paramref name="provider" /> is <see langword="null" />.- or -The length of the <see cref="P:System.Configuration.Provider.ProviderBase.Name" /> of <paramref name="provider" /> is less than 1.</exception>
</member>
<member name="M:System.Configuration.Provider.ProviderCollection.Clear">
<summary>Removes all items from the collection.</summary>
<exception cref="T:System.NotSupportedException">The collection is set to read-only.</exception>
</member>
<member name="M:System.Configuration.Provider.ProviderCollection.CopyTo(System.Configuration.Provider.ProviderBase[],System.Int32)">
<summary>Copies the contents of the collection to the given array starting at the specified index.</summary>
<param name="array">The array to copy the elements of the collection to.</param>
<param name="index">The index of the collection item at which to start the copying process.</param>
</member>
<member name="M:System.Configuration.Provider.ProviderCollection.GetEnumerator">
<summary>Returns an object that implements the <see cref="T:System.Collections.IEnumerator" /> interface to iterate through the collection.</summary>
<returns>An object that implements <see cref="T:System.Collections.IEnumerator" /> to iterate through the collection.</returns>
</member>
<member name="M:System.Configuration.Provider.ProviderCollection.Remove(System.String)">
<summary>Removes a provider from the collection.</summary>
<param name="name">The name of the provider to be removed.</param>
<exception cref="T:System.NotSupportedException">The collection has been set to read-only.</exception>
</member>
<member name="M:System.Configuration.Provider.ProviderCollection.SetReadOnly">
<summary>Sets the collection to be read-only.</summary>
</member>
<member name="M:System.Configuration.Provider.ProviderCollection.System#Collections#ICollection#CopyTo(System.Array,System.Int32)">
<summary>Copies the elements of the <see cref="T:System.Configuration.Provider.ProviderCollection" /> to an array, starting at a particular array index.</summary>
<param name="array">The array to copy the elements of the collection to.</param>
<param name="index">The index of the array at which to start copying provider instances from the collection.</param>
</member>
<member name="M:System.Configuration.Provider.ProviderException.#ctor">
<summary>Creates a new instance of the <see cref="T:System.Configuration.Provider.ProviderException" /> class.</summary>
</member>
<member name="M:System.Configuration.Provider.ProviderException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>Creates a new instance of the <see cref="T:System.Configuration.Provider.ProviderException" /> class.</summary>
<param name="info">The object that holds the information to deserialize.</param>
<param name="context">Contextual information about the source or destination.</param>
</member>
<member name="M:System.Configuration.Provider.ProviderException.#ctor(System.String)">
<summary>Creates a new instance of the <see cref="T:System.Configuration.Provider.ProviderException" /> class.</summary>
<param name="message">A message describing why this <see cref="T:System.Configuration.Provider.ProviderException" /> was thrown.</param>
</member>
<member name="M:System.Configuration.Provider.ProviderException.#ctor(System.String,System.Exception)">
<summary>Creates a new instance of the <see cref="T:System.Configuration.Provider.ProviderException" /> class.</summary>
<param name="message">A message describing why this <see cref="T:System.Configuration.Provider.ProviderException" /> was thrown.</param>
<param name="innerException">The exception that caused this <see cref="T:System.Configuration.Provider.ProviderException" /> to be thrown.</param>
</member>
<member name="M:System.Configuration.ProviderSettings.#ctor">
<summary>Initializes a new instance of the <see cref="T:System.Configuration.ProviderSettings" /> class. </summary>
</member>
<member name="M:System.Configuration.ProviderSettings.#ctor(System.String,System.String)">
<summary>Initializes a new instance of the <see cref="T:System.Configuration.ProviderSettings" /> class. </summary>
<param name="name">The name of the provider to configure settings for.</param>
<param name="type">The type of the provider to configure settings for.</param>
</member>
<member name="M:System.Configuration.ProviderSettingsCollection.#ctor">
<summary>Initializes a new instance of the <see cref="T:System.Configuration.ProviderSettingsCollection" /> class. </summary>
</member>
<member name="M:System.Configuration.ProviderSettingsCollection.Add(System.Configuration.ProviderSettings)">
<summary>Adds a <see cref="T:System.Configuration.ProviderSettings" /> object to the collection.</summary>
<param name="provider">The <see cref="T:System.Configuration.ProviderSettings" /> object to add.</param>
</member>
<member name="M:System.Configuration.ProviderSettingsCollection.Clear">
<summary>Clears the collection.</summary>
</member>
<member name="M:System.Configuration.ProviderSettingsCollection.Remove(System.String)">
<summary>Removes an element from the collection.</summary>
<param name="name">The name of the <see cref="T:System.Configuration.ProviderSettings" /> object to remove.</param>
</member>
<member name="M:System.Configuration.RegexStringValidator.#ctor(System.String)">
<summary>Initializes a new instance of the <see cref="T:System.Configuration.RegexStringValidator" /> class. </summary>
<param name="regex">A string that specifies a regular expression.</param>
<exception cref="T:System.ArgumentException">
<paramref name="regex" /> is null or an empty string ("").</exception>
</member>
<member name="M:System.Configuration.RegexStringValidator.CanValidate(System.Type)">
<summary>Determines whether the type of the object can be validated.</summary>
<param name="type">The type of object.</param>
<returns>
<see langword="true" /> if the <paramref name="type" /> parameter matches a string; otherwise, <see langword="false" />. </returns>
</member>
<member name="M:System.Configuration.RegexStringValidator.Validate(System.Object)">
<summary>Determines whether the value of an object is valid.</summary>
<param name="value">The value of an object.</param>
<exception cref="T:System.ArgumentException">
<paramref name="value" /> does not conform to the parameters of the <see cref="T:System.Text.RegularExpressions.Regex" /> class.</exception>
</member>
<member name="M:System.Configuration.RegexStringValidatorAttribute.#ctor(System.String)">
<summary>Initializes a new instance of the <see cref="T:System.Configuration.RegexStringValidatorAttribute" /> object.</summary>
<param name="regex">The string to use for regular expression validation.</param>
</member>
<member name="M:System.Configuration.RsaProtectedConfigurationProvider.#ctor">
<summary>Initializes a new instance of the <see cref="T:System.Configuration.RsaProtectedConfigurationProvider" /> class. </summary>
</member>
<member name="M:System.Configuration.RsaProtectedConfigurationProvider.AddKey(System.Int32,System.Boolean)">
<summary>Adds a key to the RSA key container.</summary>
<param name="keySize">The size of the key to add.</param>
<param name="exportable">
<see langword="true" /> to indicate that the key is exportable; otherwise, <see langword="false" />.</param>
</member>
<member name="M:System.Configuration.RsaProtectedConfigurationProvider.Decrypt(System.Xml.XmlNode)">
<summary>Decrypts the XML node passed to it.</summary>
<param name="encryptedNode">The <see cref="T:System.Xml.XmlNode" /> to decrypt.</param>
<returns>The decrypted XML node.</returns>
</member>
<member name="M:System.Configuration.RsaProtectedConfigurationProvider.DeleteKey">
<summary>Removes a key from the RSA key container.</summary>
</member>
<member name="M:System.Configuration.RsaProtectedConfigurationProvider.Encrypt(System.Xml.XmlNode)">
<summary>Encrypts the XML node passed to it.</summary>
<param name="node">The <see cref="T:System.Xml.XmlNode" /> to encrypt.</param>
<returns>An encrypted <see cref="T:System.Xml.XmlNode" /> object.</returns>
</member>
<member name="M:System.Configuration.RsaProtectedConfigurationProvider.ExportKey(System.String,System.Boolean)">
<summary>Exports an RSA key from the key container.</summary>
<param name="xmlFileName">The file name and path to export the key to.</param>
<param name="includePrivateParameters">
<see langword="true" /> to indicate that private parameters are exported; otherwise, <see langword="false" />.</param>
<exception cref="T:System.ArgumentException">
<paramref name="path" /> is a zero-length string, contains only white space, or contains one or more invalid characters as defined by <see cref="F:System.IO.Path.InvalidPathChars" />. </exception>
<exception cref="T:System.ArgumentNullException">
<paramref name="path" /> is <see langword="null" />. </exception>
<exception cref="T:System.IO.PathTooLongException">The specified path, file name, or both exceed the system-defined maximum length. For example, on Windows-based platforms, paths must be less than 248 characters, and file names must be less than 260 characters. </exception>
<exception cref="T:System.IO.DirectoryNotFoundException">The specified path is invalid, such as being on an unmapped drive. </exception>
<exception cref="T:System.IO.IOException">An error occurred while opening the file. </exception>
<exception cref="T:System.UnauthorizedAccessException">
<paramref name="path" /> specified a file that is read-only.-or- This operation is not supported on the current platform.-or-
<paramref name="path" /> specified a directory.-or- The caller does not have the required permission. </exception>
<exception cref="T:System.IO.FileNotFoundException">The file specified in <paramref name="path" /> was not found. </exception>
<exception cref="T:System.NotSupportedException">
<paramref name="path" /> is in an invalid format. </exception>
<exception cref="T:System.Security.SecurityException">The caller does not have the required permission. </exception>
</member>
<member name="M:System.Configuration.RsaProtectedConfigurationProvider.ImportKey(System.String,System.Boolean)">
<summary>Imports an RSA key into the key container.</summary>
<param name="xmlFileName">The file name and path to import the key from.</param>
<param name="exportable">
<see langword="true" /> to indicate that the key is exportable; otherwise, <see langword="false" />.</param>
<exception cref="T:System.ArgumentException">
<paramref name="path" /> is a zero-length string, contains only white space, or contains one or more invalid characters as defined by <see cref="F:System.IO.Path.InvalidPathChars" />. </exception>
<exception cref="T:System.ArgumentNullException">
<paramref name="path" /> is <see langword="null" />.</exception>
<exception cref="T:System.IO.PathTooLongException">The specified path, file name, or both exceed the system-defined maximum length. For example, on Windows-based platforms, paths must be less than 248 characters, and file names must be less than 260 characters. </exception>
<exception cref="T:System.IO.DirectoryNotFoundException">The specified path is invalid, such as being on an unmapped drive. </exception>
<exception cref="T:System.IO.IOException">An error occurred while opening the file. </exception>
<exception cref="T:System.UnauthorizedAccessException">
<paramref name="path" /> specified a file that is write-only.-or- This operation is not supported on the current platform.-or-
<paramref name="path" /> specified a directory.-or- The caller does not have the required permission. </exception>
<exception cref="T:System.IO.FileNotFoundException">The file specified in <paramref name="path" /> was not found. </exception>
<exception cref="T:System.NotSupportedException">
<paramref name="path" /> is in an invalid format. </exception>
</member>
<member name="M:System.Configuration.RsaProtectedConfigurationProvider.Initialize(System.String,System.Collections.Specialized.NameValueCollection)">
<summary>Initializes the provider with default settings.</summary>
<param name="name">The provider name to use for the object.</param>
<param name="configurationValues">A <see cref="T:System.Collections.Specialized.NameValueCollection" /> collection of values to use when initializing the object.</param>
<exception cref="T:System.Configuration.ConfigurationErrorsException">
<paramref name="configurationValues" /> includes one or more unrecognized values.</exception>
</member>
<member name="M:System.Configuration.SectionInformation.ForceDeclaration">
<summary>Forces the associated configuration section to appear in the configuration file.</summary>
</member>
<member name="M:System.Configuration.SectionInformation.ForceDeclaration(System.Boolean)">
<summary>Forces the associated configuration section to appear in the configuration file, or removes an existing section from the configuration file.</summary>
<param name="force">
<see langword="true" /> if the associated section should be written in the configuration file; otherwise, <see langword="false" />.</param>
<exception cref="T:System.Configuration.ConfigurationErrorsException">
<paramref name="force" /> is <see langword="true" /> and the associated section cannot be exported to the child configuration file, or it is undeclared.</exception>
</member>
<member name="M:System.Configuration.SectionInformation.GetParentSection">
<summary>Gets the configuration section that contains the configuration section associated with this object.</summary>
<returns>The configuration section that contains the <see cref="T:System.Configuration.ConfigurationSection" /> that is associated with this <see cref="T:System.Configuration.SectionInformation" /> object.</returns>
<exception cref="T:System.InvalidOperationException">The method is invoked from a parent section.</exception>
</member>
<member name="M:System.Configuration.SectionInformation.GetRawXml">
<summary>Returns an XML node object that represents the associated configuration-section object.</summary>
<returns>The XML representation for this configuration section.</returns>
<exception cref="T:System.InvalidOperationException">This configuration object is locked and cannot be edited.</exception>
</member>
<member name="M:System.Configuration.SectionInformation.ProtectSection(System.String)">
<summary>Marks a configuration section for protection. </summary>
<param name="protectionProvider">The name of the protection provider to use.</param>
<exception cref="T:System.InvalidOperationException">The <see cref="P:System.Configuration.SectionInformation.AllowLocation" /> property is set to <see langword="false" />.- or -The target section is already a protected data section.</exception>
</member>
<member name="M:System.Configuration.SectionInformation.RevertToParent">
<summary>Causes the associated configuration section to inherit all its values from the parent section.</summary>
<exception cref="T:System.InvalidOperationException">This method cannot be called outside editing mode.</exception>
</member>
<member name="M:System.Configuration.SectionInformation.SetRawXml(System.String)">
<summary>Sets the object to an XML representation of the associated configuration section within the configuration file.</summary>
<param name="rawXml">The XML to use.</param>
<exception cref="T:System.ArgumentException">
<paramref name="rawXml" /> is <see langword="null" />.</exception>
</member>
<member name="M:System.Configuration.SectionInformation.UnprotectSection">
<summary>Removes the protected configuration encryption from the associated configuration section.</summary>
</member>
<member name="M:System.Configuration.StringValidator.#ctor(System.Int32)">
<summary>Initializes a new instance of the <see cref="T:System.Configuration.StringValidator" /> class, based on a supplied parameter.</summary>
<param name="minLength">An integer that specifies the minimum length of the string value.</param>
</member>
<member name="M:System.Configuration.StringValidator.#ctor(System.Int32,System.Int32)">
<summary>Initializes a new instance of the <see cref="T:System.Configuration.StringValidator" /> class, based on supplied parameters.</summary>
<param name="minLength">An integer that specifies the minimum length of the string value.</param>
<param name="maxLength">An integer that specifies the maximum length of the string value.</param>
</member>
<member name="M:System.Configuration.StringValidator.#ctor(System.Int32,System.Int32,System.String)">
<summary>Initializes a new instance of the <see cref="T:System.Configuration.StringValidator" /> class, based on supplied parameters.</summary>
<param name="minLength">An integer that specifies the minimum length of the string value.</param>
<param name="maxLength">An integer that specifies the maximum length of the string value.</param>
<param name="invalidCharacters">A string that represents invalid characters. </param>
</member>
<member name="M:System.Configuration.StringValidator.CanValidate(System.Type)">
<summary>Determines whether an object can be validated based on type.</summary>
<param name="type">The object type.</param>
<returns>
<see langword="true" /> if the <paramref name="type" /> parameter matches a string; otherwise, <see langword="false" />. </returns>
</member>
<member name="M:System.Configuration.StringValidator.Validate(System.Object)">
<summary>Determines whether the value of an object is valid. </summary>
<param name="value">The object value.</param>
<exception cref="T:System.ArgumentException">
<paramref name="value" /> is less than <paramref name="minValue" /> or greater than <paramref name="maxValue" /> as defined in the constructor.- or -
<paramref name="value" /> contains invalid characters.</exception>
</member>
<member name="M:System.Configuration.StringValidatorAttribute.#ctor">
<summary>Initializes a new instance of the <see cref="T:System.Configuration.StringValidatorAttribute" /> class.</summary>
</member>
<member name="M:System.Configuration.SubclassTypeValidator.#ctor(System.Type)">
<summary>Initializes a new instance of the <see cref="T:System.Configuration.SubclassTypeValidator" /> class. </summary>
<param name="baseClass">The base class to validate against.</param>
<exception cref="T:System.ArgumentNullException">
<paramref name="baseClass" /> is <see langword="null" />.</exception>
</member>
<member name="M:System.Configuration.SubclassTypeValidator.CanValidate(System.Type)">
<summary>Determines whether an object can be validated based on type.</summary>
<param name="type">The object type.</param>
<returns>
<see langword="true" /> if the <paramref name="type" /> parameter matches a type that can be validated; otherwise, <see langword="false" />. </returns>
</member>
<member name="M:System.Configuration.SubclassTypeValidator.Validate(System.Object)">
<summary>Determines whether the value of an object is valid. </summary>
<param name="value">The object value.</param>
<exception cref="T:System.ArgumentException">
<paramref name="value" /> is not of a <see cref="T:System.Type" /> that can be derived from <paramref name="baseClass" /> as defined in the constructor.</exception>
</member>
<member name="M:System.Configuration.SubclassTypeValidatorAttribute.#ctor(System.Type)">
<summary>Initializes a new instance of the <see cref="T:System.Configuration.SubclassTypeValidatorAttribute" /> class. </summary>
<param name="baseClass">The base class type.</param>
</member>
<member name="M:System.Configuration.TimeSpanMinutesConverter.#ctor">
<summary>Initializes a new instance of the <see cref="T:System.Configuration.TimeSpanMinutesConverter" /> class.</summary>
</member>
<member name="M:System.Configuration.TimeSpanMinutesConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object)">
<summary>Converts a <see cref="T:System.String" /> to a <see cref="T:System.TimeSpan" />.</summary>
<param name="ctx">The <see cref="T:System.ComponentModel.ITypeDescriptorContext" /> object used for type conversions.</param>
<param name="ci">The <see cref="T:System.Globalization.CultureInfo" /> object used during conversion.</param>
<param name="data">The <see cref="T:System.String" /> object to convert.</param>
<returns>The <see cref="T:System.TimeSpan" /> representing the <paramref name="data" /> parameter in minutes.</returns>
</member>
<member name="M:System.Configuration.TimeSpanMinutesConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object,System.Type)">
<summary>Converts a <see cref="T:System.TimeSpan" /> to a <see cref="T:System.String" />. </summary>
<param name="ctx">The <see cref="T:System.ComponentModel.ITypeDescriptorContext" /> object used for type conversions.</param>
<param name="ci">The <see cref="T:System.Globalization.CultureInfo" /> object used during conversion.</param>
<param name="value">The value to convert to.</param>
<param name="type">The type to convert to.</param>
<returns>The <see cref="T:System.String" /> representing the <paramref name="value" /> parameter in minutes.</returns>
</member>
<member name="M:System.Configuration.TimeSpanMinutesOrInfiniteConverter.#ctor">
<summary>Initializes a new instance of the <see cref="T:System.Configuration.TimeSpanMinutesOrInfiniteConverter" /> class.</summary>
</member>
<member name="M:System.Configuration.TimeSpanMinutesOrInfiniteConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object)">
<summary>Converts a <see cref="T:System.String" /> to a <see cref="T:System.TimeSpan" />.</summary>
<param name="ctx">The <see cref="T:System.ComponentModel.ITypeDescriptorContext" /> object used for type conversions.</param>
<param name="ci">The <see cref="T:System.Globalization.CultureInfo" /> object used during conversion.</param>
<param name="data">The <see cref="T:System.String" /> object to convert.</param>
<returns>The <see cref="F:System.TimeSpan.MaxValue" />, if the <paramref name="data" /> parameter is the <see cref="T:System.String" /> "infinite"; otherwise, the <see cref="T:System.TimeSpan" /> representing the <paramref name="data" /> parameter in minutes.</returns>
</member>
<member name="M:System.Configuration.TimeSpanMinutesOrInfiniteConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object,System.Type)">
<summary>Converts a <see cref="T:System.TimeSpan" /> to a <see cref="T:System.String" />.</summary>
<param name="ctx">The <see cref="T:System.ComponentModel.ITypeDescriptorContext" /> object used for type conversions.</param>
<param name="ci">The <see cref="T:System.Globalization.CultureInfo" /> object used during conversion.</param>
<param name="value">The value to convert.</param>
<param name="type">The conversion type.</param>
<returns>The <see cref="T:System.String" /> "infinite", if the <paramref name="value" /> parameter is <see cref="F:System.TimeSpan.MaxValue" />; otherwise, the <see cref="T:System.String" /> representing the <paramref name="value" /> parameter in minutes.</returns>
</member>
<member name="M:System.Configuration.TimeSpanSecondsConverter.#ctor">
<summary>Initializes a new instance of the <see cref="T:System.Configuration.TimeSpanSecondsConverter" /> class.</summary>
</member>
<member name="M:System.Configuration.TimeSpanSecondsConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object)">
<summary>Converts a <see cref="T:System.String" /> to a <see cref="T:System.TimeSpan" />.</summary>
<param name="ctx">The <see cref="T:System.ComponentModel.ITypeDescriptorContext" /> object used for type conversions.</param>
<param name="ci">The <see cref="T:System.Globalization.CultureInfo" /> object used during conversion.</param>
<param name="data">The <see cref="T:System.String" /> object to convert.</param>
<returns>The <see cref="T:System.TimeSpan" /> representing the <paramref name="data" /> parameter in seconds.</returns>
<exception cref="T:System.ArgumentException">
<paramref name="data" /> cannot be parsed as an integer value.</exception>
</member>
<member name="M:System.Configuration.TimeSpanSecondsConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object,System.Type)">
<summary>Converts a <see cref="T:System.TimeSpan" /> to a <see cref="T:System.String" />.</summary>
<param name="ctx">The <see cref="T:System.ComponentModel.ITypeDescriptorContext" /> object used for type conversions.</param>
<param name="ci">The <see cref="T:System.Globalization.CultureInfo" /> object used during conversion.</param>
<param name="value">The value to convert to.</param>
<param name="type">The type to convert to.</param>
<returns>The <see cref="T:System.String" /> that represents the <paramref name="value" /> parameter in minutes.</returns>
</member>
<member name="M:System.Configuration.TimeSpanSecondsOrInfiniteConverter.#ctor">
<summary>Initializes a new instance of the <see cref="T:System.Configuration.TimeSpanSecondsOrInfiniteConverter" /> class.</summary>
</member>
<member name="M:System.Configuration.TimeSpanSecondsOrInfiniteConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object)">
<summary>Converts a <see cref="T:System.String" /> to a <see cref="T:System.TimeSpan" />.</summary>
<param name="ctx">The <see cref="T:System.ComponentModel.ITypeDescriptorContext" /> object used for type conversions.</param>
<param name="ci">The <see cref="T:System.Globalization.CultureInfo" /> object used during conversion.</param>
<param name="data">The <see cref="T:System.String" /> object to convert.</param>
<returns>The <see cref="F:System.TimeSpan.MaxValue" />, if the <paramref name="data" /> parameter is the <see cref="T:System.String" /> "infinite"; otherwise, the <see cref="T:System.TimeSpan" /> representing the <paramref name="data" /> parameter in seconds.</returns>
</member>
<member name="M:System.Configuration.TimeSpanSecondsOrInfiniteConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object,System.Type)">
<summary>Converts a <see cref="T:System.TimeSpan" /> to a. <see cref="T:System.String" />.</summary>
<param name="ctx">The <see cref="T:System.ComponentModel.ITypeDescriptorContext" /> object used for type conversions.</param>
<param name="ci">The <see cref="T:System.Globalization.CultureInfo" /> object used during conversion.</param>
<param name="value">The value to convert.</param>
<param name="type">The conversion type.</param>
<returns>The <see cref="T:System.String" /> "infinite", if the <paramref name="value" /> parameter is <see cref="F:System.TimeSpan.MaxValue" />; otherwise, the <see cref="T:System.String" /> representing the <paramref name="value" /> parameter in seconds.</returns>
</member>
<member name="M:System.Configuration.TimeSpanValidator.#ctor(System.TimeSpan,System.TimeSpan)">
<summary>Initializes a new instance of the <see cref="T:System.Configuration.TimeSpanValidator" /> class, based on supplied parameters.</summary>
<param name="minValue">A <see cref="T:System.TimeSpan" /> object that specifies the minimum time allowed to pass validation.</param>
<param name="maxValue">A <see cref="T:System.TimeSpan" /> object that specifies the maximum time allowed to pass validation.</param>
</member>
<member name="M:System.Configuration.TimeSpanValidator.#ctor(System.TimeSpan,System.TimeSpan,System.Boolean)">
<summary>Initializes a new instance of the <see cref="T:System.Configuration.TimeSpanValidator" /> class, based on supplied parameters.</summary>
<param name="minValue">A <see cref="T:System.TimeSpan" /> object that specifies the minimum time allowed to pass validation.</param>
<param name="maxValue">A <see cref="T:System.TimeSpan" /> object that specifies the maximum time allowed to pass validation.</param>
<param name="rangeIsExclusive">A <see cref="T:System.Boolean" /> value that specifies whether the validation range is exclusive.</param>
</member>
<member name="M:System.Configuration.TimeSpanValidator.#ctor(System.TimeSpan,System.TimeSpan,System.Boolean,System.Int64)">
<summary>Initializes a new instance of the <see cref="T:System.Configuration.TimeSpanValidator" /> class, based on supplied parameters.</summary>
<param name="minValue">A <see cref="T:System.TimeSpan" /> object that specifies the minimum time allowed to pass validation.</param>
<param name="maxValue">A <see cref="T:System.TimeSpan" /> object that specifies the maximum time allowed to pass validation.</param>
<param name="rangeIsExclusive">A <see cref="T:System.Boolean" /> value that specifies whether the validation range is exclusive.</param>
<param name="resolutionInSeconds">An <see cref="T:System.Int64" /> value that specifies a number of seconds. </param>
<exception cref="T:System.ArgumentOutOfRangeException">
<paramref name="resolutionInSeconds" /> is less than <see langword="0" />.- or -
<paramref name="minValue" /> is greater than <paramref name="maxValue" />.</exception>
</member>
<member name="M:System.Configuration.TimeSpanValidator.CanValidate(System.Type)">
<summary>Determines whether the type of the object can be validated.</summary>
<param name="type">The type of the object.</param>
<returns>
<see langword="true" /> if the <paramref name="type" /> parameter matches a <see cref="T:System.TimeSpan" /> value; otherwise, <see langword="false" />. </returns>
</member>
<member name="M:System.Configuration.TimeSpanValidator.Validate(System.Object)">
<summary>Determines whether the value of an object is valid.</summary>
<param name="value">The value of an object.</param>
</member>
<member name="M:System.Configuration.TimeSpanValidatorAttribute.#ctor">
<summary>Initializes a new instance of the <see cref="T:System.Configuration.TimeSpanValidatorAttribute" /> class.</summary>
</member>
<member name="M:System.Configuration.TypeNameConverter.#ctor">
<summary>Initializes a new instance of the <see cref="T:System.Configuration.TypeNameConverter" /> class.</summary>
</member>
<member name="M:System.Configuration.TypeNameConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object)">
<summary>Converts a <see cref="T:System.String" /> object to a <see cref="T:System.Type" /> object.</summary>
<param name="ctx">The <see cref="T:System.ComponentModel.ITypeDescriptorContext" /> object used for type conversions.</param>
<param name="ci">The <see cref="T:System.Globalization.CultureInfo" /> object used during conversion.</param>
<param name="data">The <see cref="T:System.String" /> object to convert.</param>
<returns>The <see cref="T:System.Type" /> that represents the <paramref name="data" /> parameter.</returns>
<exception cref="T:System.ArgumentException">The <see cref="T:System.Type" /> value cannot be resolved.</exception>
</member>
<member name="M:System.Configuration.TypeNameConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object,System.Type)">
<summary>Converts a <see cref="T:System.Type" /> object to a <see cref="T:System.String" /> object.</summary>
<param name="ctx">The <see cref="T:System.ComponentModel.ITypeDescriptorContext" /> object used for type conversions.</param>
<param name="ci">The <see cref="T:System.Globalization.CultureInfo" /> object used during conversion.</param>
<param name="value">The value to convert to.</param>
<param name="type">The type to convert to.</param>
<returns>The <see cref="T:System.String" /> that represents the <paramref name="value" /> parameter. </returns>
</member>
<member name="M:System.Configuration.WhiteSpaceTrimStringConverter.#ctor">
<summary>Initializes a new instance of the <see cref="T:System.Configuration.WhiteSpaceTrimStringConverter" /> class.</summary>
</member>
<member name="M:System.Configuration.WhiteSpaceTrimStringConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object)">
<summary>Converts a <see cref="T:System.String" /> to canonical form.</summary>
<param name="ctx">The <see cref="T:System.ComponentModel.ITypeDescriptorContext" /> object used for type conversions.</param>
<param name="ci">The <see cref="T:System.Globalization.CultureInfo" /> object used during conversion.</param>
<param name="data">The <see cref="T:System.String" /> object to convert.</param>
<returns>An object representing the converted value.</returns>
</member>
<member name="M:System.Configuration.WhiteSpaceTrimStringConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object,System.Type)">
<summary>Converts a <see cref="T:System.String" /> to canonical form.</summary>
<param name="ctx">The <see cref="T:System.ComponentModel.ITypeDescriptorContext" /> object used for type conversions.</param>
<param name="ci">The <see cref="T:System.Globalization.CultureInfo" /> object used during conversion.</param>
<param name="value">The value to convert to.</param>
<param name="type">The type to convert to.</param>
<returns>An object representing the converted value.</returns>
</member>
<member name="P:System.Configuration.AppSettingsSection.File">
<summary>Gets or sets a configuration file that provides additional settings or overrides the settings specified in the <see langword="appSettings" /> element.</summary>
<returns>A configuration file that provides additional settings or overrides the settings specified in the <see langword="appSettings" /> element.</returns>
</member>
<member name="P:System.Configuration.AppSettingsSection.Settings">
<summary>Gets a collection of key/value pairs that contains application settings.</summary>
<returns>A collection of key/value pairs that contains the application settings from the configuration file.</returns>
</member>
<member name="P:System.Configuration.CallbackValidatorAttribute.CallbackMethodName">
<summary>Gets or sets the name of the callback method.</summary>
<returns>The name of the method to call.</returns>
</member>
<member name="P:System.Configuration.CallbackValidatorAttribute.Type">
<summary>Gets or sets the type of the validator.</summary>
<returns>The <see cref="T:System.Type" /> of the current validator attribute instance.</returns>
</member>
<member name="P:System.Configuration.CallbackValidatorAttribute.ValidatorInstance">
<summary>Gets the validator instance.</summary>
<returns>The current <see cref="T:System.Configuration.ConfigurationValidatorBase" /> instance.</returns>
<exception cref="T:System.ArgumentNullException">The value of the <see cref="P:System.Configuration.CallbackValidatorAttribute.Type" /> property is <see langword="null" />.</exception>
<exception cref="T:System.ArgumentException">The <see cref="P:System.Configuration.CallbackValidatorAttribute.CallbackMethodName" /> property is not set to a public static void method with one object parameter.</exception>
</member>
<member name="P:System.Configuration.CommaDelimitedStringCollection.IsModified">
<summary>Gets a value that specifies whether the collection has been modified.</summary>
<returns>
<see langword="true" /> if the <see cref="T:System.Configuration.CommaDelimitedStringCollection" /> has been modified; otherwise, <see langword="false" />.</returns>
</member>
<member name="P:System.Configuration.CommaDelimitedStringCollection.IsReadOnly">
<summary>Gets a value indicating whether the collection object is read-only.</summary>
<returns>
<see langword="true" /> if the specified string element in the <see cref="T:System.Configuration.CommaDelimitedStringCollection" /> is read-only; otherwise, <see langword="false" />.</returns>
</member>
<member name="P:System.Configuration.CommaDelimitedStringCollection.Item(System.Int32)">
<summary>Gets or sets a string element in the collection based on the index.</summary>
<param name="index">The index of the string element in the collection.</param>
<returns>A string element in the collection.</returns>
</member>
<member name="P:System.Configuration.Configuration.AppSettings">
<summary>Gets the <see cref="T:System.Configuration.AppSettingsSection" /> object configuration section that applies to this <see cref="T:System.Configuration.Configuration" /> object.</summary>
<returns>An <see cref="T:System.Configuration.AppSettingsSection" /> object representing the <see langword="appSettings" /> configuration section that applies to this <see cref="T:System.Configuration.Configuration" /> object.</returns>
</member>
<member name="P:System.Configuration.Configuration.AssemblyStringTransformer">
<summary>Specifies a function delegate that is used to transform assembly strings in configuration files.</summary>
<returns>A delegate that transforms type strings. The default value is <see langword="null" />.</returns>
</member>
<member name="P:System.Configuration.Configuration.ConnectionStrings">
<summary>Gets a <see cref="T:System.Configuration.ConnectionStringsSection" /> configuration-section object that applies to this <see cref="T:System.Configuration.Configuration" /> object.</summary>
<returns>A <see cref="T:System.Configuration.ConnectionStringsSection" /> configuration-section object representing the <see langword="connectionStrings" /> configuration section that applies to this <see cref="T:System.Configuration.Configuration" /> object.</returns>
</member>
<member name="P:System.Configuration.Configuration.EvaluationContext">
<summary>Gets the <see cref="T:System.Configuration.ContextInformation" /> object for the <see cref="T:System.Configuration.Configuration" /> object.</summary>
<returns>The <see cref="T:System.Configuration.ContextInformation" /> object for the <see cref="T:System.Configuration.Configuration" /> object.</returns>
</member>
<member name="P:System.Configuration.Configuration.FilePath">
<summary>Gets the physical path to the configuration file represented by this <see cref="T:System.Configuration.Configuration" /> object.</summary>
<returns>The physical path to the configuration file represented by this <see cref="T:System.Configuration.Configuration" /> object.</returns>
</member>
<member name="P:System.Configuration.Configuration.HasFile">
<summary>Gets a value that indicates whether a file exists for the resource represented by this <see cref="T:System.Configuration.Configuration" /> object.</summary>
<returns>
<see langword="true" /> if there is a configuration file; otherwise, <see langword="false" />.</returns>
</member>
<member name="P:System.Configuration.Configuration.Locations">
<summary>Gets the locations defined within this <see cref="T:System.Configuration.Configuration" /> object.</summary>
<returns>A <see cref="T:System.Configuration.ConfigurationLocationCollection" /> containing the locations defined within this <see cref="T:System.Configuration.Configuration" /> object.</returns>
</member>
<member name="P:System.Configuration.Configuration.NamespaceDeclared">
<summary>Gets or sets a value indicating whether the configuration file has an XML namespace.</summary>
<returns>
<see langword="true" /> if the configuration file has an XML namespace; otherwise, <see langword="false" />.</returns>
</member>
<member name="P:System.Configuration.Configuration.RootSectionGroup">
<summary>Gets the root <see cref="T:System.Configuration.ConfigurationSectionGroup" /> for this <see cref="T:System.Configuration.Configuration" /> object.</summary>
<returns>The root section group for this <see cref="T:System.Configuration.Configuration" /> object.</returns>
</member>
<member name="P:System.Configuration.Configuration.SectionGroups">
<summary>Gets a collection of the section groups defined by this configuration.</summary>
<returns>A <see cref="T:System.Configuration.ConfigurationSectionGroupCollection" /> collection representing the collection of section groups for this <see cref="T:System.Configuration.Configuration" /> object.</returns>
</member>
<member name="P:System.Configuration.Configuration.Sections">
<summary>Gets a collection of the sections defined by this <see cref="T:System.Configuration.Configuration" /> object.</summary>
<returns>A collection of the sections defined by this <see cref="T:System.Configuration.Configuration" /> object.</returns>
</member>
<member name="P:System.Configuration.Configuration.TargetFramework">
<summary>Specifies the targeted version of the .NET Framework when a version earlier than the current one is targeted.</summary>
<returns>The name of the targeted version of the .NET Framework. The default value is <see langword="null" />, which indicates that the current version is targeted.</returns>
</member>
<member name="P:System.Configuration.Configuration.TypeStringTransformer">
<summary>Specifies a function delegate that is used to transform type strings in configuration files. </summary>
<returns>A delegate that transforms type strings. The default value is <see langword="null" />.</returns>
</member>
<member name="P:System.Configuration.ConfigurationBuilderCollection.Item(System.String)">
<summary>Gets the <see cref="T:System.Configuration.ConfigurationBuilder" /> object from the <see cref="T:System.Configuration.ConfigurationBuilderCollection" /> that is configured with the provided name.</summary>
<param name="name">A configuration builder name.</param>
<returns>The <see cref="T:System.Configuration.ConfigurationBuilder" /> object that is configured with the provided <paramref name="name" />.</returns>
</member>
<member name="P:System.Configuration.ConfigurationBuilderSettings.Builders">
<summary>Gets a collection of <see cref="T:System.Configuration.ConfigurationBuilderSettings" /> objects that represent the properties of configuration builders.</summary>
<returns>The <see cref="T:System.Configuration.ConfigurationBuilder" /> objects.</returns>
</member>
<member name="P:System.Configuration.ConfigurationBuilderSettings.Properties">
<summary>Gets the <see cref="T:System.Configuration.ConfigurationPropertyCollection" /> of a <see cref="T:System.Configuration.ConfigurationElement" />.</summary>
<returns>A <see cref="T:System.Configuration.ConfigurationPropertyCollection" /> of a <see cref="T:System.Configuration.ConfigurationElement" />.</returns>
</member>
<member name="P:System.Configuration.ConfigurationBuildersSection.Builders">
<summary>Gets a <see cref="T:System.Configuration.ConfigurationBuilderCollection" /> of all <see cref="T:System.Configuration.ConfigurationBuilder" /> objects in all participating configuration files.</summary>
<returns>The <see cref="T:System.Configuration.ConfigurationBuilder" /> objects in all participating configuration files.</returns>
</member>
<member name="P:System.Configuration.ConfigurationCollectionAttribute.AddItemName">
<summary>Gets or sets the name of the <see langword="<add>" /> configuration element.</summary>
<returns>The name that substitutes the standard name "add" for the configuration item.</returns>
</member>
<member name="P:System.Configuration.ConfigurationCollectionAttribute.ClearItemsName">
<summary>Gets or sets the name for the <see langword="<clear>" /> configuration element.</summary>
<returns>The name that replaces the standard name "clear" for the configuration item.</returns>
</member>
<member name="P:System.Configuration.ConfigurationCollectionAttribute.CollectionType">
<summary>Gets or sets the type of the <see cref="T:System.Configuration.ConfigurationCollectionAttribute" /> attribute.</summary>
<returns>The type of the <see cref="T:System.Configuration.ConfigurationCollectionAttribute" />.</returns>
</member>
<member name="P:System.Configuration.ConfigurationCollectionAttribute.ItemType">
<summary>Gets the type of the collection element.</summary>
<returns>The type of the collection element.</returns>
</member>
<member name="P:System.Configuration.ConfigurationCollectionAttribute.RemoveItemName">
<summary>Gets or sets the name for the <see langword="<remove>" /> configuration element.</summary>
<returns>The name that replaces the standard name "remove" for the configuration element.</returns>
</member>
<member name="P:System.Configuration.ConfigurationElement.CurrentConfiguration">
<summary>Gets a reference to the top-level <see cref="T:System.Configuration.Configuration" /> instance that represents the configuration hierarchy that the current <see cref="T:System.Configuration.ConfigurationElement" /> instance belongs to.</summary>
<returns>The top-level <see cref="T:System.Configuration.Configuration" /> instance that the current <see cref="T:System.Configuration.ConfigurationElement" /> instance belongs to.</returns>
</member>
<member name="P:System.Configuration.ConfigurationElement.ElementInformation">
<summary>Gets an <see cref="T:System.Configuration.ElementInformation" /> object that contains the non-customizable information and functionality of the <see cref="T:System.Configuration.ConfigurationElement" /> object. </summary>
<returns>An <see cref="T:System.Configuration.ElementInformation" /> that contains the non-customizable information and functionality of the <see cref="T:System.Configuration.ConfigurationElement" />.</returns>
</member>
<member name="P:System.Configuration.ConfigurationElement.ElementProperty">
<summary>Gets the <see cref="T:System.Configuration.ConfigurationElementProperty" /> object that represents the <see cref="T:System.Configuration.ConfigurationElement" /> object itself.</summary>
<returns>The <see cref="T:System.Configuration.ConfigurationElementProperty" /> that represents the <see cref="T:System.Configuration.ConfigurationElement" /> itself.</returns>
</member>
<member name="P:System.Configuration.ConfigurationElement.EvaluationContext">
<summary>Gets the <see cref="T:System.Configuration.ContextInformation" /> object for the <see cref="T:System.Configuration.ConfigurationElement" /> object.</summary>
<returns>The <see cref="T:System.Configuration.ContextInformation" /> for the <see cref="T:System.Configuration.ConfigurationElement" />.</returns>
<exception cref="T:System.Configuration.ConfigurationErrorsException">The current element is not associated with a context.</exception>
</member>
<member name="P:System.Configuration.ConfigurationElement.HasContext">
<summary>Gets a value that indicates whether the <see cref="P:System.Configuration.ConfigurationElement.CurrentConfiguration" /> property is <see langword="null" />.</summary>
<returns>false if the <see cref="P:System.Configuration.ConfigurationElement.CurrentConfiguration" /> property is <see langword="null" />; otherwise, <see langword="true" />.</returns>
</member>
<member name="P:System.Configuration.ConfigurationElement.Item(System.Configuration.ConfigurationProperty)">
<summary>Gets or sets a property or attribute of this configuration element.</summary>
<param name="prop">The property to access. </param>
<returns>The specified property, attribute, or child element.</returns>
<exception cref="T:System.Configuration.ConfigurationException">
<paramref name="prop" /> is <see langword="null" /> or does not exist within the element.</exception>
<exception cref="T:System.Configuration.ConfigurationErrorsException">
<paramref name="prop" /> is read only or locked.</exception>
</member>
<member name="P:System.Configuration.ConfigurationElement.Item(System.String)">
<summary>Gets or sets a property, attribute, or child element of this configuration element.</summary>
<param name="propertyName">The name of the <see cref="T:System.Configuration.ConfigurationProperty" /> to access.</param>
<returns>The specified property, attribute, or child element</returns>
<exception cref="T:System.Configuration.ConfigurationErrorsException">
<paramref name="prop" /> is read-only or locked.</exception>
</member>
<member name="P:System.Configuration.ConfigurationElement.LockAllAttributesExcept">
<summary>Gets the collection of locked attributes.</summary>
<returns>The <see cref="T:System.Configuration.ConfigurationLockCollection" /> of locked attributes (properties) for the element.</returns>
</member>
<member name="P:System.Configuration.ConfigurationElement.LockAllElementsExcept">
<summary>Gets the collection of locked elements.</summary>
<returns>The <see cref="T:System.Configuration.ConfigurationLockCollection" /> of locked elements.</returns>
</member>
<member name="P:System.Configuration.ConfigurationElement.LockAttributes">
<summary>Gets the collection of locked attributes </summary>
<returns>The <see cref="T:System.Configuration.ConfigurationLockCollection" /> of locked attributes (properties) for the element.</returns>
</member>
<member name="P:System.Configuration.ConfigurationElement.LockElements">
<summary>Gets the collection of locked elements.</summary>
<returns>The <see cref="T:System.Configuration.ConfigurationLockCollection" /> of locked elements.</returns>
</member>
<member name="P:System.Configuration.ConfigurationElement.LockItem">
<summary>Gets or sets a value indicating whether the element is locked.</summary>
<returns>
<see langword="true" /> if the element is locked; otherwise, <see langword="false" />. The default is <see langword="false" />.</returns>
<exception cref="T:System.Configuration.ConfigurationErrorsException">The element has already been locked at a higher configuration level.</exception>
</member>
<member name="P:System.Configuration.ConfigurationElement.Properties">
<summary>Gets the collection of properties.</summary>
<returns>The <see cref="T:System.Configuration.ConfigurationPropertyCollection" /> of properties for the element.</returns>
</member>
<member name="P:System.Configuration.ConfigurationElementCollection.AddElementName">
<summary>Gets or sets the name of the <see cref="T:System.Configuration.ConfigurationElement" /> to associate with the add operation in the <see cref="T:System.Configuration.ConfigurationElementCollection" /> when overridden in a derived class. </summary>
<returns>The name of the element.</returns>
<exception cref="T:System.ArgumentException">The selected value starts with the reserved prefix "config" or "lock".</exception>
</member>
<member name="P:System.Configuration.ConfigurationElementCollection.ClearElementName">
<summary>Gets or sets the name for the <see cref="T:System.Configuration.ConfigurationElement" /> to associate with the clear operation in the <see cref="T:System.Configuration.ConfigurationElementCollection" /> when overridden in a derived class. </summary>
<returns>The name of the element.</returns>
<exception cref="T:System.ArgumentException">The selected value starts with the reserved prefix "config" or "lock".</exception>
</member>
<member name="P:System.Configuration.ConfigurationElementCollection.CollectionType">
<summary>Gets the type of the <see cref="T:System.Configuration.ConfigurationElementCollection" />.</summary>
<returns>The <see cref="T:System.Configuration.ConfigurationElementCollectionType" /> of this collection.</returns>
</member>
<member name="P:System.Configuration.ConfigurationElementCollection.Count">
<summary>Gets the number of elements in the collection.</summary>
<returns>The number of elements in the collection.</returns>
</member>
<member name="P:System.Configuration.ConfigurationElementCollection.ElementName">
<summary>Gets the name used to identify this collection of elements in the configuration file when overridden in a derived class.</summary>
<returns>The name of the collection; otherwise, an empty string. The default is an empty string.</returns>
</member>
<member name="P:System.Configuration.ConfigurationElementCollection.EmitClear">
<summary>Gets or sets a value that specifies whether the collection has been cleared.</summary>
<returns>
<see langword="true" /> if the collection has been cleared; otherwise, <see langword="false" />. The default is <see langword="false" />.</returns>
<exception cref="T:System.Configuration.ConfigurationErrorsException">The configuration is read-only.</exception>
</member>
<member name="P:System.Configuration.ConfigurationElementCollection.IsSynchronized">
<summary>Gets a value indicating whether access to the collection is synchronized.</summary>
<returns>
<see langword="true" /> if access to the <see cref="T:System.Configuration.ConfigurationElementCollection" /> is synchronized; otherwise, <see langword="false" />.</returns>
</member>
<member name="P:System.Configuration.ConfigurationElementCollection.RemoveElementName">
<summary>Gets or sets the name of the <see cref="T:System.Configuration.ConfigurationElement" /> to associate with the remove operation in the <see cref="T:System.Configuration.ConfigurationElementCollection" /> when overridden in a derived class. </summary>
<returns>The name of the element.</returns>
<exception cref="T:System.ArgumentException">The selected value starts with the reserved prefix "config" or "lock".</exception>
</member>
<member name="P:System.Configuration.ConfigurationElementCollection.SyncRoot">
<summary>Gets an object used to synchronize access to the <see cref="T:System.Configuration.ConfigurationElementCollection" />.</summary>
<returns>An object used to synchronize access to the <see cref="T:System.Configuration.ConfigurationElementCollection" />.</returns>
</member>
<member name="P:System.Configuration.ConfigurationElementCollection.ThrowOnDuplicate">
<summary>Gets a value indicating whether an attempt to add a duplicate <see cref="T:System.Configuration.ConfigurationElement" /> to the <see cref="T:System.Configuration.ConfigurationElementCollection" /> will cause an exception to be thrown.</summary>
<returns>
<see langword="true" /> if an attempt to add a duplicate <see cref="T:System.Configuration.ConfigurationElement" /> to this <see cref="T:System.Configuration.ConfigurationElementCollection" /> will cause an exception to be thrown; otherwise, <see langword="false" />. </returns>
</member>
<member name="P:System.Configuration.ConfigurationElementProperty.Validator">
<summary>Gets a <see cref="T:System.Configuration.ConfigurationValidatorBase" /> object used to validate the <see cref="T:System.Configuration.ConfigurationElementProperty" /> object.</summary>
<returns>A <see cref="T:System.Configuration.ConfigurationValidatorBase" /> object.</returns>
</member>
<member name="P:System.Configuration.ConfigurationErrorsException.BareMessage">
<summary>Gets a description of why this configuration exception was thrown.</summary>
<returns>A description of why this <see cref="T:System.Configuration.ConfigurationErrorsException" /> was thrown.</returns>
</member>
<member name="P:System.Configuration.ConfigurationErrorsException.Errors">
<summary>Gets a collection of errors that detail the reasons this <see cref="T:System.Configuration.ConfigurationErrorsException" /> exception was thrown.</summary>
<returns>An <see cref="T:System.Collections.ICollection" /> object that contains errors that identify the reasons this <see cref="T:System.Configuration.ConfigurationErrorsException" /> exception was thrown.</returns>
</member>
<member name="P:System.Configuration.ConfigurationErrorsException.Filename">
<summary>Gets the path to the configuration file that caused this configuration exception to be thrown.</summary>
<returns>The path to the configuration file that caused this <see cref="T:System.Configuration.ConfigurationErrorsException" /> to be thrown.</returns>
</member>
<member name="P:System.Configuration.ConfigurationErrorsException.Line">
<summary>Gets the line number within the configuration file at which this configuration exception was thrown.</summary>
<returns>The line number within the configuration file at which this <see cref="T:System.Configuration.ConfigurationErrorsException" /> exception was thrown.</returns>
</member>
<member name="P:System.Configuration.ConfigurationErrorsException.Message">
<summary>Gets an extended description of why this configuration exception was thrown.</summary>
<returns>An extended description of why this <see cref="T:System.Configuration.ConfigurationErrorsException" /> exception was thrown.</returns>
</member>
<member name="P:System.Configuration.ConfigurationFileMap.MachineConfigFilename">
<summary>Gets or sets the name of the machine configuration file name.</summary>
<returns>The machine configuration file name.</returns>
</member>
<member name="P:System.Configuration.ConfigurationLocation.Path">
<summary>Gets the relative path to the resource whose configuration settings are represented by this <see cref="T:System.Configuration.ConfigurationLocation" /> object.</summary>
<returns>The relative path to the resource whose configuration settings are represented by this <see cref="T:System.Configuration.ConfigurationLocation" />.</returns>
</member>
<member name="P:System.Configuration.ConfigurationLocationCollection.Item(System.Int32)">
<summary>Gets the <see cref="T:System.Configuration.ConfigurationLocationCollection" /> object at the specified index.</summary>
<param name="index">The index location of the <see cref="T:System.Configuration.ConfigurationLocationCollection" /> to return.</param>
<returns>The <see cref="T:System.Configuration.ConfigurationLocationCollection" /> at the specified index.</returns>
</member>
<member name="P:System.Configuration.ConfigurationLockCollection.AttributeList">
<summary>Gets a list of configuration objects contained in the collection.</summary>
<returns>A comma-delimited string that lists the lock configuration objects in the collection.</returns>
</member>
<member name="P:System.Configuration.ConfigurationLockCollection.Count">
<summary>Gets the number of locked configuration objects contained in the collection.</summary>
<returns>The number of locked configuration objects contained in the collection.</returns>
</member>
<member name="P:System.Configuration.ConfigurationLockCollection.HasParentElements">
<summary>Gets a value specifying whether the collection of locked objects has parent elements.</summary>
<returns>
<see langword="true" /> if the <see cref="T:System.Configuration.ConfigurationLockCollection" /> collection has parent elements; otherwise, <see langword="false" />.</returns>
</member>
<member name="P:System.Configuration.ConfigurationLockCollection.IsModified">
<summary>Gets a value specifying whether the collection has been modified.</summary>
<returns>
<see langword="true" /> if the <see cref="T:System.Configuration.ConfigurationLockCollection" /> collection has been modified; otherwise, <see langword="false" />.</returns>
</member>
<member name="P:System.Configuration.ConfigurationLockCollection.IsSynchronized">
<summary>Gets a value specifying whether the collection is synchronized.</summary>
<returns>
<see langword="true" /> if the <see cref="T:System.Configuration.ConfigurationLockCollection" /> collection is synchronized; otherwise, <see langword="false" />.</returns>
</member>
<member name="P:System.Configuration.ConfigurationLockCollection.SyncRoot">
<summary>Gets an object used to synchronize access to this <see cref="T:System.Configuration.ConfigurationLockCollection" /> collection.</summary>
<returns>An object used to synchronize access to this <see cref="T:System.Configuration.ConfigurationLockCollection" /> collection.</returns>
</member>
<member name="P:System.Configuration.ConfigurationManager.AppSettings">
<summary>Gets the <see cref="T:System.Configuration.AppSettingsSection" /> data for the current application's default configuration.</summary>
<returns>Returns a <see cref="T:System.Collections.Specialized.NameValueCollection" /> object that contains the contents of the <see cref="T:System.Configuration.AppSettingsSection" /> object for the current application's default configuration. </returns>
<exception cref="T:System.Configuration.ConfigurationErrorsException">Could not retrieve a <see cref="T:System.Collections.Specialized.NameValueCollection" /> object with the application settings data.</exception>
</member>
<member name="P:System.Configuration.ConfigurationManager.ConnectionStrings">
<summary>Gets the <see cref="T:System.Configuration.ConnectionStringsSection" /> data for the current application's default configuration.</summary>
<returns>Returns a <see cref="T:System.Configuration.ConnectionStringSettingsCollection" /> object that contains the contents of the <see cref="T:System.Configuration.ConnectionStringsSection" /> object for the current application's default configuration. </returns>
<exception cref="T:System.Configuration.ConfigurationErrorsException">Could not retrieve a <see cref="T:System.Configuration.ConnectionStringSettingsCollection" /> object.</exception>
</member>
<member name="P:System.Configuration.ConfigurationProperty.Converter">
<summary>Gets the <see cref="T:System.ComponentModel.TypeConverter" /> used to convert this <see cref="T:System.Configuration.ConfigurationProperty" /> into an XML representation for writing to the configuration file.</summary>
<returns>A <see cref="T:System.ComponentModel.TypeConverter" /> used to convert this <see cref="T:System.Configuration.ConfigurationProperty" /> into an XML representation for writing to the configuration file.</returns>
<exception cref="T:System.Exception">This <see cref="T:System.Configuration.ConfigurationProperty" /> cannot be converted. </exception>
</member>
<member name="P:System.Configuration.ConfigurationProperty.DefaultValue">
<summary>Gets the default value for this <see cref="T:System.Configuration.ConfigurationProperty" /> property.</summary>
<returns>An <see cref="T:System.Object" /> that can be cast to the type specified by the <see cref="P:System.Configuration.ConfigurationProperty.Type" /> property.</returns>
</member>
<member name="P:System.Configuration.ConfigurationProperty.Description">
<summary>Gets the description associated with the <see cref="T:System.Configuration.ConfigurationProperty" />.</summary>
<returns>A <see langword="string" /> value that describes the property.</returns>
</member>
<member name="P:System.Configuration.ConfigurationProperty.IsAssemblyStringTransformationRequired">
<summary>Indicates whether the assembly name for the configuration property requires transformation when it is serialized for an earlier version of the .NET Framework.</summary>
<returns>
<see langword="true" /> if the property requires assembly name transformation; otherwise, <see langword="false" />.</returns>
</member>
<member name="P:System.Configuration.ConfigurationProperty.IsDefaultCollection">
<summary>Gets a value that indicates whether the property is the default collection of an element. </summary>
<returns>
<see langword="true" /> if the property is the default collection of an element; otherwise, <see langword="false" />.</returns>
</member>
<member name="P:System.Configuration.ConfigurationProperty.IsKey">
<summary>Gets a value indicating whether this <see cref="T:System.Configuration.ConfigurationProperty" /> is the key for the containing <see cref="T:System.Configuration.ConfigurationElement" /> object.</summary>
<returns>
<see langword="true" /> if this <see cref="T:System.Configuration.ConfigurationProperty" /> object is the key for the containing element; otherwise, <see langword="false" />. The default is <see langword="false" />.</returns>
</member>
<member name="P:System.Configuration.ConfigurationProperty.IsRequired">
<summary>Gets a value indicating whether this <see cref="T:System.Configuration.ConfigurationProperty" /> is required.</summary>
<returns>
<see langword="true" /> if the <see cref="T:System.Configuration.ConfigurationProperty" /> is required; otherwise, <see langword="false" />. The default is <see langword="false" />.</returns>
</member>
<member name="P:System.Configuration.ConfigurationProperty.IsTypeStringTransformationRequired">
<summary>Indicates whether the type name for the configuration property requires transformation when it is serialized for an earlier version of the .NET Framework.</summary>
<returns>
<see langword="true" /> if the property requires type-name transformation; otherwise, <see langword="false" />.</returns>
</member>
<member name="P:System.Configuration.ConfigurationProperty.IsVersionCheckRequired">
<summary>Indicates whether the configuration property's parent configuration section is queried at serialization time to determine whether the configuration property should be serialized into XML.</summary>
<returns>
<see langword="true" /> if the parent configuration section should be queried; otherwise, <see langword="false" />.</returns>
</member>
<member name="P:System.Configuration.ConfigurationProperty.Name">
<summary>Gets the name of this <see cref="T:System.Configuration.ConfigurationProperty" />.</summary>
<returns>The name of the <see cref="T:System.Configuration.ConfigurationProperty" />.</returns>
</member>
<member name="P:System.Configuration.ConfigurationProperty.Type">
<summary>Gets the type of this <see cref="T:System.Configuration.ConfigurationProperty" /> object.</summary>
<returns>A <see cref="T:System.Type" /> representing the type of this <see cref="T:System.Configuration.ConfigurationProperty" /> object.</returns>
</member>
<member name="P:System.Configuration.ConfigurationProperty.Validator">
<summary>Gets the <see cref="T:System.Configuration.ConfigurationValidatorAttribute" />, which is used to validate this <see cref="T:System.Configuration.ConfigurationProperty" /> object.</summary>
<returns>The <see cref="T:System.Configuration.ConfigurationValidatorBase" /> validator, which is used to validate this <see cref="T:System.Configuration.ConfigurationProperty" />.</returns>
</member>
<member name="P:System.Configuration.ConfigurationPropertyAttribute.DefaultValue">
<summary>Gets or sets the default value for the decorated property.</summary>
<returns>The object representing the default value of the decorated configuration-element property.</returns>
</member>
<member name="P:System.Configuration.ConfigurationPropertyAttribute.IsDefaultCollection">
<summary>Gets or sets a value indicating whether this is the default property collection for the decorated configuration property. </summary>
<returns>
<see langword="true" /> if the property represents the default collection of an element; otherwise, <see langword="false" />. The default is <see langword="false" />.</returns>
</member>
<member name="P:System.Configuration.ConfigurationPropertyAttribute.IsKey">
<summary>Gets or sets a value indicating whether this is a key property for the decorated element property.</summary>
<returns>
<see langword="true" /> if the property is a key property for an element of the collection; otherwise, <see langword="false" />. The default is <see langword="false" />.</returns>
</member>
<member name="P:System.Configuration.ConfigurationPropertyAttribute.IsRequired">
<summary>Gets or sets a value indicating whether the decorated element property is required.</summary>
<returns>
<see langword="true" /> if the property is required; otherwise, <see langword="false" />. The default is <see langword="false" />.</returns>
</member>
<member name="P:System.Configuration.ConfigurationPropertyAttribute.Name">
<summary>Gets the name of the decorated configuration-element property.</summary>
<returns>The name of the decorated configuration-element property.</returns>
</member>
<member name="P:System.Configuration.ConfigurationPropertyAttribute.Options">
<summary>Gets or sets the <see cref="T:System.Configuration.ConfigurationPropertyOptions" /> for the decorated configuration-element property.</summary>
<returns>One of the <see cref="T:System.Configuration.ConfigurationPropertyOptions" /> enumeration values associated with the property.</returns>
</member>
<member name="P:System.Configuration.ConfigurationPropertyCollection.Count">
<summary>Gets the number of properties in the collection.</summary>
<returns>The number of properties in the collection.</returns>
</member>
<member name="P:System.Configuration.ConfigurationPropertyCollection.IsSynchronized">
<summary>Gets a value indicating whether access to the collection is synchronized (thread safe).</summary>
<returns>
<see langword="true" /> if access to the <see cref="T:System.Configuration.ConfigurationPropertyCollection" /> is synchronized; otherwise, <see langword="false" />.</returns>
</member>
<member name="P:System.Configuration.ConfigurationPropertyCollection.Item(System.String)">
<summary>Gets the collection item with the specified name.</summary>
<param name="name">The <see cref="T:System.Configuration.ConfigurationProperty" /> to return. </param>
<returns>The <see cref="T:System.Configuration.ConfigurationProperty" /> with the specified <paramref name="name" />.</returns>
</member>
<member name="P:System.Configuration.ConfigurationPropertyCollection.SyncRoot">
<summary>Gets the object to synchronize access to the collection.</summary>
<returns>The object to synchronize access to the collection.</returns>
</member>
<member name="P:System.Configuration.ConfigurationSection.SectionInformation">
<summary>Gets a <see cref="T:System.Configuration.SectionInformation" /> object that contains the non-customizable information and functionality of the <see cref="T:System.Configuration.ConfigurationSection" /> object. </summary>
<returns>A <see cref="T:System.Configuration.SectionInformation" /> that contains the non-customizable information and functionality of the <see cref="T:System.Configuration.ConfigurationSection" />.</returns>
</member>
<member name="P:System.Configuration.ConfigurationSectionCollection.Count">
<summary>Gets the number of sections in this <see cref="T:System.Configuration.ConfigurationSectionCollection" /> object.</summary>
<returns>An integer that represents the number of sections in the collection.</returns>
</member>
<member name="P:System.Configuration.ConfigurationSectionCollection.Item(System.Int32)">
<summary>Gets the specified <see cref="T:System.Configuration.ConfigurationSection" /> object.</summary>
<param name="index">The index of the <see cref="T:System.Configuration.ConfigurationSection" /> object to be returned. </param>
<returns>The <see cref="T:System.Configuration.ConfigurationSection" /> object at the specified index.</returns>
</member>
<member name="P:System.Configuration.ConfigurationSectionCollection.Item(System.String)">
<summary>Gets the specified <see cref="T:System.Configuration.ConfigurationSection" /> object.</summary>
<param name="name">The name of the <see cref="T:System.Configuration.ConfigurationSection" /> object to be returned. </param>
<returns>The <see cref="T:System.Configuration.ConfigurationSection" /> object with the specified name.</returns>
</member>
<member name="P:System.Configuration.ConfigurationSectionCollection.Keys">
<summary>Gets the keys to all <see cref="T:System.Configuration.ConfigurationSection" /> objects contained in this <see cref="T:System.Configuration.ConfigurationSectionCollection" /> object.</summary>
<returns>A <see cref="T:System.Collections.Specialized.NameObjectCollectionBase.KeysCollection" /> object that contains the keys of all sections in this collection.</returns>
</member>
<member name="P:System.Configuration.ConfigurationSectionGroup.IsDeclarationRequired">
<summary>Gets a value that indicates whether this <see cref="T:System.Configuration.ConfigurationSectionGroup" /> object declaration is required. </summary>
<returns>
<see langword="true" /> if this <see cref="T:System.Configuration.ConfigurationSectionGroup" /> declaration is required; otherwise, <see langword="false" />.</returns>
</member>
<member name="P:System.Configuration.ConfigurationSectionGroup.IsDeclared">
<summary>Gets a value that indicates whether this <see cref="T:System.Configuration.ConfigurationSectionGroup" /> object is declared.</summary>
<returns>
<see langword="true" /> if this <see cref="T:System.Configuration.ConfigurationSectionGroup" /> is declared; otherwise, <see langword="false" />. The default is <see langword="false" />.</returns>
</member>
<member name="P:System.Configuration.ConfigurationSectionGroup.Name">
<summary>Gets the name property of this <see cref="T:System.Configuration.ConfigurationSectionGroup" /> object.</summary>
<returns>The name property of this <see cref="T:System.Configuration.ConfigurationSectionGroup" /> object.</returns>
</member>
<member name="P:System.Configuration.ConfigurationSectionGroup.SectionGroupName">
<summary>Gets the section group name associated with this <see cref="T:System.Configuration.ConfigurationSectionGroup" />.</summary>
<returns>The section group name of this <see cref="T:System.Configuration.ConfigurationSectionGroup" /> object.</returns>
</member>
<member name="P:System.Configuration.ConfigurationSectionGroup.SectionGroups">
<summary>Gets a <see cref="T:System.Configuration.ConfigurationSectionGroupCollection" /> object that contains all the <see cref="T:System.Configuration.ConfigurationSectionGroup" /> objects that are children of this <see cref="T:System.Configuration.ConfigurationSectionGroup" /> object.</summary>
<returns>A <see cref="T:System.Configuration.ConfigurationSectionGroupCollection" /> object that contains all the <see cref="T:System.Configuration.ConfigurationSectionGroup" /> objects that are children of this <see cref="T:System.Configuration.ConfigurationSectionGroup" /> object.</returns>
</member>
<member name="P:System.Configuration.ConfigurationSectionGroup.Sections">
<summary>Gets a <see cref="T:System.Configuration.ConfigurationSectionCollection" /> object that contains all of <see cref="T:System.Configuration.ConfigurationSection" /> objects within this <see cref="T:System.Configuration.ConfigurationSectionGroup" /> object.</summary>
<returns>A <see cref="T:System.Configuration.ConfigurationSectionCollection" /> object that contains all the <see cref="T:System.Configuration.ConfigurationSection" /> objects within this <see cref="T:System.Configuration.ConfigurationSectionGroup" /> object.</returns>
</member>
<member name="P:System.Configuration.ConfigurationSectionGroup.Type">
<summary>Gets or sets the type for this <see cref="T:System.Configuration.ConfigurationSectionGroup" /> object.</summary>
<returns>The type of this <see cref="T:System.Configuration.ConfigurationSectionGroup" /> object.</returns>
<exception cref="T:System.InvalidOperationException">The <see cref="T:System.Configuration.ConfigurationSectionGroup" /> object is the root section group.- or -The <see cref="T:System.Configuration.ConfigurationSectionGroup" /> object has a location.</exception>
<exception cref="T:System.Configuration.ConfigurationErrorsException">The section or group is already defined at another level.</exception>
</member>
<member name="P:System.Configuration.ConfigurationSectionGroupCollection.Count">
<summary>Gets the number of section groups in the collection.</summary>
<returns>An integer that represents the number of section groups in the collection.</returns>
</member>
<member name="P:System.Configuration.ConfigurationSectionGroupCollection.Item(System.Int32)">
<summary>Gets the <see cref="T:System.Configuration.ConfigurationSectionGroup" /> object whose index is specified from the collection.</summary>
<param name="index">The index of the <see cref="T:System.Configuration.ConfigurationSectionGroup" /> object to be returned. </param>
<returns>The <see cref="T:System.Configuration.ConfigurationSectionGroup" /> object at the specified index.In C#, this property is the indexer for the <see cref="T:System.Configuration.ConfigurationSectionCollection" /> class. </returns>
</member>
<member name="P:System.Configuration.ConfigurationSectionGroupCollection.Item(System.String)">
<summary>Gets the <see cref="T:System.Configuration.ConfigurationSectionGroup" /> object whose name is specified from the collection.</summary>
<param name="name">The name of the <see cref="T:System.Configuration.ConfigurationSectionGroup" /> object to be returned. </param>
<returns>The <see cref="T:System.Configuration.ConfigurationSectionGroup" /> object with the specified name.In C#, this property is the indexer for the <see cref="T:System.Configuration.ConfigurationSectionCollection" /> class. </returns>
</member>
<member name="P:System.Configuration.ConfigurationSectionGroupCollection.Keys">
<summary>Gets the keys to all <see cref="T:System.Configuration.ConfigurationSectionGroup" /> objects contained in this <see cref="T:System.Configuration.ConfigurationSectionGroupCollection" /> object.</summary>
<returns>A <see cref="T:System.Collections.Specialized.NameObjectCollectionBase.KeysCollection" /> object that contains the names of all section groups in this collection.</returns>
</member>
<member name="P:System.Configuration.ConfigurationValidatorAttribute.ValidatorInstance">
<summary>Gets the validator attribute instance.</summary>
<returns>The current <see cref="T:System.Configuration.ConfigurationValidatorBase" />.</returns>
</member>
<member name="P:System.Configuration.ConfigurationValidatorAttribute.ValidatorType">
<summary>Gets the type of the validator attribute.</summary>
<returns>The <see cref="T:System.Type" /> of the current validator attribute instance.</returns>
</member>
<member name="P:System.Configuration.ConnectionStringSettings.ConnectionString">
<summary>Gets or sets the connection string.</summary>
<returns>The string value assigned to the <see cref="P:System.Configuration.ConnectionStringSettings.ConnectionString" /> property.</returns>
</member>
<member name="P:System.Configuration.ConnectionStringSettings.Name">
<summary>Gets or sets the <see cref="T:System.Configuration.ConnectionStringSettings" /> name.</summary>
<returns>The string value assigned to the <see cref="P:System.Configuration.ConnectionStringSettings.Name" /> property.</returns>
</member>
<member name="P:System.Configuration.ConnectionStringSettings.ProviderName">
<summary>Gets or sets the provider name property.</summary>
<returns>Gets or sets the <see cref="P:System.Configuration.ConnectionStringSettings.ProviderName" /> property.</returns>
</member>
<member name="P:System.Configuration.ConnectionStringSettingsCollection.Item(System.Int32)">
<summary>Gets or sets the connection string at the specified index in the collection.</summary>
<param name="index">The index of a <see cref="T:System.Configuration.ConnectionStringSettings" /> object in the collection.</param>
<returns>The <see cref="T:System.Configuration.ConnectionStringSettings" /> object at the specified index.</returns>
</member>
<member name="P:System.Configuration.ConnectionStringSettingsCollection.Item(System.String)">
<summary>Gets or sets the <see cref="T:System.Configuration.ConnectionStringSettings" /> object with the specified name in the collection.</summary>
<param name="name">The name of a <see cref="T:System.Configuration.ConnectionStringSettings" /> object in the collection.</param>
<returns>The <see cref="T:System.Configuration.ConnectionStringSettings" /> object with the specified name; otherwise, <see langword="null" />.</returns>
</member>
<member name="P:System.Configuration.ConnectionStringsSection.ConnectionStrings">
<summary>Gets a <see cref="T:System.Configuration.ConnectionStringSettingsCollection" /> collection of <see cref="T:System.Configuration.ConnectionStringSettings" /> objects.</summary>
<returns>A <see cref="T:System.Configuration.ConnectionStringSettingsCollection" /> collection of <see cref="T:System.Configuration.ConnectionStringSettings" /> objects.</returns>
</member>
<member name="P:System.Configuration.ContextInformation.HostingContext">
<summary>Gets the context of the environment where the configuration property is being evaluated.</summary>
<returns>An object specifying the environment where the configuration property is being evaluated.</returns>
</member>
<member name="P:System.Configuration.ContextInformation.IsMachineLevel">
<summary>Gets a value specifying whether the configuration property is being evaluated at the machine configuration level.</summary>
<returns>
<see langword="true" /> if the configuration property is being evaluated at the machine configuration level; otherwise, <see langword="false" />.</returns>
</member>
<member name="P:System.Configuration.DpapiProtectedConfigurationProvider.UseMachineProtection">
<summary>Gets a value that indicates whether the <see cref="T:System.Configuration.DpapiProtectedConfigurationProvider" /> object is using machine-specific or user-account-specific protection.</summary>
<returns>
<see langword="true" /> if the <see cref="T:System.Configuration.DpapiProtectedConfigurationProvider" /> is using machine-specific protection; <see langword="false" /> if it is using user-account-specific protection.</returns>
</member>
<member name="P:System.Configuration.ElementInformation.Errors">
<summary>Gets the errors for the associated element and subelements</summary>
<returns>The collection containing the errors for the associated element and subelements</returns>
</member>
<member name="P:System.Configuration.ElementInformation.IsCollection">
<summary>Gets a value indicating whether the associated <see cref="T:System.Configuration.ConfigurationElement" /> object is a <see cref="T:System.Configuration.ConfigurationElementCollection" /> collection.</summary>
<returns>
<see langword="true" /> if the associated <see cref="T:System.Configuration.ConfigurationElement" /> object is a <see cref="T:System.Configuration.ConfigurationElementCollection" /> collection; otherwise, <see langword="false" />.</returns>
</member>
<member name="P:System.Configuration.ElementInformation.IsLocked">
<summary>Gets a value that indicates whether the associated <see cref="T:System.Configuration.ConfigurationElement" /> object cannot be modified.</summary>
<returns>
<see langword="true" /> if the associated <see cref="T:System.Configuration.ConfigurationElement" /> object cannot be modified; otherwise, <see langword="false" />.</returns>
</member>
<member name="P:System.Configuration.ElementInformation.IsPresent">
<summary>Gets a value indicating whether the associated <see cref="T:System.Configuration.ConfigurationElement" /> object is in the configuration file.</summary>
<returns>
<see langword="true" /> if the associated <see cref="T:System.Configuration.ConfigurationElement" /> object is in the configuration file; otherwise, <see langword="false" />.</returns>
</member>
<member name="P:System.Configuration.ElementInformation.LineNumber">
<summary>Gets the line number in the configuration file where the associated <see cref="T:System.Configuration.ConfigurationElement" /> object is defined.</summary>
<returns>The line number in the configuration file where the associated <see cref="T:System.Configuration.ConfigurationElement" /> object is defined.</returns>
</member>
<member name="P:System.Configuration.ElementInformation.Properties">
<summary>Gets a <see cref="T:System.Configuration.PropertyInformationCollection" /> collection of the properties in the associated <see cref="T:System.Configuration.ConfigurationElement" /> object.</summary>
<returns>A <see cref="T:System.Configuration.PropertyInformationCollection" /> collection of the properties in the associated <see cref="T:System.Configuration.ConfigurationElement" /> object.</returns>
</member>
<member name="P:System.Configuration.ElementInformation.Source">
<summary>Gets the source file where the associated <see cref="T:System.Configuration.ConfigurationElement" /> object originated.</summary>
<returns>The source file where the associated <see cref="T:System.Configuration.ConfigurationElement" /> object originated.</returns>
</member>
<member name="P:System.Configuration.ElementInformation.Type">
<summary>Gets the type of the associated <see cref="T:System.Configuration.ConfigurationElement" /> object.</summary>
<returns>The type of the associated <see cref="T:System.Configuration.ConfigurationElement" /> object.</returns>
</member>
<member name="P:System.Configuration.ElementInformation.Validator">
<summary>Gets the object used to validate the associated <see cref="T:System.Configuration.ConfigurationElement" /> object.</summary>
<returns>The object used to validate the associated <see cref="T:System.Configuration.ConfigurationElement" /> object.</returns>
</member>
<member name="P:System.Configuration.ExeConfigurationFileMap.ExeConfigFilename">
<summary>Gets or sets the name of the configuration file.</summary>
<returns>The configuration file name.</returns>
</member>
<member name="P:System.Configuration.ExeConfigurationFileMap.LocalUserConfigFilename">
<summary>Gets or sets the name of the configuration file for the local user.</summary>
<returns>The configuration file name.</returns>
</member>
<member name="P:System.Configuration.ExeConfigurationFileMap.RoamingUserConfigFilename">
<summary>Gets or sets the name of the configuration file for the roaming user.</summary>
<returns>The configuration file name.</returns>
</member>
<member name="P:System.Configuration.ExeContext.ExePath">
<summary>Gets the current path for the application.</summary>
<returns>A string value containing the current path.</returns>
</member>
<member name="P:System.Configuration.ExeContext.UserLevel">
<summary>Gets an object representing the path level of the current application.</summary>
<returns>A <see cref="T:System.Configuration.ConfigurationUserLevel" /> object representing the path level of the current application.</returns>
</member>
<member name="P:System.Configuration.IntegerValidatorAttribute.ExcludeRange">
<summary>Gets or sets a value that indicates whether to include or exclude the integers in the range defined by the <see cref="P:System.Configuration.IntegerValidatorAttribute.MinValue" /> and <see cref="P:System.Configuration.IntegerValidatorAttribute.MaxValue" /> property values.</summary>
<returns>
<see langword="true" /> if the value must be excluded; otherwise, <see langword="false" />. The default is <see langword="false" />.</returns>
</member>
<member name="P:System.Configuration.IntegerValidatorAttribute.MaxValue">
<summary>Gets or sets the maximum value allowed for the property.</summary>
<returns>An integer that indicates the allowed maximum value.</returns>
<exception cref="T:System.ArgumentOutOfRangeException">The selected value is less than <see cref="P:System.Configuration.IntegerValidatorAttribute.MinValue" />.</exception>
</member>
<member name="P:System.Configuration.IntegerValidatorAttribute.MinValue">
<summary>Gets or sets the minimum value allowed for the property.</summary>
<returns>An integer that indicates the allowed minimum value.</returns>
<exception cref="T:System.ArgumentOutOfRangeException">The selected value is greater than <see cref="P:System.Configuration.IntegerValidatorAttribute.MaxValue" />.</exception>
</member>
<member name="P:System.Configuration.IntegerValidatorAttribute.ValidatorInstance">
<summary>Gets an instance of the <see cref="T:System.Configuration.IntegerValidator" /> class.</summary>
<returns>The <see cref="T:System.Configuration.ConfigurationValidatorBase" /> validator instance.</returns>
</member>
<member name="P:System.Configuration.Internal.DelegatingConfigHost.ConfigBuilderHost">
<summary>Gets the <see cref="T:System.Configuration.Internal.IInternalConfigurationBuilderHost" /> object if the delegated host provides the functionality required by that interface.</summary>
<returns>An <see cref="T:System.Configuration.Internal.IInternalConfigurationBuilderHost" /> object.</returns>
</member>
<member name="P:System.Configuration.Internal.DelegatingConfigHost.Host">
<summary>Gets or sets the <see cref="T:System.Configuration.Internal.IInternalConfigHost" /> object.</summary>
<returns>A <see cref="T:System.Configuration.Internal.IInternalConfigHost" /> object.</returns>
</member>
<member name="P:System.Configuration.Internal.DelegatingConfigHost.IsRemote">
<summary>Gets a value indicating whether the configuration is remote.</summary>
<returns>
<see langword="true" /> if the configuration is remote; otherwise, <see langword="false" />.</returns>
</member>
<member name="P:System.Configuration.Internal.DelegatingConfigHost.SupportsChangeNotifications">
<summary>Gets a value indicating whether the host configuration supports change notifications.</summary>
<returns>
<see langword="true" /> if the host supports change notifications; otherwise, <see langword="false" />. </returns>
</member>
<member name="P:System.Configuration.Internal.DelegatingConfigHost.SupportsLocation">
<summary>Gets a value indicating whether the host configuration supports location tags.</summary>
<returns>
<see langword="true" /> if the host supports location tags; otherwise, <see langword="false" />.</returns>
</member>
<member name="P:System.Configuration.Internal.DelegatingConfigHost.SupportsPath">
<summary>Gets a value indicating whether the host configuration has path support.</summary>
<returns>
<see langword="true" /> if the host configuration has path support; otherwise, <see langword="false" />.</returns>
</member>
<member name="P:System.Configuration.Internal.DelegatingConfigHost.SupportsRefresh">
<summary>Gets a value indicating whether the host configuration supports refresh.</summary>
<returns>
<see langword="true" /> if the host configuration supports refresh; otherwise, <see langword="false" />.</returns>
</member>
<member name="P:System.Configuration.Internal.IConfigErrorInfo.Filename">
<summary>Gets a string specifying the file name related to the configuration details.</summary>
<returns>A string specifying a filename.</returns>
</member>
<member name="P:System.Configuration.Internal.IConfigErrorInfo.LineNumber">
<summary>Gets an integer specifying the line number related to the configuration details.</summary>
<returns>An integer specifying a line number.</returns>
</member>
<member name="P:System.Configuration.Internal.IConfigSystem.Host">
<summary>Gets the configuration host.</summary>
<returns>An <see cref="T:System.Configuration.Internal.IInternalConfigHost" /> object that is used by the .NET Framework to initialize application configuration properties.</returns>
</member>
<member name="P:System.Configuration.Internal.IConfigSystem.Root">
<summary>Gets the root of the configuration hierarchy.</summary>
<returns>An <see cref="T:System.Configuration.Internal.IInternalConfigRoot" /> object.</returns>
</member>
<member name="P:System.Configuration.Internal.IConfigurationManagerInternal.ApplicationConfigUri">
<summary>Gets the configuration file name related to the application path.</summary>
<returns>A string value representing a configuration file name.</returns>
</member>
<member name="P:System.Configuration.Internal.IConfigurationManagerInternal.ExeLocalConfigDirectory">
<summary>Gets the local configuration directory of the application based on the entry assembly.</summary>
<returns>A string representing the local configuration directory.</returns>
</member>
<member name="P:System.Configuration.Internal.IConfigurationManagerInternal.ExeLocalConfigPath">
<summary>Gets the local configuration path of the application based on the entry assembly.</summary>
<returns>A string value representing the local configuration path of the application.</returns>
</member>
<member name="P:System.Configuration.Internal.IConfigurationManagerInternal.ExeProductName">
<summary>Gets the product name of the application based on the entry assembly.</summary>
<returns>A string value representing the product name of the application.</returns>
</member>
<member name="P:System.Configuration.Internal.IConfigurationManagerInternal.ExeProductVersion">
<summary>Gets the product version of the application based on the entry assembly.</summary>
<returns>A string value representing the product version of the application.</returns>
</member>
<member name="P:System.Configuration.Internal.IConfigurationManagerInternal.ExeRoamingConfigDirectory">
<summary>Gets the roaming configuration directory of the application based on the entry assembly.</summary>
<returns>A string value representing the roaming configuration directory of the application.</returns>
</member>
<member name="P:System.Configuration.Internal.IConfigurationManagerInternal.ExeRoamingConfigPath">
<summary>Gets the roaming user's configuration path based on the application's entry assembly.</summary>
<returns>A string value representing the roaming user's configuration path.</returns>
</member>
<member name="P:System.Configuration.Internal.IConfigurationManagerInternal.MachineConfigPath">
<summary>Gets the configuration path for the Machine.config file.</summary>
<returns>A string value representing the path of the Machine.config file.</returns>
</member>
<member name="P:System.Configuration.Internal.IConfigurationManagerInternal.SetConfigurationSystemInProgress">
<summary>Gets a value representing the configuration system's status.</summary>
<returns>
<see langword="true" /> if the configuration system is in the process of being initialized; otherwise, <see langword="false" />.</returns>
</member>
<member name="P:System.Configuration.Internal.IConfigurationManagerInternal.SupportsUserConfig">
<summary>Gets a value that specifies whether user configuration settings are supported.</summary>
<returns>
<see langword="true" /> if the configuration system supports user configuration settings; otherwise, <see langword="false" />.</returns>
</member>
<member name="P:System.Configuration.Internal.IConfigurationManagerInternal.UserConfigFilename">
<summary>Gets the name of the file used to store user configuration settings.</summary>
<returns>A string specifying the name of the file used to store user configuration.</returns>
</member>
<member name="P:System.Configuration.Internal.IInternalConfigHost.IsRemote">
<summary>Returns a value indicating whether the configuration is remote.</summary>
<returns>
<see langword="true" /> if the configuration is remote; otherwise, <see langword="false" />.</returns>
</member>
<member name="P:System.Configuration.Internal.IInternalConfigHost.SupportsChangeNotifications">
<summary>Returns a value indicating whether the host configuration supports change notification.</summary>
<returns>
<see langword="true" /> if the configuration supports change notification; otherwise, <see langword="false" />.</returns>
</member>
<member name="P:System.Configuration.Internal.IInternalConfigHost.SupportsLocation">
<summary>Returns a value indicating whether the host configuration supports location tags.</summary>
<returns>
<see langword="true" /> if the configuration supports location tags; otherwise, <see langword="false" />.</returns>
</member>
<member name="P:System.Configuration.Internal.IInternalConfigHost.SupportsPath">
<summary>Returns a value indicating whether the host configuration supports path tags.</summary>
<returns>
<see langword="true" /> if the configuration supports path tags; otherwise, <see langword="false" />.</returns>
</member>
<member name="P:System.Configuration.Internal.IInternalConfigHost.SupportsRefresh">
<summary>Returns a value indicating whether the host configuration supports configuration refresh.</summary>
<returns>
<see langword="true" /> if the configuration supports configuration refresh; otherwise, <see langword="false" />.</returns>
</member>
<member name="P:System.Configuration.Internal.IInternalConfigRecord.ConfigPath">
<summary>Gets a string representing a configuration file path.</summary>
<returns>A string representing a configuration file path.</returns>
</member>
<member name="P:System.Configuration.Internal.IInternalConfigRecord.HasInitErrors">
<summary>Returns a value indicating whether an error occurred during initialization of a configuration object.</summary>
<returns>
<see langword="true" /> if an error occurred during initialization of a configuration object; otherwise, <see langword="false" />.</returns>
</member>
<member name="P:System.Configuration.Internal.IInternalConfigRecord.StreamName">
<summary>Returns the name of a <see cref="T:System.IO.Stream" /> object performing I/O tasks on the configuration file.</summary>
<returns>A string representing the name of a <see cref="T:System.IO.Stream" /> object performing I/O tasks on the configuration file.</returns>
</member>
<member name="P:System.Configuration.Internal.IInternalConfigRoot.IsDesignTime">
<summary>Returns a value indicating whether the configuration is a design-time configuration.</summary>
<returns>
<see langword="true" /> if the configuration is a design-time configuration; <see langword="false" /> if the configuration is not a design-time configuration.</returns>
</member>
<member name="P:System.Configuration.Internal.IInternalConfigSystem.SupportsUserConfig">
<summary>Gets a value indicating whether the user configuration is supported. </summary>
<returns>
<see langword="true" /> if the user configuration is supported; otherwise, <see langword="false" />.</returns>
</member>
<member name="P:System.Configuration.Internal.InternalConfigEventArgs.ConfigPath">
<summary>Gets or sets the configuration path related to the <see cref="T:System.Configuration.Internal.InternalConfigEventArgs" /> object.</summary>
<returns>A string value specifying the configuration path.</returns>
</member>
<member name="P:System.Configuration.KeyValueConfigurationCollection.AllKeys">
<summary>Gets the keys to all items contained in the <see cref="T:System.Configuration.KeyValueConfigurationCollection" /> collection.</summary>
<returns>A string array.</returns>
</member>
<member name="P:System.Configuration.KeyValueConfigurationCollection.Item(System.String)">
<summary>Gets the <see cref="T:System.Configuration.KeyValueConfigurationElement" /> object based on the supplied parameter.</summary>
<param name="key">The key of the <see cref="T:System.Configuration.KeyValueConfigurationElement" /> contained in the collection.</param>
<returns>A configuration element, or <see langword="null" /> if the key does not exist in the collection.</returns>
</member>
<member name="P:System.Configuration.KeyValueConfigurationCollection.Properties">
<summary>Gets a collection of configuration properties.</summary>
<returns>A collection of configuration properties.</returns>
</member>
<member name="P:System.Configuration.KeyValueConfigurationCollection.ThrowOnDuplicate">
<summary>Gets a value indicating whether an attempt to add a duplicate <see cref="T:System.Configuration.KeyValueConfigurationElement" /> object to the <see cref="T:System.Configuration.KeyValueConfigurationCollection" /> collection will cause an exception to be thrown.</summary>
<returns>
<see langword="true" /> if an attempt to add a duplicate <see cref="T:System.Configuration.KeyValueConfigurationElement" /> to the <see cref="T:System.Configuration.KeyValueConfigurationCollection" /> will cause an exception to be thrown; otherwise, <see langword="false" />. </returns>
</member>
<member name="P:System.Configuration.KeyValueConfigurationElement.Key">
<summary>Gets the key of the <see cref="T:System.Configuration.KeyValueConfigurationElement" /> object.</summary>
<returns>The key of the <see cref="T:System.Configuration.KeyValueConfigurationElement" />.</returns>
</member>
<member name="P:System.Configuration.KeyValueConfigurationElement.Properties">
<summary>Gets the collection of properties. </summary>
<returns>The <see cref="T:System.Configuration.ConfigurationPropertyCollection" /> of properties for the element.</returns>
</member>
<member name="P:System.Configuration.KeyValueConfigurationElement.Value">
<summary>Gets or sets the value of the <see cref="T:System.Configuration.KeyValueConfigurationElement" /> object.</summary>
<returns>The value of the <see cref="T:System.Configuration.KeyValueConfigurationElement" />.</returns>
</member>
<member name="P:System.Configuration.LongValidatorAttribute.ExcludeRange">
<summary>Gets or sets a value that indicates whether to include or exclude the integers in the range defined by the <see cref="P:System.Configuration.LongValidatorAttribute.MinValue" /> and <see cref="P:System.Configuration.LongValidatorAttribute.MaxValue" /> property values.</summary>
<returns>
<see langword="true" /> if the value must be excluded; otherwise, <see langword="false" />. The default is <see langword="false" />.</returns>
</member>
<member name="P:System.Configuration.LongValidatorAttribute.MaxValue">
<summary>Gets or sets the maximum value allowed for the property.</summary>
<returns>A long integer that indicates the allowed maximum value.</returns>
<exception cref="T:System.ArgumentOutOfRangeException">The selected value is less than <see cref="P:System.Configuration.LongValidatorAttribute.MinValue" />.</exception>
</member>
<member name="P:System.Configuration.LongValidatorAttribute.MinValue">
<summary>Gets or sets the minimum value allowed for the property.</summary>
<returns>An integer that indicates the allowed minimum value.</returns>
<exception cref="T:System.ArgumentOutOfRangeException">The selected value is greater than <see cref="P:System.Configuration.LongValidatorAttribute.MaxValue" />.</exception>
</member>
<member name="P:System.Configuration.LongValidatorAttribute.ValidatorInstance">
<summary>Gets an instance of the <see cref="T:System.Configuration.LongValidator" /> class.</summary>
<returns>The <see cref="T:System.Configuration.ConfigurationValidatorBase" /> validator instance.</returns>
</member>
<member name="P:System.Configuration.NameValueConfigurationCollection.AllKeys">
<summary>Gets the keys to all items contained in the <see cref="T:System.Configuration.NameValueConfigurationCollection" />.</summary>
<returns>A string array.</returns>
</member>
<member name="P:System.Configuration.NameValueConfigurationCollection.Item(System.String)">
<summary>Gets or sets the <see cref="T:System.Configuration.NameValueConfigurationElement" /> object based on the supplied parameter.</summary>
<param name="name">The name of the <see cref="T:System.Configuration.NameValueConfigurationElement" /> contained in the collection.</param>
<returns>A <see cref="T:System.Configuration.NameValueConfigurationElement" /> object.</returns>
</member>
<member name="P:System.Configuration.NameValueConfigurationElement.Name">
<summary>Gets the name of the <see cref="T:System.Configuration.NameValueConfigurationElement" /> object.</summary>
<returns>The name of the <see cref="T:System.Configuration.NameValueConfigurationElement" /> object.</returns>
</member>
<member name="P:System.Configuration.NameValueConfigurationElement.Value">
<summary>Gets or sets the value of the <see cref="T:System.Configuration.NameValueConfigurationElement" /> object.</summary>
<returns>The value of the <see cref="T:System.Configuration.NameValueConfigurationElement" /> object.</returns>
</member>
<member name="P:System.Configuration.PositiveTimeSpanValidatorAttribute.ValidatorInstance">
<summary>Gets an instance of the <see cref="T:System.Configuration.PositiveTimeSpanValidator" /> class.</summary>
<returns>The <see cref="T:System.Configuration.ConfigurationValidatorBase" /> validator instance. </returns>
</member>
<member name="P:System.Configuration.PropertyInformation.Converter">
<summary>Gets the <see cref="T:System.ComponentModel.TypeConverter" /> object related to the configuration attribute.</summary>
<returns>A <see cref="T:System.ComponentModel.TypeConverter" /> object.</returns>
</member>
<member name="P:System.Configuration.PropertyInformation.DefaultValue">
<summary>Gets an object containing the default value related to a configuration attribute.</summary>
<returns>An object containing the default value of the configuration attribute.</returns>
</member>
<member name="P:System.Configuration.PropertyInformation.Description">
<summary>Gets the description of the object that corresponds to a configuration attribute.</summary>
<returns>The description of the configuration attribute.</returns>
</member>
<member name="P:System.Configuration.PropertyInformation.IsKey">
<summary>Gets a value specifying whether the configuration attribute is a key.</summary>
<returns>
<see langword="true" /> if the configuration attribute is a key; otherwise, <see langword="false" />.</returns>
</member>
<member name="P:System.Configuration.PropertyInformation.IsLocked">
<summary>Gets a value specifying whether the configuration attribute is locked.</summary>
<returns>
<see langword="true" /> if the <see cref="T:System.Configuration.PropertyInformation" /> object is locked; otherwise, <see langword="false" />.</returns>
</member>
<member name="P:System.Configuration.PropertyInformation.IsModified">
<summary>Gets a value specifying whether the configuration attribute has been modified.</summary>
<returns>
<see langword="true" /> if the <see cref="T:System.Configuration.PropertyInformation" /> object has been modified; otherwise, <see langword="false" />.</returns>
</member>
<member name="P:System.Configuration.PropertyInformation.IsRequired">
<summary>Gets a value specifying whether the configuration attribute is required.</summary>
<returns>
<see langword="true" /> if the <see cref="T:System.Configuration.PropertyInformation" /> object is required; otherwise, <see langword="false" />.</returns>
</member>
<member name="P:System.Configuration.PropertyInformation.LineNumber">
<summary>Gets the line number in the configuration file related to the configuration attribute.</summary>
<returns>A line number of the configuration file.</returns>
</member>
<member name="P:System.Configuration.PropertyInformation.Name">
<summary>Gets the name of the object that corresponds to a configuration attribute.</summary>
<returns>The name of the <see cref="T:System.Configuration.PropertyInformation" /> object.</returns>
</member>
<member name="P:System.Configuration.PropertyInformation.Source">
<summary>Gets the source file that corresponds to a configuration attribute.</summary>
<returns>The source file of the <see cref="T:System.Configuration.PropertyInformation" /> object.</returns>
</member>
<member name="P:System.Configuration.PropertyInformation.Type">
<summary>Gets the <see cref="T:System.Type" /> of the object that corresponds to a configuration attribute.</summary>
<returns>The <see cref="T:System.Type" /> of the <see cref="T:System.Configuration.PropertyInformation" /> object.</returns>
</member>
<member name="P:System.Configuration.PropertyInformation.Validator">
<summary>Gets a <see cref="T:System.Configuration.ConfigurationValidatorBase" /> object related to the configuration attribute.</summary>
<returns>A <see cref="T:System.Configuration.ConfigurationValidatorBase" /> object.</returns>
</member>
<member name="P:System.Configuration.PropertyInformation.Value">
<summary>Gets or sets an object containing the value related to a configuration attribute.</summary>
<returns>An object containing the value for the <see cref="T:System.Configuration.PropertyInformation" /> object.</returns>
</member>
<member name="P:System.Configuration.PropertyInformation.ValueOrigin">
<summary>Gets a <see cref="T:System.Configuration.PropertyValueOrigin" /> object related to the configuration attribute. </summary>
<returns>A <see cref="T:System.Configuration.PropertyValueOrigin" /> object.</returns>
</member>
<member name="P:System.Configuration.PropertyInformationCollection.Item(System.String)">
<summary>Gets the <see cref="T:System.Configuration.PropertyInformation" /> object in the collection, based on the specified property name.</summary>
<param name="propertyName">The name of the configuration attribute contained in the <see cref="T:System.Configuration.PropertyInformationCollection" />object.</param>
<returns>A <see cref="T:System.Configuration.PropertyInformation" /> object.</returns>
</member>
<member name="P:System.Configuration.ProtectedConfiguration.DefaultProvider">
<summary>Gets the name of the default protected-configuration provider.</summary>
<returns>The name of the default protected-configuration provider.</returns>
</member>
<member name="P:System.Configuration.ProtectedConfiguration.Providers">
<summary>Gets a collection of the installed protected-configuration providers.</summary>
<returns>A <see cref="T:System.Configuration.ProtectedConfigurationProviderCollection" /> collection of installed <see cref="T:System.Configuration.ProtectedConfigurationProvider" /> objects.</returns>
</member>
<member name="P:System.Configuration.ProtectedConfigurationProviderCollection.Item(System.String)">
<summary>Gets a <see cref="T:System.Configuration.ProtectedConfigurationProvider" /> object in the collection with the specified name.</summary>
<param name="name">The name of a <see cref="T:System.Configuration.ProtectedConfigurationProvider" /> object in the collection.</param>
<returns>The <see cref="T:System.Configuration.ProtectedConfigurationProvider" /> object with the specified name, or <see langword="null" /> if there is no object with that name.</returns>
</member>
<member name="P:System.Configuration.ProtectedConfigurationSection.DefaultProvider">
<summary>Gets or sets the name of the default <see cref="T:System.Configuration.ProtectedConfigurationProvider" /> object in the <see cref="P:System.Configuration.ProtectedConfigurationSection.Providers" /> collection property.</summary>
<returns>The name of the default <see cref="T:System.Configuration.ProtectedConfigurationProvider" /> object in the <see cref="P:System.Configuration.ProtectedConfigurationSection.Providers" /> collection property. </returns>
</member>
<member name="P:System.Configuration.ProtectedConfigurationSection.Providers">
<summary>Gets a <see cref="T:System.Configuration.ProviderSettingsCollection" /> collection of all the <see cref="T:System.Configuration.ProtectedConfigurationProvider" /> objects in all participating configuration files.</summary>
<returns>A <see cref="T:System.Configuration.ProviderSettingsCollection" /> collection of all the <see cref="T:System.Configuration.ProtectedConfigurationProvider" /> objects in all participating configuration files. </returns>
</member>
<member name="P:System.Configuration.ProtectedProviderSettings.Properties">
<summary>Gets a <see cref="T:System.Configuration.ConfigurationPropertyCollection" /> collection that represents the properties of the providers for the protected configuration data.</summary>
<returns>A <see cref="T:System.Configuration.ConfigurationPropertyCollection" /> that represents the properties of the providers for the protected configuration data.</returns>
</member>
<member name="P:System.Configuration.ProtectedProviderSettings.Providers">
<summary>Gets a collection of <see cref="T:System.Configuration.ProviderSettings" /> objects that represent the properties of the providers for the protected configuration data.</summary>
<returns>A collection of <see cref="T:System.Configuration.ProviderSettings" /> objects that represent the properties of the providers for the protected configuration data.</returns>
</member>
<member name="P:System.Configuration.Provider.ProviderBase.Description">
<summary>Gets a brief, friendly description suitable for display in administrative tools or other user interfaces (UIs).</summary>
<returns>A brief, friendly description suitable for display in administrative tools or other UIs.</returns>
</member>
<member name="P:System.Configuration.Provider.ProviderBase.Name">
<summary>Gets the friendly name used to refer to the provider during configuration.</summary>
<returns>The friendly name used to refer to the provider during configuration.</returns>
</member>
<member name="P:System.Configuration.Provider.ProviderCollection.Count">
<summary>Gets the number of providers in the collection.</summary>
<returns>The number of providers in the collection.</returns>
</member>
<member name="P:System.Configuration.Provider.ProviderCollection.IsSynchronized">
<summary>Gets a value indicating whether access to the collection is synchronized (thread safe).</summary>
<returns>
<see langword="false" /> in all cases.</returns>
</member>
<member name="P:System.Configuration.Provider.ProviderCollection.Item(System.String)">
<summary>Gets the provider with the specified name.</summary>
<param name="name">The key by which the provider is identified.</param>
<returns>The provider with the specified name.</returns>
</member>
<member name="P:System.Configuration.Provider.ProviderCollection.SyncRoot">
<summary>Gets the current object.</summary>
<returns>The current object.</returns>
</member>
<member name="P:System.Configuration.ProviderSettings.Name">
<summary>Gets or sets the name of the provider configured by this class.</summary>
<returns>The name of the provider.</returns>
</member>
<member name="P:System.Configuration.ProviderSettings.Parameters">
<summary>Gets a collection of user-defined parameters for the provider.</summary>
<returns>A <see cref="T:System.Collections.Specialized.NameValueCollection" /> of parameters for the provider.</returns>
</member>
<member name="P:System.Configuration.ProviderSettings.Type">
<summary>Gets or sets the type of the provider configured by this class.</summary>
<returns>The fully qualified namespace and class name for the type of provider configured by this <see cref="T:System.Configuration.ProviderSettings" /> instance.</returns>
</member>
<member name="P:System.Configuration.ProviderSettingsCollection.Item(System.Int32)">
<summary>Gets or sets a value at the specified index in the <see cref="T:System.Configuration.ProviderSettingsCollection" /> collection.</summary>
<param name="index">The index of the <see cref="T:System.Configuration.ProviderSettings" /> to return.</param>
<returns>The specified <see cref="T:System.Configuration.ProviderSettings" />.</returns>
</member>
<member name="P:System.Configuration.ProviderSettingsCollection.Item(System.String)">
<summary>Gets an item from the collection. </summary>
<param name="key">A string reference to the <see cref="T:System.Configuration.ProviderSettings" /> object within the collection.</param>
<returns>A <see cref="T:System.Configuration.ProviderSettings" /> object contained in the collection.</returns>
</member>
<member name="P:System.Configuration.RegexStringValidatorAttribute.Regex">
<summary>Gets the string used to perform regular-expression validation.</summary>
<returns>The string containing the regular expression used to filter the string assigned to the decorated configuration-element property.</returns>
</member>
<member name="P:System.Configuration.RegexStringValidatorAttribute.ValidatorInstance">
<summary>Gets an instance of the <see cref="T:System.Configuration.RegexStringValidator" /> class.</summary>
<returns>The <see cref="T:System.Configuration.ConfigurationValidatorBase" /> validator instance.</returns>
</member>
<member name="P:System.Configuration.RsaProtectedConfigurationProvider.CspProviderName">
<summary>Gets the name of the Windows cryptography API (crypto API) cryptographic service provider (CSP).</summary>
<returns>The name of the CryptoAPI cryptographic service provider.</returns>
</member>
<member name="P:System.Configuration.RsaProtectedConfigurationProvider.KeyContainerName">
<summary>Gets the name of the key container.</summary>
<returns>The name of the key container.</returns>
</member>
<member name="P:System.Configuration.RsaProtectedConfigurationProvider.RsaPublicKey">
<summary>Gets the public key used by the provider.</summary>
<returns>An <see cref="T:System.Security.Cryptography.RSAParameters" /> object that contains the public key used by the provider.</returns>
</member>
<member name="P:System.Configuration.RsaProtectedConfigurationProvider.UseFIPS">
<summary>Gets a value indicating whether the provider uses FIPS.</summary>
<returns>
<see langword="true" /> if the provider uses FIPS; otherwise, <see langword="false" />.</returns>
</member>
<member name="P:System.Configuration.RsaProtectedConfigurationProvider.UseMachineContainer">
<summary>Gets a value that indicates whether the <see cref="T:System.Configuration.RsaProtectedConfigurationProvider" /> object is using the machine key container.</summary>
<returns>
<see langword="true" /> if the <see cref="T:System.Configuration.RsaProtectedConfigurationProvider" /> object is using the machine key container; otherwise, <see langword="false" />.</returns>
</member>
<member name="P:System.Configuration.RsaProtectedConfigurationProvider.UseOAEP">
<summary>Gets a value that indicates whether the provider is using Optimal Asymmetric Encryption Padding (OAEP) key exchange data.</summary>
<returns>
<see langword="true" /> if the <see cref="T:System.Configuration.RsaProtectedConfigurationProvider" /> object is using Optimal Asymmetric Encryption Padding (OAEP) key exchange data; otherwise, <see langword="false" />.</returns>
</member>
<member name="P:System.Configuration.SectionInformation.AllowDefinition">
<summary>Gets or sets a value that indicates where in the configuration file hierarchy the associated configuration section can be defined. </summary>
<returns>A value that indicates where in the configuration file hierarchy the associated <see cref="T:System.Configuration.ConfigurationSection" /> object can be declared.</returns>
<exception cref="T:System.Configuration.ConfigurationErrorsException">The selected value conflicts with a value that is already defined.</exception>
</member>
<member name="P:System.Configuration.SectionInformation.AllowExeDefinition">
<summary>Gets or sets a value that indicates where in the configuration file hierarchy the associated configuration section can be declared.</summary>
<returns>A value that indicates where in the configuration file hierarchy the associated <see cref="T:System.Configuration.ConfigurationSection" /> object can be declared for .exe files.</returns>
<exception cref="T:System.Configuration.ConfigurationErrorsException">The selected value conflicts with a value that is already defined.</exception>
</member>
<member name="P:System.Configuration.SectionInformation.AllowLocation">
<summary>Gets or sets a value that indicates whether the configuration section allows the <see langword="location" /> attribute.</summary>
<returns>
<see langword="true" /> if the <see langword="location" /> attribute is allowed; otherwise, <see langword="false" />. The default is <see langword="true" />.</returns>
<exception cref="T:System.Configuration.ConfigurationErrorsException">The selected value conflicts with a value that is already defined.</exception>
</member>
<member name="P:System.Configuration.SectionInformation.AllowOverride">
<summary>Gets or sets a value that indicates whether the associated configuration section can be overridden by lower-level configuration files.</summary>
<returns>
<see langword="true" /> if the section can be overridden; otherwise, <see langword="false" />. The default is <see langword="false" />.</returns>
</member>
<member name="P:System.Configuration.SectionInformation.ConfigSource">
<summary>Gets or sets the name of the include file in which the associated configuration section is defined, if such a file exists.</summary>
<returns>The name of the include file in which the associated <see cref="T:System.Configuration.ConfigurationSection" /> is defined, if such a file exists; otherwise, an empty string ("").</returns>
</member>
<member name="P:System.Configuration.SectionInformation.ConfigurationBuilder">
<summary>Gets the <see cref="T:System.Configuration.ConfigurationBuilder" /> object for this configuration section.</summary>
<returns>The <see cref="T:System.Configuration.ConfigurationBuilder" /> object for this configuration section.</returns>
</member>
<member name="P:System.Configuration.SectionInformation.ForceSave">
<summary>Gets or sets a value that indicates whether the associated configuration section will be saved even if it has not been modified.</summary>
<returns>
<see langword="true" /> if the associated <see cref="T:System.Configuration.ConfigurationSection" /> object will be saved even if it has not been modified; otherwise, <see langword="false" />. The default is <see langword="false" />.If the configuration file is saved (even if there are no modifications), ASP.NET restarts the application.</returns>
</member>
<member name="P:System.Configuration.SectionInformation.InheritInChildApplications">
<summary>Gets or sets a value that indicates whether the settings that are specified in the associated configuration section are inherited by applications that reside in a subdirectory of the relevant application.</summary>
<returns>
<see langword="true" /> if the settings specified in this <see cref="T:System.Configuration.ConfigurationSection" /> object are inherited by child applications; otherwise, <see langword="false" />. The default is <see langword="true" />.</returns>
</member>
<member name="P:System.Configuration.SectionInformation.IsDeclarationRequired">
<summary>Gets a value that indicates whether the configuration section must be declared in the configuration file.</summary>
<returns>
<see langword="true" /> if the associated <see cref="T:System.Configuration.ConfigurationSection" /> object must be declared in the configuration file; otherwise, <see langword="false" />.</returns>
</member>
<member name="P:System.Configuration.SectionInformation.IsDeclared">
<summary>Gets a value that indicates whether the associated configuration section is declared in the configuration file.</summary>
<returns>
<see langword="true" /> if this <see cref="T:System.Configuration.ConfigurationSection" /> is declared in the configuration file; otherwise, <see langword="false" />. The default is <see langword="true" />.</returns>
</member>
<member name="P:System.Configuration.SectionInformation.IsLocked">
<summary>Gets a value that indicates whether the associated configuration section is locked.</summary>
<returns>
<see langword="true" /> if the section is locked; otherwise, <see langword="false" />. </returns>
</member>
<member name="P:System.Configuration.SectionInformation.IsProtected">
<summary>Gets a value that indicates whether the associated configuration section is protected.</summary>
<returns>
<see langword="true" /> if this <see cref="T:System.Configuration.ConfigurationSection" /> is protected; otherwise, <see langword="false" />. The default is <see langword="false" />.</returns>
</member>
<member name="P:System.Configuration.SectionInformation.Name">
<summary>Gets the name of the associated configuration section.</summary>
<returns>The complete name of the configuration section.</returns>
</member>
<member name="P:System.Configuration.SectionInformation.OverrideMode">
<summary>Gets or sets the <see cref="T:System.Configuration.OverrideMode" /> enumeration value that specifies whether the associated configuration section can be overridden by child configuration files.</summary>
<returns>One of the <see cref="T:System.Configuration.OverrideMode" /> enumeration values.</returns>
<exception cref="T:System.Configuration.ConfigurationErrorsException">An attempt was made to change both the <see cref="P:System.Configuration.SectionInformation.AllowOverride" /> and <see cref="P:System.Configuration.SectionInformation.OverrideMode" /> properties, which is not supported for compatibility reasons. </exception>
</member>
<member name="P:System.Configuration.SectionInformation.OverrideModeDefault">
<summary>Gets or sets a value that specifies the default override behavior of a configuration section by child configuration files.</summary>
<returns>One of the <see cref="T:System.Configuration.OverrideMode" /> enumeration values.</returns>
<exception cref="T:System.Configuration.ConfigurationErrorsException">The override behavior is specified in a parent configuration section.</exception>
</member>
<member name="P:System.Configuration.SectionInformation.OverrideModeEffective">
<summary>Gets the override behavior of a configuration section that is in turn based on whether child configuration files can lock the configuration section. </summary>
<returns>One of the <see cref="T:System.Configuration.OverrideMode" /> enumeration values.</returns>
</member>
<member name="P:System.Configuration.SectionInformation.ProtectionProvider">
<summary>Gets the protected configuration provider for the associated configuration section.</summary>
<returns>The protected configuration provider for this <see cref="T:System.Configuration.ConfigurationSection" /> object.</returns>
</member>
<member name="P:System.Configuration.SectionInformation.RequirePermission">
<summary>Gets a value that indicates whether the associated configuration section requires access permissions.</summary>
<returns>
<see langword="true" /> if the <see langword="requirePermission" /> attribute is set to <see langword="true" />; otherwise, <see langword="false" />. The default is <see langword="true" />.</returns>
<exception cref="T:System.Configuration.ConfigurationErrorsException">The selected value conflicts with a value that is already defined.</exception>
</member>
<member name="P:System.Configuration.SectionInformation.RestartOnExternalChanges">
<summary>Gets or sets a value that specifies whether a change in an external configuration include file requires an application restart.</summary>
<returns>
<see langword="true" /> if a change in an external configuration include file requires an application restart; otherwise, <see langword="false" />. The default is <see langword="true" />.</returns>
<exception cref="T:System.Configuration.ConfigurationErrorsException">The selected value conflicts with a value that is already defined.</exception>
</member>
<member name="P:System.Configuration.SectionInformation.SectionName">
<summary>Gets the name of the associated configuration section.</summary>
<returns>The name of the associated <see cref="T:System.Configuration.ConfigurationSection" /> object.</returns>
</member>
<member name="P:System.Configuration.SectionInformation.Type">
<summary>Gets or sets the section class name.</summary>
<returns>The name of the class that is associated with this <see cref="T:System.Configuration.ConfigurationSection" /> section.</returns>
<exception cref="T:System.ArgumentException">The selected value is <see langword="null" /> or an empty string ("").</exception>
<exception cref="T:System.Configuration.ConfigurationErrorsException">The selected value conflicts with a value that is already defined.</exception>
</member>
<member name="P:System.Configuration.StringValidatorAttribute.InvalidCharacters">
<summary>Gets or sets the invalid characters for the property.</summary>
<returns>The string that contains the set of characters that are not allowed for the property.</returns>
</member>
<member name="P:System.Configuration.StringValidatorAttribute.MaxLength">
<summary>Gets or sets the maximum length allowed for the string to assign to the property.</summary>
<returns>An integer that indicates the maximum allowed length for the string to assign to the property.</returns>
<exception cref="T:System.ArgumentOutOfRangeException">The selected value is less than <see cref="P:System.Configuration.StringValidatorAttribute.MinLength" />.</exception>
</member>
<member name="P:System.Configuration.StringValidatorAttribute.MinLength">
<summary>Gets or sets the minimum allowed value for the string to assign to the property.</summary>
<returns>An integer that indicates the allowed minimum length for the string to assign to the property.</returns>
<exception cref="T:System.ArgumentOutOfRangeException">The selected value is greater than <see cref="P:System.Configuration.StringValidatorAttribute.MaxLength" />.</exception>
</member>
<member name="P:System.Configuration.StringValidatorAttribute.ValidatorInstance">
<summary>Gets an instance of the <see cref="T:System.Configuration.StringValidator" /> class.</summary>
<returns>A current <see cref="T:System.Configuration.StringValidator" /> settings in a <see cref="T:System.Configuration.ConfigurationValidatorBase" /> validator instance.</returns>
</member>
<member name="P:System.Configuration.SubclassTypeValidatorAttribute.BaseClass">
<summary>Gets the base type of the object being validated.</summary>
<returns>The base type of the object being validated.</returns>
</member>
<member name="P:System.Configuration.SubclassTypeValidatorAttribute.ValidatorInstance">
<summary>Gets the validator attribute instance.</summary>
<returns>The current <see cref="T:System.Configuration.ConfigurationValidatorBase" /> instance.</returns>
</member>
<member name="P:System.Configuration.TimeSpanValidatorAttribute.ExcludeRange">
<summary>Gets or sets a value that indicates whether to include or exclude the integers in the range as defined by <see cref="P:System.Configuration.TimeSpanValidatorAttribute.MinValueString" /> and <see cref="P:System.Configuration.TimeSpanValidatorAttribute.MaxValueString" />.</summary>
<returns>
<see langword="true" /> if the value must be excluded; otherwise, <see langword="false" />. The default is <see langword="false" />.</returns>
</member>
<member name="P:System.Configuration.TimeSpanValidatorAttribute.MaxValue">
<summary>Gets the absolute maximum <see cref="T:System.TimeSpan" /> value.</summary>
<returns>The allowed maximum <see cref="T:System.TimeSpan" /> value. </returns>
</member>
<member name="P:System.Configuration.TimeSpanValidatorAttribute.MaxValueString">
<summary>Gets or sets the relative maximum <see cref="T:System.TimeSpan" /> value.</summary>
<returns>The allowed maximum <see cref="T:System.TimeSpan" /> value. </returns>
<exception cref="T:System.ArgumentOutOfRangeException">The selected value represents less than <see cref="P:System.Configuration.TimeSpanValidatorAttribute.MinValue" />.</exception>
</member>
<member name="P:System.Configuration.TimeSpanValidatorAttribute.MinValue">
<summary>Gets the absolute minimum <see cref="T:System.TimeSpan" /> value.</summary>
<returns>The allowed minimum <see cref="T:System.TimeSpan" /> value. </returns>
</member>
<member name="P:System.Configuration.TimeSpanValidatorAttribute.MinValueString">
<summary>Gets or sets the relative minimum <see cref="T:System.TimeSpan" /> value.</summary>
<returns>The minimum allowed <see cref="T:System.TimeSpan" /> value. </returns>
<exception cref="T:System.ArgumentOutOfRangeException">The selected value represents more than <see cref="P:System.Configuration.TimeSpanValidatorAttribute.MaxValue" />.</exception>
</member>
<member name="P:System.Configuration.TimeSpanValidatorAttribute.ValidatorInstance">
<summary>Gets an instance of the <see cref="T:System.Configuration.TimeSpanValidator" /> class.</summary>
<returns>The <see cref="T:System.Configuration.ConfigurationValidatorBase" /> validator instance. </returns>
</member>
<member name="T:System.Configuration.AppSettingsSection">
<summary>Provides configuration system support for the <see langword="appSettings" /> configuration section. This class cannot be inherited.</summary>
</member>
<member name="T:System.Configuration.CallbackValidator">
<summary>Provides dynamic validation of an object.</summary>
</member>
<member name="T:System.Configuration.CallbackValidatorAttribute">
<summary>Specifies a <see cref="T:System.Configuration.CallbackValidator" /> object to use for code validation. This class cannot be inherited.</summary>
</member>
<member name="T:System.Configuration.CommaDelimitedStringCollection">
<summary>Represents a collection of string elements separated by commas. This class cannot be inherited.</summary>
</member>
<member name="T:System.Configuration.CommaDelimitedStringCollectionConverter">
<summary>Converts a comma-delimited string value to and from a <see cref="T:System.Configuration.CommaDelimitedStringCollection" /> object. This class cannot be inherited.</summary>
</member>
<member name="T:System.Configuration.Configuration">
<summary>Represents a configuration file that is applicable to a particular computer, application, or resource. This class cannot be inherited.</summary>
</member>
<member name="T:System.Configuration.ConfigurationAllowDefinition">
<summary>Specifies the locations within the configuration-file hierarchy that can set or override the properties contained within a <see cref="T:System.Configuration.ConfigurationSection" /> object.</summary>
</member>
<member name="F:System.Configuration.ConfigurationAllowDefinition.MachineOnly">
<summary>The <see cref="T:System.Configuration.ConfigurationSection" /> can be defined only in the Machine.config file.</summary>
</member>
<member name="F:System.Configuration.ConfigurationAllowDefinition.MachineToWebRoot">
<summary>The <see cref="T:System.Configuration.ConfigurationSection" /> can be defined in either the Machine.config file or the machine-level Web.config file found in the same directory as Machine.config, but not in application Web.config files.</summary>
</member>
<member name="F:System.Configuration.ConfigurationAllowDefinition.MachineToApplication">
<summary>The <see cref="T:System.Configuration.ConfigurationSection" /> can be defined in either the Machine.config file, the machine-level Web.config file found in the same directory as Machine.config, or the top-level application Web.config file found in the virtual-directory root, but not in subdirectories of a virtual root.</summary>
</member>
<member name="F:System.Configuration.ConfigurationAllowDefinition.Everywhere">
<summary>The <see cref="T:System.Configuration.ConfigurationSection" /> can be defined anywhere.</summary>
</member>
<member name="T:System.Configuration.ConfigurationAllowExeDefinition">
<summary>Specifies the locations within the configuration-file hierarchy that can set or override the properties contained within a <see cref="T:System.Configuration.ConfigurationSection" /> object.</summary>
</member>
<member name="F:System.Configuration.ConfigurationAllowExeDefinition.MachineOnly">
<summary>The <see cref="T:System.Configuration.ConfigurationSection" /> can be defined only in the Machine.config file. </summary>
</member>
<member name="F:System.Configuration.ConfigurationAllowExeDefinition.MachineToApplication">
<summary>The <see cref="T:System.Configuration.ConfigurationSection" /> can be defined either in the Machine.config file or in the Exe.config file in the client application directory. This is the default value.</summary>
</member>
<member name="F:System.Configuration.ConfigurationAllowExeDefinition.MachineToRoamingUser">
<summary>The <see cref="T:System.Configuration.ConfigurationSection" /> can be defined in the Machine.config file, in the Exe.config file in the client application directory, or in the User.config file in the roaming user directory. </summary>
</member>
<member name="F:System.Configuration.ConfigurationAllowExeDefinition.MachineToLocalUser">
<summary>The <see cref="T:System.Configuration.ConfigurationSection" /> can be defined in the Machine.config file, in the Exe.config file in the client application directory, in the User.config file in the roaming user directory, or in the User.config file in the local user directory.</summary>
</member>
<member name="T:System.Configuration.ConfigurationBuilder">
<summary>Represents the base class to be extended by custom configuration builder implementations.</summary>
</member>
<member name="T:System.Configuration.ConfigurationBuilderCollection">
<summary>Maintains a collection of <see cref="T:System.Configuration.ConfigurationBuilder" /> objects by name.</summary>
</member>
<member name="T:System.Configuration.ConfigurationBuilderSettings">
<summary>Represents a group of configuration elements that configure the providers for the <see langword="<configBuilders>" /> configuration section.</summary>
</member>
<member name="T:System.Configuration.ConfigurationBuildersSection">
<summary>Provides programmatic access to the <see langword="<configBuilders>" /> section. This class can't be inherited.</summary>
</member>
<member name="T:System.Configuration.ConfigurationCollectionAttribute">
<summary>Declaratively instructs the .NET Framework to create an instance of a configuration element collection. This class cannot be inherited.</summary>
</member>
<member name="T:System.Configuration.ConfigurationConverterBase">
<summary>The base class for the configuration converter types.</summary>
</member>
<member name="T:System.Configuration.ConfigurationElement">
<summary>Represents a configuration element within a configuration file.</summary>
</member>
<member name="T:System.Configuration.ConfigurationElementCollection">
<summary>Represents a configuration element containing a collection of child elements.</summary>
</member>
<member name="T:System.Configuration.ConfigurationElementCollectionType">
<summary>Specifies the type of a <see cref="T:System.Configuration.ConfigurationElementCollectionType" /> object.</summary>
</member>
<member name="F:System.Configuration.ConfigurationElementCollectionType.BasicMap">
<summary>Collections of this type contain elements that apply to the level at which they are specified, and to all child levels. A child level cannot modify the properties specified by a parent element of this type.</summary>
</member>
<member name="F:System.Configuration.ConfigurationElementCollectionType.AddRemoveClearMap">
<summary>The default type of <see cref="T:System.Configuration.ConfigurationElementCollection" />. Collections of this type contain elements that can be merged across a hierarchy of configuration files. At any particular level within such a hierarchy, <see langword="add" />, <see langword="remove" />, and <see langword="clear" /> directives are used to modify any inherited properties and specify new ones.</summary>
</member>
<member name="F:System.Configuration.ConfigurationElementCollectionType.BasicMapAlternate">
<summary>Same as <see cref="F:System.Configuration.ConfigurationElementCollectionType.BasicMap" />, except that this type causes the <see cref="T:System.Configuration.ConfigurationElementCollection" /> object to sort its contents such that inherited elements are listed last.</summary>
</member>
<member name="F:System.Configuration.ConfigurationElementCollectionType.AddRemoveClearMapAlternate">
<summary>Same as <see cref="F:System.Configuration.ConfigurationElementCollectionType.AddRemoveClearMap" />, except that this type causes the <see cref="T:System.Configuration.ConfigurationElementCollection" /> object to sort its contents such that inherited elements are listed last.</summary>
</member>
<member name="T:System.Configuration.ConfigurationElementProperty">
<summary>Specifies the property of a configuration element. This class cannot be inherited.</summary>
</member>
<member name="T:System.Configuration.ConfigurationErrorsException">
<summary>The exception that is thrown when a configuration error has occurred. </summary>
</member>
<member name="T:System.Configuration.ConfigurationFileMap">
<summary>Defines the configuration file mapping for the machine configuration file. </summary>
</member>
<member name="T:System.Configuration.ConfigurationLocation">
<summary>Represents a <see langword="location" /> element within a configuration file.</summary>
</member>
<member name="T:System.Configuration.ConfigurationLocationCollection">
<summary>Contains a collection of <see cref="T:System.Configuration.ConfigurationLocationCollection" /> objects.</summary>
</member>
<member name="T:System.Configuration.ConfigurationLockCollection">
<summary>Contains a collection of locked configuration objects. This class cannot be inherited.</summary>
</member>
<member name="T:System.Configuration.ConfigurationManager">
<summary>Provides access to configuration files for client applications. This class cannot be inherited.</summary>
</member>
<member name="T:System.Configuration.ConfigurationPermission">
<summary>Provides a permission structure that allows methods or classes to access configuration files. </summary>
</member>
<member name="T:System.Configuration.ConfigurationPermissionAttribute">
<summary>Creates a <see cref="T:System.Configuration.ConfigurationPermission" /> object that either grants or denies the marked target permission to access sections of configuration files.</summary>
</member>
<member name="T:System.Configuration.ConfigurationProperty">
<summary>Represents an attribute or a child of a configuration element. This class cannot be inherited.</summary>
</member>
<member name="T:System.Configuration.ConfigurationPropertyAttribute">
<summary>Declaratively instructs the .NET Framework to instantiate a configuration property. This class cannot be inherited.</summary>
</member>
<member name="T:System.Configuration.ConfigurationPropertyCollection">
<summary>Represents a collection of configuration-element properties.</summary>
</member>
<member name="T:System.Configuration.ConfigurationPropertyOptions">
<summary>Specifies the options to apply to a property.</summary>
</member>
<member name="F:System.Configuration.ConfigurationPropertyOptions.None">
<summary>Indicates that no option applies to the property.</summary>
</member>
<member name="F:System.Configuration.ConfigurationPropertyOptions.IsDefaultCollection">
<summary>Indicates that the property is a default collection. </summary>
</member>
<member name="F:System.Configuration.ConfigurationPropertyOptions.IsRequired">
<summary>Indicates that the property is required. </summary>
</member>
<member name="F:System.Configuration.ConfigurationPropertyOptions.IsKey">
<summary>Indicates that the property is a collection key.</summary>
</member>
<member name="F:System.Configuration.ConfigurationPropertyOptions.IsTypeStringTransformationRequired">
<summary>Indicates whether the type name for the configuration property requires transformation when it is serialized for an earlier version of the .NET Framework.</summary>
</member>
<member name="F:System.Configuration.ConfigurationPropertyOptions.IsAssemblyStringTransformationRequired">
<summary>Indicates whether the assembly name for the configuration property requires transformation when it is serialized for an earlier version of the .NET Framework.</summary>
</member>
<member name="F:System.Configuration.ConfigurationPropertyOptions.IsVersionCheckRequired">
<summary>Indicates whether the configuration property's parent configuration section should be queried at serialization time to determine whether the configuration property should be serialized into XML.</summary>
</member>
<member name="T:System.Configuration.ConfigurationSaveMode">
<summary>Determines which properties are written out to a configuration file.</summary>
</member>
<member name="F:System.Configuration.ConfigurationSaveMode.Modified">
<summary>Causes only modified properties to be written to the configuration file, even when the value is the same as the inherited value.</summary>
</member>
<member name="F:System.Configuration.ConfigurationSaveMode.Minimal">
<summary>Causes only properties that differ from inherited values to be written to the configuration file.</summary>
</member>
<member name="F:System.Configuration.ConfigurationSaveMode.Full">
<summary>Causes all properties to be written to the configuration file. This is useful mostly for creating information configuration files or moving configuration values from one machine to another.</summary>
</member>
<member name="T:System.Configuration.ConfigurationSection">
<summary>Represents a section within a configuration file.</summary>
</member>
<member name="T:System.Configuration.ConfigurationSectionCollection">
<summary>Represents a collection of related sections within a configuration file.</summary>
</member>
<member name="T:System.Configuration.ConfigurationSectionGroup">
<summary>Represents a group of related sections within a configuration file.</summary>
</member>
<member name="T:System.Configuration.ConfigurationSectionGroupCollection">
<summary>Represents a collection of <see cref="T:System.Configuration.ConfigurationSectionGroup" /> objects.</summary>
</member>
<member name="T:System.Configuration.ConfigurationUserLevel">
<summary>Used to specify which configuration file is to be represented by the Configuration object.</summary>
</member>
<member name="F:System.Configuration.ConfigurationUserLevel.None">
<summary>Get the <see cref="T:System.Configuration.Configuration" /> that applies to all users.</summary>
</member>
<member name="F:System.Configuration.ConfigurationUserLevel.PerUserRoaming">
<summary>Get the roaming <see cref="T:System.Configuration.Configuration" /> that applies to the current user.</summary>
</member>
<member name="F:System.Configuration.ConfigurationUserLevel.PerUserRoamingAndLocal">
<summary>Get the local <see cref="T:System.Configuration.Configuration" /> that applies to the current user.</summary>
</member>
<member name="T:System.Configuration.ConfigurationValidatorAttribute">
<summary>Serves as the base class for the <see cref="N:System.Configuration" /> validator attribute types.</summary>
</member>
<member name="T:System.Configuration.ConfigurationValidatorBase">
<summary>Acts as a base class for deriving a validation class so that a value of an object can be verified.</summary>
</member>
<member name="T:System.Configuration.ConnectionStringSettings">
<summary>Represents a single, named connection string in the connection strings configuration file section.</summary>
</member>
<member name="T:System.Configuration.ConnectionStringSettingsCollection">
<summary>Contains a collection of <see cref="T:System.Configuration.ConnectionStringSettings" /> objects.</summary>
</member>
<member name="T:System.Configuration.ConnectionStringsSection">
<summary>Provides programmatic access to the connection strings configuration-file section. </summary>
</member>
<member name="T:System.Configuration.ContextInformation">
<summary>Encapsulates the context information that is associated with a <see cref="T:System.Configuration.ConfigurationElement" /> object. This class cannot be inherited.</summary>
</member>
<member name="T:System.Configuration.DefaultSection">
<summary>Represents a basic configuration-section handler that exposes the configuration section's XML for both read and write access.</summary>
</member>
<member name="T:System.Configuration.DefaultValidator">
<summary>Provides validation of an object. This class cannot be inherited.</summary>
</member>
<member name="T:System.Configuration.DpapiProtectedConfigurationProvider">
<summary>Provides a <see cref="T:System.Configuration.ProtectedConfigurationProvider" /> object that uses the Windows data protection API (DPAPI) to encrypt and decrypt configuration data.</summary>
</member>
<member name="T:System.Configuration.ElementInformation">
<summary>Contains meta-information about an individual element within the configuration. This class cannot be inherited.</summary>
</member>
<member name="T:System.Configuration.ExeConfigurationFileMap">
<summary>Defines the configuration file mapping for an .exe application. This class cannot be inherited.</summary>
</member>
<member name="T:System.Configuration.ExeContext">
<summary>Manages the path context for the current application. This class cannot be inherited.</summary>
</member>
<member name="T:System.Configuration.GenericEnumConverter">
<summary>Converts between a string and an enumeration type. </summary>
</member>
<member name="T:System.Configuration.IgnoreSection">
<summary>Provides a wrapper type definition for configuration sections that are not handled by the <see cref="N:System.Configuration" /> types.</summary>
</member>
<member name="T:System.Configuration.InfiniteIntConverter">
<summary>Converts between a string and the standard infinite or integer value.</summary>
</member>
<member name="T:System.Configuration.InfiniteTimeSpanConverter">
<summary>Converts between a string and the standard infinite <see cref="T:System.TimeSpan" /> value.</summary>
</member>
<member name="T:System.Configuration.IntegerValidator">
<summary>Provides validation of an <see cref="T:System.Int32" /> value.</summary>
</member>
<member name="T:System.Configuration.IntegerValidatorAttribute">
<summary>Declaratively instructs the .NET Framework to perform integer validation on a configuration property. This class cannot be inherited.</summary>
</member>
<member name="T:System.Configuration.Internal.DelegatingConfigHost">
<summary>Delegates all members of the <see cref="T:System.Configuration.Internal.IInternalConfigHost" /> interface to another instance of a host.</summary>
</member>
<member name="T:System.Configuration.Internal.IConfigErrorInfo">
<summary>Defines an interface used by the .NET Framework to support creating error configuration records.</summary>
</member>
<member name="T:System.Configuration.Internal.IConfigSystem">
<summary>Defines an interface used by the .NET Framework to support the initialization of configuration properties.</summary>
</member>
<member name="T:System.Configuration.Internal.IConfigurationManagerHelper">
<summary>Defines an interface used by the .NET Framework to support configuration management.</summary>
</member>
<member name="T:System.Configuration.Internal.IConfigurationManagerInternal">
<summary>Defines an interface used by the .NET Framework to initialize configuration properties.</summary>
</member>
<member name="T:System.Configuration.Internal.IInternalConfigClientHost">
<summary>Defines interfaces that allow the internal .NET Framework infrastructure to customize configuration.</summary>
</member>
<member name="T:System.Configuration.Internal.IInternalConfigConfigurationFactory">
<summary>Defines the interfaces used by the internal design time API to create a <see cref="T:System.Configuration.Configuration" /> object.</summary>
</member>
<member name="T:System.Configuration.Internal.IInternalConfigHost">
<summary>Defines interfaces used by internal .NET structures to initialize application configuration properties.</summary>
</member>
<member name="T:System.Configuration.Internal.IInternalConfigRecord">
<summary>Defines interfaces used by internal .NET structures to support creation of new configuration records.</summary>
</member>
<member name="T:System.Configuration.Internal.IInternalConfigRoot">
<summary>Defines interfaces used by internal .NET structures to support a configuration root object.</summary>
</member>
<member name="T:System.Configuration.Internal.IInternalConfigSettingsFactory">
<summary>Defines an interface used by the configuration system to set the <see cref="T:System.Configuration.ConfigurationSettings" /> class.</summary>
</member>
<member name="T:System.Configuration.Internal.IInternalConfigSystem">
<summary>Defines an interface used by the .NET Framework to initialize application configuration properties.</summary>
</member>
<member name="T:System.Configuration.Internal.IInternalConfigurationBuilderHost">
<summary>Defines the supplemental interface to <see cref="T:System.Configuration.Internal.IInternalConfigHost" /> for configuration hosts that wish to support the application of <see cref="T:System.Configuration.ConfigurationBuilder" /> objects.</summary>
</member>
<member name="T:System.Configuration.Internal.InternalConfigEventArgs">
<summary>Defines a class that allows the .NET Framework infrastructure to specify event arguments for configuration events.</summary>
</member>
<member name="T:System.Configuration.Internal.InternalConfigEventHandler">
<summary>Defines a class used by the .NET Framework infrastructure to support configuration events.</summary>
<param name="sender">The source object of the event.</param>
<param name="e">A configuration event argument.</param>
</member>
<member name="T:System.Configuration.Internal.StreamChangeCallback">
<summary>Represents a method for hosts to call when a monitored stream has changed.</summary>
<param name="streamName">The name of the <see cref="T:System.IO.Stream" /> object performing I/O tasks on the configuration file.</param>
</member>
<member name="T:System.Configuration.KeyValueConfigurationCollection">
<summary>Contains a collection of <see cref="T:System.Configuration.KeyValueConfigurationElement" /> objects. </summary>
</member>
<member name="T:System.Configuration.KeyValueConfigurationElement">
<summary>Represents a configuration element that contains a key/value pair. </summary>
</member>
<member name="T:System.Configuration.LongValidator">
<summary>Provides validation of an <see cref="T:System.Int64" /> value.</summary>
</member>
<member name="T:System.Configuration.LongValidatorAttribute">
<summary>Declaratively instructs the .NET Framework to perform long-integer validation on a configuration property. This class cannot be inherited.</summary>
</member>
<member name="T:System.Configuration.NameValueConfigurationCollection">
<summary>Contains a collection of <see cref="T:System.Configuration.NameValueConfigurationElement" /> objects. This class cannot be inherited.</summary>
</member>
<member name="T:System.Configuration.NameValueConfigurationElement">
<summary>A configuration element that contains a <see cref="T:System.String" /> name and <see cref="T:System.String" /> value. This class cannot be inherited.</summary>
</member>
<member name="T:System.Configuration.OverrideMode">
<summary>Specifies the override behavior of a configuration element for configuration elements in child directories.</summary>
</member>
<member name="F:System.Configuration.OverrideMode.Inherit">
<summary>The configuration setting of the element or group will be overridden by configuration settings that are in child directories if explicitly allowed by a parent element of the current configuration element or group. Permission to override is specified by using the <see langword="OverrideMode" /> attribute.</summary>
</member>
<member name="F:System.Configuration.OverrideMode.Allow">
<summary>The configuration setting of the element or group can be overridden by configuration settings that are in child directories.</summary>
</member>
<member name="F:System.Configuration.OverrideMode.Deny">
<summary>The configuration setting of the element or group cannot be overridden by configuration settings that are in child directories.</summary>
</member>
<member name="T:System.Configuration.PositiveTimeSpanValidator">
<summary>Provides validation of a <see cref="T:System.TimeSpan" /> object. This class cannot be inherited.</summary>
</member>
<member name="T:System.Configuration.PositiveTimeSpanValidatorAttribute">
<summary>Declaratively instructs the .NET Framework to perform time validation on a configuration property. This class cannot be inherited.</summary>
</member>
<member name="T:System.Configuration.PropertyInformation">
<summary>Contains meta-information on an individual property within the configuration. This type cannot be inherited.</summary>
</member>
<member name="T:System.Configuration.PropertyInformationCollection">
<summary>Contains a collection of <see cref="T:System.Configuration.PropertyInformation" /> objects. This class cannot be inherited.</summary>
</member>
<member name="T:System.Configuration.PropertyValueOrigin">
<summary>Specifies the level in the configuration hierarchy where a configuration property value originated.</summary>
</member>
<member name="F:System.Configuration.PropertyValueOrigin.Default">
<summary>The configuration property value originates from the <see cref="P:System.Configuration.ConfigurationProperty.DefaultValue" /> property.</summary>
</member>
<member name="F:System.Configuration.PropertyValueOrigin.Inherited">
<summary>The configuration property value is inherited from a parent level in the configuration.</summary>
</member>
<member name="F:System.Configuration.PropertyValueOrigin.SetHere">
<summary>The configuration property value is defined at the current level of the hierarchy.</summary>
</member>
<member name="T:System.Configuration.ProtectedConfiguration">
<summary>Provides access to the protected-configuration providers for the current application's configuration file. </summary>
</member>
<member name="T:System.Configuration.ProtectedConfigurationProvider">
<summary>Is the base class to create providers for encrypting and decrypting protected-configuration data.</summary>
</member>
<member name="T:System.Configuration.ProtectedConfigurationProviderCollection">
<summary>Provides a collection of <see cref="T:System.Configuration.ProtectedConfigurationProvider" /> objects.</summary>
</member>
<member name="T:System.Configuration.ProtectedConfigurationSection">
<summary>Provides programmatic access to the <see langword="configProtectedData" /> configuration section. This class cannot be inherited.</summary>
</member>
<member name="T:System.Configuration.ProtectedProviderSettings">
<summary>Represents a group of configuration elements that configure the providers for the <see langword="<configProtectedData>" /> configuration section.</summary>
</member>
<member name="T:System.Configuration.Provider.ProviderBase">
<summary>Provides a base implementation for the extensible provider model.</summary>
</member>
<member name="T:System.Configuration.Provider.ProviderCollection">
<summary>Represents a collection of provider objects that inherit from <see cref="T:System.Configuration.Provider.ProviderBase" />.</summary>
</member>
<member name="T:System.Configuration.Provider.ProviderException">
<summary>The exception that is thrown when a configuration provider error has occurred. This exception class is also used by providers to throw exceptions when internal errors occur within the provider that do not map to other pre-existing exception classes.</summary>
</member>
<member name="T:System.Configuration.ProviderSettings">
<summary>Represents the configuration elements associated with a provider.</summary>
</member>
<member name="T:System.Configuration.ProviderSettingsCollection">
<summary>Represents a collection of <see cref="T:System.Configuration.ProviderSettings" /> objects.</summary>
</member>
<member name="T:System.Configuration.RegexStringValidator">
<summary>Provides validation of a string based on the rules provided by a regular expression.</summary>
</member>
<member name="T:System.Configuration.RegexStringValidatorAttribute">
<summary>Declaratively instructs the .NET Framework to perform string validation on a configuration property using a regular expression. This class cannot be inherited.</summary>
</member>
<member name="T:System.Configuration.RsaProtectedConfigurationProvider">
<summary>Provides a <see cref="T:System.Configuration.ProtectedConfigurationProvider" /> instance that uses RSA encryption to encrypt and decrypt configuration data.</summary>
</member>
<member name="T:System.Configuration.SectionInformation">
<summary>Contains metadata about an individual section within the configuration hierarchy. This class cannot be inherited.</summary>
</member>
<member name="T:System.Configuration.StringValidator">
<summary>Provides validation of a string.</summary>
</member>
<member name="T:System.Configuration.StringValidatorAttribute">
<summary>Declaratively instructs the .NET Framework to perform string validation on a configuration property. This class cannot be inherited.</summary>
</member>
<member name="T:System.Configuration.SubclassTypeValidator">
<summary>Validates that an object is a derived class of a specified type.</summary>
</member>
<member name="T:System.Configuration.SubclassTypeValidatorAttribute">
<summary>Declaratively instructs the .NET Framework to perform validation on a configuration property. This class cannot be inherited.</summary>
</member>
<member name="T:System.Configuration.TimeSpanMinutesConverter">
<summary>Converts a time span expressed in minutes. </summary>
</member>
<member name="T:System.Configuration.TimeSpanMinutesOrInfiniteConverter">
<summary>Converts a <see cref="T:System.TimeSpan" /> expressed in minutes or as a standard infinite time span.</summary>
</member>
<member name="T:System.Configuration.TimeSpanSecondsConverter">
<summary>Converts a time span expressed in seconds. </summary>
</member>
<member name="T:System.Configuration.TimeSpanSecondsOrInfiniteConverter">
<summary>Converts a <see cref="T:System.TimeSpan" /> expressed in seconds or as a standard infinite time span.</summary>
</member>
<member name="T:System.Configuration.TimeSpanValidator">
<summary>Provides validation of a <see cref="T:System.TimeSpan" /> object.</summary>
</member>
<member name="T:System.Configuration.TimeSpanValidatorAttribute">
<summary>Declaratively instructs the .NET Framework to perform time validation on a configuration property. This class cannot be inherited.</summary>
</member>
<member name="T:System.Configuration.TypeNameConverter">
<summary>Converts between type and string values. This class cannot be inherited.</summary>
</member>
<member name="T:System.Configuration.ValidatorCallback">
<summary>Represents a method to be called after the validation of an object.</summary>
<param name="value">The callback method.</param>
</member>
<member name="T:System.Configuration.WhiteSpaceTrimStringConverter">
<summary>Converts a string to its canonical format. </summary>
</member>
</members>
</doc>
|