System.Reflection.Metadata.xml
291 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611
4612
4613
4614
4615
4616
4617
4618
4619
4620
4621
4622
4623
4624
4625
4626
4627
4628
4629
4630
4631
4632
4633
4634
4635
4636
4637
4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
4649
4650
4651
4652
4653
4654
4655
4656
4657
4658
4659
4660
4661
4662
4663
4664
4665
4666
4667
4668
4669
4670
4671
4672
4673
4674
4675
4676
4677
4678
4679
4680
4681
4682
4683
4684
4685
4686
4687
4688
4689
4690
4691
4692
4693
4694
4695
4696
4697
4698
4699
4700
4701
4702
4703
4704
4705
4706
4707
4708
4709
4710
4711
4712
4713
4714
4715
4716
4717
4718
4719
4720
4721
4722
4723
4724
4725
4726
4727
4728
4729
4730
4731
4732
4733
4734
4735
4736
4737
4738
4739
4740
4741
4742
4743
4744
4745
4746
4747
4748
4749
4750
4751
4752
4753
4754
4755
4756
4757
4758
4759
4760
4761
4762
4763
4764
4765
4766
4767
4768
4769
4770
4771
4772
4773
4774
4775
4776
4777
4778
4779
4780
4781
4782
4783
4784
4785
4786
4787
4788
4789
4790
4791
4792
4793
4794
4795
4796
4797
4798
4799
4800
4801
4802
4803
4804
4805
4806
4807
4808
4809
4810
4811
4812
4813
4814
4815
4816
4817
4818
4819
4820
4821
4822
4823
4824
4825
4826
4827
4828
4829
4830
4831
4832
4833
4834
4835
4836
4837
4838
4839
4840
4841
4842
4843
4844
4845
4846
4847
4848
4849
4850
4851
4852
4853
4854
4855
4856
4857
4858
4859
4860
4861
4862
4863
4864
4865
4866
4867
4868
4869
<?xml version="1.0"?>
<doc>
<assembly>
<name>System.Reflection.Metadata</name>
</assembly>
<members>
<member name="T:System.Reflection.Internal.AbstractMemoryBlock">
<summary>
Represents a disposable blob of memory accessed via unsafe pointer.
</summary>
</member>
<member name="P:System.Reflection.Internal.AbstractMemoryBlock.Pointer">
<summary>
Pointer to the underlying data (not valid after disposal).
</summary>
</member>
<member name="M:System.Reflection.Internal.AbstractMemoryBlock.GetContent(System.Int32)">
<summary>
Returns the content of the memory block.
</summary>
<remarks>
Only creates a copy of the data if they are not represented by a managed byte array, or the offset is non-zero.
</remarks>
</member>
<member name="M:System.Reflection.Internal.AbstractMemoryBlock.Dispose">
<summary>
Disposes the block.
</summary>
<remarks>
The operation is idempotent, but must not be called concurrently with any other operations on the block
or with another call to Dispose.
Using the block after dispose is an error in our code and therefore no effort is made to throw a tidy
ObjectDisposedException and null ref or AV is possible.
</remarks>
</member>
<member name="T:System.Reflection.Internal.ByteArrayMemoryBlock">
<summary>
Represents a memory block backed by an array of bytes.
</summary>
</member>
<member name="T:System.Reflection.Internal.ExternalMemoryBlock">
<summary>
Class representing raw memory but not owning the memory.
</summary>
</member>
<member name="T:System.Reflection.Internal.ExternalMemoryBlockProvider">
<summary>
Represents raw memory owned by an external object.
</summary>
</member>
<member name="M:System.Reflection.Internal.MemoryBlockProvider.GetMemoryBlock">
<summary>
Creates and hydrates a memory block representing all data.
</summary>
<exception cref="T:System.IO.IOException">Error while reading from the memory source.</exception>
</member>
<member name="M:System.Reflection.Internal.MemoryBlockProvider.GetMemoryBlock(System.Int32,System.Int32)">
<summary>
Creates and hydrates a memory block representing data in the specified range.
</summary>
<param name="start">Starting offset relative to the beginning of the data represented by this provider.</param>
<param name="size">Size of the resulting block.</param>
<exception cref="T:System.IO.IOException">Error while reading from the memory source.</exception>
</member>
<member name="M:System.Reflection.Internal.MemoryBlockProvider.GetStream(System.Reflection.Internal.StreamConstraints@)">
<summary>
Gets a seekable and readable <see cref="T:System.IO.Stream"/> that can be used to read all data.
The operations on the stream has to be done under a lock of <see cref="F:System.Reflection.Internal.StreamConstraints.GuardOpt"/> if non-null.
The image starts at <see cref="F:System.Reflection.Internal.StreamConstraints.ImageStart"/> and has size <see cref="F:System.Reflection.Internal.StreamConstraints.ImageSize"/>.
It is the caller's responsibility not to read outside those bounds.
</summary>
</member>
<member name="P:System.Reflection.Internal.MemoryBlockProvider.Size">
<summary>
The size of the data.
</summary>
</member>
<member name="T:System.Reflection.Internal.NativeHeapMemoryBlock">
<summary>
Represents memory block allocated on native heap.
</summary>
<remarks>
Owns the native memory resource.
</remarks>
</member>
<member name="T:System.Reflection.Internal.StreamMemoryBlockProvider">
<summary>
Represents data read from a stream.
</summary>
<remarks>
Uses memory map to load data from streams backed by files that are bigger than <see cref="F:System.Reflection.Internal.StreamMemoryBlockProvider.MemoryMapThreshold"/>.
</remarks>
</member>
<member name="M:System.Reflection.Internal.StreamMemoryBlockProvider.GetMemoryBlockImpl(System.Int32,System.Int32)">
<exception cref="T:System.IO.IOException">Error while reading from the stream.</exception>
</member>
<member name="T:System.Reflection.Internal.EncodingHelper">
<summary>
Provides helpers to decode strings from unmanaged memory to System.String while avoiding
intermediate allocation.
This has three components:
(1) Light-up Encoding.GetString(byte*, int) via reflection and resurface it as extension
method.
This is a new API that will provide API convergence across all platforms for
this scenario. It is already on .NET 4.6+ and ASP.NET vNext, but not yet available
on every platform we support. See below for how we fall back.
(2) Deal with WinRT prefixes.
When reading managed winmds with projections enabled, the metadata reader needs to prepend
a WinRT prefix in some case . Doing this without allocation poses a problem
as we don't have the prefix and input in contiguous data that we can pass to the
Encoding.GetString. We handle this case using pooled managed scratch buffers where we copy
the prefix and input and decode using Encoding.GetString(byte[], int, int).
(3) Deal with platforms that don't yet have Encoding.GetString(byte*, int).
If we're running on a full framework earlier than 4.6, we will bind to the internal
String.CreateStringFromEncoding which is equivalent and Encoding.GetString is just a trivial
wrapper around it in .NET 4.6. This means that we always have the fast path on every
full framework version we support.
If we can't bind to it via reflection, then we emulate it using what is effectively (2) and
with an empty prefix.
For both (2) and (3), the pooled buffers have a fixed size deemed large enough for the
vast majority of metadata strings. In the rare worst case (byteCount > threshold and
(lightUpAttemptFailed || prefix != null), we give up and allocate a temporary array,
copy to it, decode, and throw it away.
</summary>
</member>
<member name="F:System.Reflection.Internal.Hash.FnvOffsetBias">
<summary>
The offset bias value used in the FNV-1a algorithm
See http://en.wikipedia.org/wiki/Fowler%E2%80%93Noll%E2%80%93Vo_hash_function
</summary>
</member>
<member name="F:System.Reflection.Internal.Hash.FnvPrime">
<summary>
The generative factor used in the FNV-1a algorithm
See http://en.wikipedia.org/wiki/Fowler%E2%80%93Noll%E2%80%93Vo_hash_function
</summary>
</member>
<member name="M:System.Reflection.Internal.Hash.GetFNVHashCode(System.Byte[])">
<summary>
Compute the FNV-1a hash of a sequence of bytes
See http://en.wikipedia.org/wiki/Fowler%E2%80%93Noll%E2%80%93Vo_hash_function
</summary>
<param name="data">The sequence of bytes</param>
<returns>The FNV-1a hash of <paramref name="data"/></returns>
</member>
<member name="M:System.Reflection.Internal.Hash.GetFNVHashCode(System.Collections.Immutable.ImmutableArray{System.Byte})">
<summary>
Compute the FNV-1a hash of a sequence of bytes
See http://en.wikipedia.org/wiki/Fowler%E2%80%93Noll%E2%80%93Vo_hash_function
</summary>
<param name="data">The sequence of bytes</param>
<returns>The FNV-1a hash of <paramref name="data"/></returns>
</member>
<member name="T:System.Reflection.Internal.ImmutableByteArrayInterop">
<summary>
Provides tools for using <see cref="T:System.Collections.Immutable.ImmutableArray`1"/> in interop scenarios.
</summary>
<remarks>
*** WARNING ***
If you decide to copy this code elsewhere, please retain the documentation here
and the Dangerous prefixes in the API names. This will help track down and audit
other places where this technique (with dangerous consequences when misused) may
be applied.
A generic version of this API was once public in a pre-release of immutable
collections, but it was deemed to be too subject to abuse when available publicly.
This implementation is scoped to byte arrays as that is all that the metadata reader needs.
Also, since we don't have access to immutable collection internals, we use a trick involving
overlapping a <see cref="T:System.Collections.Immutable.ImmutableArray`1"/> with a <see cref="T:Byte[]"/> refer. While
unverifiable, it is valid. See ECMA-335, section II.10.7 Controlling instance layout:
"It is possible to overlap fields in this way, though offsets occupied by an object reference
shall not overlap with offsets occupied by a built-in value type or a part of
another object reference. While one object reference can completely overlap another, this is
unverifiable."
Furthermore, the fact that <see cref="T:System.Collections.Immutable.ImmutableArray`1"/> backed by a single <see cref="T:Byte[]"/>
field is something inherent to the design of ImmutableArray in order to get its performance
characteristics and therefore something we (Microsoft) are comfortable defining as a contract that
can be depended upon as below.
</remarks>
</member>
<member name="M:System.Reflection.Internal.ImmutableByteArrayInterop.DangerousCreateFromUnderlyingArray(System.Byte[]@)">
<summary>
Creates a new instance of <see cref="T:System.Collections.Immutable.ImmutableArray`1"/> using a given mutable array as the backing
field, without creating a defensive copy. It is the responsibility of the caller to ensure no other mutable
references exist to the array. Do not mutate the array after calling this method.
</summary>
<param name="array">The mutable array to use as the backing field. The incoming reference is set to null
since it should not be retained by the caller.</param>
<remarks>
Users of this method should take extra care to ensure that the mutable array given as a parameter
is never modified. The returned <see cref="T:System.Collections.Immutable.ImmutableArray`1"/> will use the given array as its backing
field without creating a defensive copy, so changes made to the given mutable array will be observable
on the returned <see cref="T:System.Collections.Immutable.ImmutableArray`1"/>. Instance and static methods of <see cref="T:System.Collections.Immutable.ImmutableArray`1"/>
and <see cref="T:System.Collections.Immutable.ImmutableArray"/> may malfunction if they operate on an <see cref="T:System.Collections.Immutable.ImmutableArray`1"/> instance
whose underlying backing field is modified.
</remarks>
<returns>An immutable array.</returns>
</member>
<member name="M:System.Reflection.Internal.ImmutableByteArrayInterop.DangerousGetUnderlyingArray(System.Collections.Immutable.ImmutableArray{System.Byte})">
<summary>
Access the backing mutable array instance for the given <see cref="T:System.Collections.Immutable.ImmutableArray`1"/>, without
creating a defensive copy. It is the responsibility of the caller to ensure the array is not modified
through the returned mutable reference. Do not mutate the returned array.
</summary>
<param name="array">The <see cref="T:System.Collections.Immutable.ImmutableArray`1"/> from which to retrieve the backing field.</param>
<remarks>
Users of this method should take extra care to ensure that the returned mutable array is never modified.
The returned mutable array continues to be used as the backing field of the given <see cref="T:System.Collections.Immutable.ImmutableArray`1"/>
without creating a defensive copy, so changes made to the returned mutable array will be observable
on the given <see cref="T:System.Collections.Immutable.ImmutableArray`1"/>. Instance and static methods of <see cref="T:System.Collections.Immutable.ImmutableArray`1"/>
and <see cref="T:System.Collections.Immutable.ImmutableArray"/> may malfunction if they operate on an <see cref="T:System.Collections.Immutable.ImmutableArray`1"/> instance
whose underlying backing field is modified.
</remarks>
<returns>The underlying array, or null if <see cref="P:System.Collections.Immutable.ImmutableArray`1.IsDefault"/> is true.</returns>
</member>
<member name="M:System.Reflection.Internal.MemoryBlock.PeekCompressedInteger(System.Int32,System.Int32@)">
<summary>
Decodes a compressed integer value starting at offset.
See Metadata Specification section II.23.2: Blobs and signatures.
</summary>
<param name="offset">Offset to the start of the compressed data.</param>
<param name="numberOfBytesRead">Bytes actually read.</param>
<returns>
Value between 0 and 0x1fffffff, or <see cref="F:System.Reflection.Metadata.BlobReader.InvalidCompressedInteger"/> if the value encoding is invalid.
</returns>
</member>
<member name="M:System.Reflection.Internal.MemoryBlock.PeekUtf8NullTerminated(System.Int32,System.Byte[],System.Reflection.Metadata.MetadataStringDecoder,System.Int32@,System.Char)">
<summary>
Read UTF8 at the given offset up to the given terminator, null terminator, or end-of-block.
</summary>
<param name="offset">Offset in to the block where the UTF8 bytes start.</param>
<param name="prefix">UTF8 encoded prefix to prepend to the bytes at the offset before decoding.</param>
<param name="utf8Decoder">The UTF8 decoder to use that allows user to adjust fallback and/or reuse existing strings without allocating a new one.</param>
<param name="numberOfBytesRead">The number of bytes read, which includes the terminator if we did not hit the end of the block.</param>
<param name="terminator">A character in the ASCII range that marks the end of the string.
If a value other than '\0' is passed we still stop at the null terminator if encountered first.</param>
<returns>The decoded string.</returns>
</member>
<member name="M:System.Reflection.Internal.MemoryBlock.GetUtf8NullTerminatedLength(System.Int32,System.Int32@,System.Char)">
<summary>
Get number of bytes from offset to given terminator, null terminator, or end-of-block (whichever comes first).
Returned length does not include the terminator, but numberOfBytesRead out parameter does.
</summary>
<param name="offset">Offset in to the block where the UTF8 bytes start.</param>
<param name="terminator">A character in the ASCII range that marks the end of the string.
If a value other than '\0' is passed we still stop at the null terminator if encountered first.</param>
<param name="numberOfBytesRead">The number of bytes read, which includes the terminator if we did not hit the end of the block.</param>
<returns>Length (byte count) not including terminator.</returns>
</member>
<member name="M:System.Reflection.Internal.MemoryBlock.BinarySearchForSlot(System.Int32,System.Int32,System.Int32,System.UInt32,System.Boolean)">
<summary>
In a table that specifies children via a list field (e.g. TypeDef.FieldList, TypeDef.MethodList),
searches for the parent given a reference to a child.
</summary>
<returns>Returns row number [0..RowCount).</returns>
</member>
<member name="M:System.Reflection.Internal.MemoryBlock.BinarySearchReference(System.Int32,System.Int32,System.Int32,System.UInt32,System.Boolean)">
<summary>
In a table ordered by a column containing entity references searches for a row with the specified reference.
</summary>
<returns>Returns row number [0..RowCount) or -1 if not found.</returns>
</member>
<member name="M:System.Reflection.Internal.MemoryBlock.BinarySearchReferenceRange(System.Int32,System.Int32,System.Int32,System.UInt32,System.Boolean,System.Int32@,System.Int32@)">
<summary>
Calculates a range of rows that have specified value in the specified column in a table that is sorted by that column.
</summary>
</member>
<member name="M:System.Reflection.Internal.MemoryBlock.BinarySearchReferenceRange(System.Int32[],System.Int32,System.Int32,System.UInt32,System.Boolean,System.Int32@,System.Int32@)">
<summary>
Calculates a range of rows that have specified value in the specified column in a table that is sorted by that column.
</summary>
</member>
<member name="T:System.Reflection.Internal.PooledStringBuilder">
<summary>
The usage is:
var inst = PooledStringBuilder.GetInstance();
var sb = inst.builder;
... Do Stuff...
... sb.ToString() ...
inst.Free();
</summary>
</member>
<member name="T:System.Reflection.Internal.ObjectPool`1">
<summary>
Generic implementation of object pooling pattern with predefined pool size limit. The main
purpose is that limited number of frequently used objects can be kept in the pool for
further recycling.
Notes:
1) it is not the goal to keep all returned objects. Pool is not meant for storage. If there
is no space in the pool, extra returned objects will be dropped.
2) it is implied that if object was obtained from a pool, the caller will return it back in
a relatively short time. Keeping checked out objects for long durations is ok, but
reduces usefulness of pooling. Just new up your own.
Not returning objects to the pool in not detrimental to the pool's work, but is a bad practice.
Rationale:
If there is no intent for reusing the object, do not use pool - just use "new".
</summary>
</member>
<member name="M:System.Reflection.Internal.ObjectPool`1.Allocate">
<summary>
Produces an instance.
</summary>
<remarks>
Search strategy is a simple linear probing which is chosen for it cache-friendliness.
Note that Free will try to store recycled objects close to the start thus statistically
reducing how far we will typically search.
</remarks>
</member>
<member name="M:System.Reflection.Internal.ObjectPool`1.Free(`0)">
<summary>
Returns objects to the pool.
</summary>
<remarks>
Search strategy is a simple linear probing which is chosen for it cache-friendliness.
Note that Free will try to store recycled objects close to the start thus statistically
reducing how far we will typically search in Allocate.
</remarks>
</member>
<member name="M:System.Reflection.Internal.StreamExtensions.CopyTo(System.IO.Stream,System.Byte*,System.Int32)">
<summary>
Copies specified amount of data from given stream to a target memory pointer.
</summary>
<exception cref="T:System.IO.IOException">unexpected stream end.</exception>
</member>
<member name="M:System.Reflection.Internal.StreamExtensions.TryReadAll(System.IO.Stream,System.Byte[],System.Int32,System.Int32)">
<summary>
Attempts to read all of the requested bytes from the stream into the buffer
</summary>
<returns>
The number of bytes read. Less than <paramref name="count" /> will
only be returned if the end of stream is reached before all bytes can be read.
</returns>
<remarks>
Unlike <see cref="M:System.IO.Stream.Read(System.Byte[],System.Int32,System.Int32)"/> it is not guaranteed that
the stream position or the output buffer will be unchanged if an exception is
returned.
</remarks>
</member>
<member name="M:System.Reflection.Internal.StreamExtensions.GetAndValidateSize(System.IO.Stream,System.Int32,System.String)">
<summary>
Resolve image size as either the given user-specified size or distance from current position to end-of-stream.
Also performs the relevant argument validation and publicly visible caller has same argument names.
</summary>
<exception cref="T:System.ArgumentException">size is 0 and distance from current position to end-of-stream can't fit in Int32.</exception>
<exception cref="T:System.ArgumentOutOfRangeException">Size is negative or extends past the end-of-stream from current position.</exception>
</member>
<member name="T:System.Reflection.Metadata.Ecma335.CustomAttributeDecoder`1">
<summary>
Decodes custom attribute blobs.
</summary>
</member>
<member name="M:System.Reflection.Metadata.Ecma335.StandaloneDebugMetadataSerializer.SerializeStandalonePdbStream(System.Reflection.Metadata.BlobBuilder)">
<summary>
Serialized #Pdb stream.
</summary>
</member>
<member name="M:System.Reflection.Metadata.Ecma335.MetadataBuilder.SetCapacity(System.Reflection.Metadata.Ecma335.TableIndex,System.Int32)">
<summary>
Sets the capacity of the specified table.
</summary>
<exception cref="T:System.ArgumentOutOfRangeException"><paramref name="table"/> is not a valid table index.</exception>
<exception cref="T:System.ArgumentOutOfRangeException"><paramref name="rowCount"/> is negative.</exception>
<remarks>
Use to reduce allocations if the approximate number of rows is known ahead of time.
</remarks>
</member>
<member name="M:System.Reflection.Metadata.Ecma335.MetadataBuilder.AddTypeDefinition(System.Reflection.TypeAttributes,System.Reflection.Metadata.StringHandle,System.Reflection.Metadata.StringHandle,System.Reflection.Metadata.EntityHandle,System.Reflection.Metadata.FieldDefinitionHandle,System.Reflection.Metadata.MethodDefinitionHandle)">
<summary>
Adds a type definition.
</summary>
<param name="attributes">Attributes</param>
<param name="namespace">Namespace</param>
<param name="name">Type name</param>
<param name="baseType"><see cref="T:System.Reflection.Metadata.TypeDefinitionHandle"/>, <see cref="T:System.Reflection.Metadata.TypeReferenceHandle"/>, <see cref="T:System.Reflection.Metadata.TypeSpecificationHandle"/> or nil.</param>
<param name="fieldList">
If the type declares fields the handle of the first one, otherwise the handle of the first field declared by the next type definition.
If no type defines any fields in the module the <see cref="M:System.Reflection.Metadata.Ecma335.MetadataTokens.FieldDefinitionHandle(System.Int32)"/>(1).
</param>
<param name="methodList">
If the type declares methods the handle of the first one, otherwise the handle of the first method declared by the next type definition.
If no type defines any methods in the module the <see cref="M:System.Reflection.Metadata.Ecma335.MetadataTokens.MethodDefinitionHandle(System.Int32)"/>(1).
</param>
<exception cref="T:System.ArgumentException"><paramref name="baseType"/> doesn't have the expected handle kind.</exception>
</member>
<member name="M:System.Reflection.Metadata.Ecma335.MetadataBuilder.AddInterfaceImplementation(System.Reflection.Metadata.TypeDefinitionHandle,System.Reflection.Metadata.EntityHandle)">
<summary>
Adds an interface implementation to a type.
</summary>
<param name="type">The type implementing the interface.</param>
<param name="implementedInterface">
The interface being implemented:
<see cref="T:System.Reflection.Metadata.TypeDefinitionHandle"/>, <see cref="T:System.Reflection.Metadata.TypeReferenceHandle"/> or <see cref="T:System.Reflection.Metadata.TypeSpecificationHandle"/>.
</param>
<exception cref="T:System.ArgumentException"><paramref name="implementedInterface"/> doesn't have the expected handle kind.</exception>
</member>
<member name="M:System.Reflection.Metadata.Ecma335.MetadataBuilder.AddTypeReference(System.Reflection.Metadata.EntityHandle,System.Reflection.Metadata.StringHandle,System.Reflection.Metadata.StringHandle)">
<summary>
Add a type reference.
</summary>
<param name="resolutionScope">
The entity declaring the target type:
<see cref="T:System.Reflection.Metadata.ModuleDefinitionHandle"/>, <see cref="T:System.Reflection.Metadata.ModuleReferenceHandle"/>, <see cref="T:System.Reflection.Metadata.AssemblyReferenceHandle"/> or <see cref="T:System.Reflection.Metadata.TypeReferenceHandle"/>.
</param>
<param name="namespace">Namespace.</param>
<param name="name">Type name.</param>
<exception cref="T:System.ArgumentException"><paramref name="resolutionScope"/> doesn't have the expected handle kind.</exception>
</member>
<member name="M:System.Reflection.Metadata.Ecma335.MetadataBuilder.AddProperty(System.Reflection.PropertyAttributes,System.Reflection.Metadata.StringHandle,System.Reflection.Metadata.BlobHandle)">
<summary>
Adds a property defintion.
</summary>
<param name="attributes">Attributes</param>
<param name="name">Name</param>
<param name="signature">Signature of the property.</param>
</member>
<member name="M:System.Reflection.Metadata.Ecma335.MetadataBuilder.AddEvent(System.Reflection.EventAttributes,System.Reflection.Metadata.StringHandle,System.Reflection.Metadata.EntityHandle)">
<summary>
Adds an event defintion.
</summary>
<param name="attributes">Attributes</param>
<param name="name">Name</param>
<param name="type">Type of the event: <see cref="T:System.Reflection.Metadata.TypeDefinitionHandle"/>, <see cref="T:System.Reflection.Metadata.TypeReferenceHandle"/>, or <see cref="T:System.Reflection.Metadata.TypeSpecificationHandle"/></param>
<exception cref="T:System.ArgumentException"><paramref name="type"/> doesn't have the expected handle kind.</exception>
</member>
<member name="M:System.Reflection.Metadata.Ecma335.MetadataBuilder.AddConstant(System.Reflection.Metadata.EntityHandle,System.Object)">
<summary>
Adds a default value for a parameter, field or property.
</summary>
<param name="parent"><see cref="T:System.Reflection.Metadata.ParameterHandle"/>, <see cref="T:System.Reflection.Metadata.FieldDefinitionHandle"/>, or <see cref="T:System.Reflection.Metadata.PropertyDefinitionHandle"/></param>
<param name="value">The constant value.</param>
<exception cref="T:System.ArgumentException"><paramref name="parent"/> doesn't have the expected handle kind.</exception>
</member>
<member name="M:System.Reflection.Metadata.Ecma335.MetadataBuilder.AddMethodSemantics(System.Reflection.Metadata.EntityHandle,System.Reflection.MethodSemanticsAttributes,System.Reflection.Metadata.MethodDefinitionHandle)">
<summary>
Associates a method (a getter, a setter, an adder, etc.) with a property or an event.
</summary>
<param name="association"><see cref="T:System.Reflection.Metadata.EventDefinitionHandle"/> or <see cref="T:System.Reflection.Metadata.PropertyDefinitionHandle"/>.</param>
<param name="semantics">Semantics.</param>
<param name="methodDefinition">Method definition.</param>
<exception cref="T:System.ArgumentException"><paramref name="association"/> doesn't have the expected handle kind.</exception>
</member>
<member name="M:System.Reflection.Metadata.Ecma335.MetadataBuilder.AddCustomAttribute(System.Reflection.Metadata.EntityHandle,System.Reflection.Metadata.EntityHandle,System.Reflection.Metadata.BlobHandle)">
<summary>
Add a custom attribute.
</summary>
<param name="parent">
An entity to attach the custom attribute to:
<see cref="T:System.Reflection.Metadata.MethodDefinitionHandle"/>,
<see cref="T:System.Reflection.Metadata.FieldDefinitionHandle"/>,
<see cref="T:System.Reflection.Metadata.TypeReferenceHandle"/>,
<see cref="T:System.Reflection.Metadata.TypeDefinitionHandle"/>,
<see cref="T:System.Reflection.Metadata.ParameterHandle"/>,
<see cref="T:System.Reflection.Metadata.InterfaceImplementationHandle"/>,
<see cref="T:System.Reflection.Metadata.MemberReferenceHandle"/>,
<see cref="T:System.Reflection.Metadata.ModuleDefinitionHandle"/>,
<see cref="T:System.Reflection.Metadata.DeclarativeSecurityAttributeHandle"/>,
<see cref="T:System.Reflection.Metadata.PropertyDefinitionHandle"/>,
<see cref="T:System.Reflection.Metadata.EventDefinitionHandle"/>,
<see cref="T:System.Reflection.Metadata.StandaloneSignatureHandle"/>,
<see cref="T:System.Reflection.Metadata.ModuleReferenceHandle"/>,
<see cref="T:System.Reflection.Metadata.TypeSpecificationHandle"/>,
<see cref="T:System.Reflection.Metadata.AssemblyDefinitionHandle"/>,
<see cref="T:System.Reflection.Metadata.AssemblyReferenceHandle"/>,
<see cref="T:System.Reflection.Metadata.AssemblyFileHandle"/>,
<see cref="T:System.Reflection.Metadata.ExportedTypeHandle"/>,
<see cref="T:System.Reflection.Metadata.ManifestResourceHandle"/>,
<see cref="T:System.Reflection.Metadata.GenericParameterHandle"/>,
<see cref="T:System.Reflection.Metadata.GenericParameterConstraintHandle"/> or
<see cref="T:System.Reflection.Metadata.MethodSpecificationHandle"/>.
</param>
<param name="constructor">
Custom attribute constructor: <see cref="T:System.Reflection.Metadata.MethodDefinitionHandle"/> or <see cref="T:System.Reflection.Metadata.MemberReferenceHandle"/>
</param>
<param name="value">
Custom attribute value blob.
</param>
<exception cref="T:System.ArgumentException"><paramref name="parent"/> doesn't have the expected handle kind.</exception>
</member>
<member name="M:System.Reflection.Metadata.Ecma335.MetadataBuilder.AddMethodSpecification(System.Reflection.Metadata.EntityHandle,System.Reflection.Metadata.BlobHandle)">
<summary>
Adds a method specification (instantiation).
</summary>
<param name="method">Generic method: <see cref="T:System.Reflection.Metadata.MethodDefinitionHandle"/> or <see cref="T:System.Reflection.Metadata.MemberReferenceHandle"/></param>
<param name="instantiation">Instantiation blob encoding the generic arguments of the method.</param>
<exception cref="T:System.ArgumentException"><paramref name="method"/> doesn't have the expected handle kind.</exception>
</member>
<member name="M:System.Reflection.Metadata.Ecma335.MetadataBuilder.AddGenericParameter(System.Reflection.Metadata.EntityHandle,System.Reflection.GenericParameterAttributes,System.Reflection.Metadata.StringHandle,System.Int32)">
<summary>
Adds a generic parameter definition.
</summary>
<param name="parent"><see cref="T:System.Reflection.Metadata.TypeDefinitionHandle"/> or <see cref="T:System.Reflection.Metadata.MethodDefinitionHandle"/></param>
<param name="attributes">Attributes.</param>
<param name="name">Parameter name.</param>
<param name="index">Zero-based parameter index.</param>
<exception cref="T:System.ArgumentException"><paramref name="parent"/> doesn't have the expected handle kind.</exception>
</member>
<member name="M:System.Reflection.Metadata.Ecma335.MetadataBuilder.AddGenericParameterConstraint(System.Reflection.Metadata.GenericParameterHandle,System.Reflection.Metadata.EntityHandle)">
<summary>
Adds a type constraint to a generic parameter.
</summary>
<param name="genericParameter">Generic parameter to constrain.</param>
<param name="constraint">Type constraint: <see cref="T:System.Reflection.Metadata.TypeDefinitionHandle"/>, <see cref="T:System.Reflection.Metadata.TypeReferenceHandle"/> or <see cref="T:System.Reflection.Metadata.TypeSpecificationHandle"/></param>
<exception cref="T:System.ArgumentException"><paramref name="genericParameter"/> doesn't have the expected handle kind.</exception>
</member>
<member name="M:System.Reflection.Metadata.Ecma335.MetadataBuilder.AddMarshallingDescriptor(System.Reflection.Metadata.EntityHandle,System.Reflection.Metadata.BlobHandle)">
<summary>
Add marshalling information to a field or a parameter.
</summary>
<param name="parent"><see cref="T:System.Reflection.Metadata.ParameterHandle"/> or <see cref="T:System.Reflection.Metadata.FieldDefinitionHandle"/>.</param>
<param name="descriptor">Descriptor.</param>
<exception cref="T:System.ArgumentException"><paramref name="parent"/> doesn't have the expected handle kind.</exception>
</member>
<member name="M:System.Reflection.Metadata.Ecma335.MetadataBuilder.AddMethodImport(System.Reflection.Metadata.MethodDefinitionHandle,System.Reflection.MethodImportAttributes,System.Reflection.Metadata.StringHandle,System.Reflection.Metadata.ModuleReferenceHandle)">
<summary>
Adds import information to a method definition (P/Invoke).
</summary>
<param name="method">Method definition.</param>
<param name="attributes">Attributes</param>
<param name="name">Unmanaged method name.</param>
<param name="module">Module containing the unmanaged method.</param>
</member>
<member name="M:System.Reflection.Metadata.Ecma335.MetadataBuilder.AddMethodImplementation(System.Reflection.Metadata.TypeDefinitionHandle,System.Reflection.Metadata.EntityHandle,System.Reflection.Metadata.EntityHandle)">
<summary>
Defines an implementation for a method declaration within a type.
</summary>
<param name="type">Type</param>
<param name="methodBody"><see cref="T:System.Reflection.Metadata.MethodDefinitionHandle"/> or <see cref="T:System.Reflection.Metadata.MemberReferenceHandle"/> which provides the implementation.</param>
<param name="methodDeclaration"><see cref="T:System.Reflection.Metadata.MethodDefinitionHandle"/> or <see cref="T:System.Reflection.Metadata.MemberReferenceHandle"/> the method being implemented.</param>
<exception cref="T:System.ArgumentException"><paramref name="methodBody"/> or <paramref name="methodDeclaration"/> doesn't have the expected handle kind.</exception>
</member>
<member name="M:System.Reflection.Metadata.Ecma335.MetadataBuilder.AddMemberReference(System.Reflection.Metadata.EntityHandle,System.Reflection.Metadata.StringHandle,System.Reflection.Metadata.BlobHandle)">
<summary>
Adds a MemberRef table row.
</summary>
<param name="parent">Containing entity:
<see cref="T:System.Reflection.Metadata.TypeDefinitionHandle"/>,
<see cref="T:System.Reflection.Metadata.TypeReferenceHandle"/>,
<see cref="T:System.Reflection.Metadata.ModuleReferenceHandle"/>,
<see cref="T:System.Reflection.Metadata.MethodDefinitionHandle"/>, or
<see cref="T:System.Reflection.Metadata.TypeSpecificationHandle"/>.
</param>
<param name="name">Member name.</param>
<param name="signature">Member signature.</param>
<exception cref="T:System.ArgumentException"><paramref name="parent"/> doesn't have the expected handle kind.</exception>
</member>
<member name="M:System.Reflection.Metadata.Ecma335.MetadataBuilder.AddManifestResource(System.Reflection.ManifestResourceAttributes,System.Reflection.Metadata.StringHandle,System.Reflection.Metadata.EntityHandle,System.UInt32)">
<summary>
Adds a manifest resource.
</summary>
<param name="attributes">Attributes</param>
<param name="name">Resource name</param>
<param name="implementation"><see cref="T:System.Reflection.Metadata.AssemblyFileHandle"/>, <see cref="T:System.Reflection.Metadata.AssemblyReferenceHandle"/>, or nil</param>
<param name="offset">Specifies the byte offset within the referenced file at which this resource record begins.</param>
<exception cref="T:System.ArgumentException"><paramref name="implementation"/> doesn't have the expected handle kind.</exception>
</member>
<member name="M:System.Reflection.Metadata.Ecma335.MetadataBuilder.AddExportedType(System.Reflection.TypeAttributes,System.Reflection.Metadata.StringHandle,System.Reflection.Metadata.StringHandle,System.Reflection.Metadata.EntityHandle,System.Int32)">
<summary>
Adds an exported type.
</summary>
<param name="attributes">Attributes</param>
<param name="namespace">Namespace</param>
<param name="name">Type name</param>
<param name="implementation"><see cref="T:System.Reflection.Metadata.AssemblyFileHandle"/>, <see cref="T:System.Reflection.Metadata.ExportedTypeHandle"/> or <see cref="T:System.Reflection.Metadata.AssemblyReferenceHandle"/></param>
<param name="typeDefinitionId">Type definition id</param>
<exception cref="T:System.ArgumentException"><paramref name="implementation"/> doesn't have the expected handle kind.</exception>
</member>
<member name="M:System.Reflection.Metadata.Ecma335.MetadataBuilder.AddDeclarativeSecurityAttribute(System.Reflection.Metadata.EntityHandle,System.Reflection.DeclarativeSecurityAction,System.Reflection.Metadata.BlobHandle)">
<summary>
Adds declarative security attribute to a type, method or an assembly.
</summary>
<param name="parent"><see cref="T:System.Reflection.Metadata.TypeDefinitionHandle"/>, <see cref="T:System.Reflection.Metadata.MethodDefinitionHandle"/>, or <see cref="T:System.Reflection.Metadata.AssemblyDefinitionHandle"/></param>
<param name="action">Security action</param>
<param name="permissionSet">Permission set blob.</param>
<exception cref="T:System.ArgumentException"><paramref name="parent"/> doesn't have the expected handle kind.</exception>
</member>
<member name="M:System.Reflection.Metadata.Ecma335.MetadataBuilder.AddCustomDebugInformation(System.Reflection.Metadata.EntityHandle,System.Reflection.Metadata.GuidHandle,System.Reflection.Metadata.BlobHandle)">
<summary>
Add a custom debug information.
</summary>
<param name="parent">
An entity to attach the debug information to:
<see cref="T:System.Reflection.Metadata.MethodDefinitionHandle"/>,
<see cref="T:System.Reflection.Metadata.FieldDefinitionHandle"/>,
<see cref="T:System.Reflection.Metadata.TypeReferenceHandle"/>,
<see cref="T:System.Reflection.Metadata.TypeDefinitionHandle"/>,
<see cref="T:System.Reflection.Metadata.ParameterHandle"/>,
<see cref="T:System.Reflection.Metadata.InterfaceImplementationHandle"/>,
<see cref="T:System.Reflection.Metadata.MemberReferenceHandle"/>,
<see cref="T:System.Reflection.Metadata.ModuleDefinitionHandle"/>,
<see cref="T:System.Reflection.Metadata.DeclarativeSecurityAttributeHandle"/>,
<see cref="T:System.Reflection.Metadata.PropertyDefinitionHandle"/>,
<see cref="T:System.Reflection.Metadata.EventDefinitionHandle"/>,
<see cref="T:System.Reflection.Metadata.StandaloneSignatureHandle"/>,
<see cref="T:System.Reflection.Metadata.ModuleReferenceHandle"/>,
<see cref="T:System.Reflection.Metadata.TypeSpecificationHandle"/>,
<see cref="T:System.Reflection.Metadata.AssemblyDefinitionHandle"/>,
<see cref="T:System.Reflection.Metadata.AssemblyReferenceHandle"/>,
<see cref="T:System.Reflection.Metadata.AssemblyFileHandle"/>,
<see cref="T:System.Reflection.Metadata.ExportedTypeHandle"/>,
<see cref="T:System.Reflection.Metadata.ManifestResourceHandle"/>,
<see cref="T:System.Reflection.Metadata.GenericParameterHandle"/>,
<see cref="T:System.Reflection.Metadata.GenericParameterConstraintHandle"/>,
<see cref="T:System.Reflection.Metadata.MethodSpecificationHandle"/>,
<see cref="T:System.Reflection.Metadata.DocumentHandle"/>,
<see cref="T:System.Reflection.Metadata.LocalScopeHandle"/>,
<see cref="T:System.Reflection.Metadata.LocalVariableHandle"/>,
<see cref="T:System.Reflection.Metadata.LocalConstantHandle"/> or
<see cref="T:System.Reflection.Metadata.ImportScopeHandle"/>.
</param>
<param name="kind">Information kind. Determines the structure of the <paramref name="value"/> blob.</param>
<param name="value">Custom debug information blob.</param>
<exception cref="T:System.ArgumentException"><paramref name="parent"/> doesn't have the expected handle kind.</exception>
</member>
<member name="M:System.Reflection.Metadata.Ecma335.MetadataBuilder.#ctor(System.Int32,System.Int32,System.Int32,System.Int32)">
<summary>
Creates a builder for metadata tables and heaps.
</summary>
<param name="userStringHeapStartOffset">
Start offset of the User String heap.
The cumulative size of User String heaps of all previous EnC generations. Should be 0 unless the metadata is EnC delta metadata.
</param>
<param name="stringHeapStartOffset">
Start offset of the String heap.
The cumulative size of String heaps of all previous EnC generations. Should be 0 unless the metadata is EnC delta metadata.
</param>
<param name="blobHeapStartOffset">
Start offset of the Blob heap.
The cumulative size of Blob heaps of all previous EnC generations. Should be 0 unless the metadata is EnC delta metadata.
</param>
<param name="guidHeapStartOffset">
Start offset of the Guid heap.
The cumulative size of Guid heaps of all previous EnC generations. Should be 0 unless the metadata is EnC delta metadata.
</param>
<exception cref="T:System.Reflection.Metadata.ImageFormatLimitationException">Offset is too big.</exception>
<exception cref="T:System.ArgumentOutOfRangeException">Offset is negative.</exception>
<exception cref="T:System.ArgumentException"><paramref name="guidHeapStartOffset"/> is not a multiple of size of GUID.</exception>
</member>
<member name="M:System.Reflection.Metadata.Ecma335.MetadataBuilder.SetCapacity(System.Reflection.Metadata.Ecma335.HeapIndex,System.Int32)">
<summary>
Sets the capacity of the specified table.
</summary>
<param name="heap">Heap index.</param>
<param name="byteCount">Number of bytes.</param>
<exception cref="T:System.ArgumentOutOfRangeException"><paramref name="heap"/> is not a valid heap index.</exception>
<exception cref="T:System.ArgumentOutOfRangeException"><paramref name="byteCount"/> is negative.</exception>
<remarks>
Use to reduce allocations if the approximate number of bytes is known ahead of time.
</remarks>
</member>
<member name="M:System.Reflection.Metadata.Ecma335.MetadataBuilder.GetOrAddBlob(System.Reflection.Metadata.BlobBuilder)">
<summary>
Adds specified blob to Blob heap, if it's not there already.
</summary>
<param name="value"><see cref="T:System.Reflection.Metadata.BlobBuilder"/> containing the blob.</param>
<returns>Handle to the added or existing blob.</returns>
<exception cref="T:System.ArgumentNullException"><paramref name="value"/> is null.</exception>
</member>
<member name="M:System.Reflection.Metadata.Ecma335.MetadataBuilder.GetOrAddBlob(System.Byte[])">
<summary>
Adds specified blob to Blob heap, if it's not there already.
</summary>
<param name="value">Array containing the blob.</param>
<returns>Handle to the added or existing blob.</returns>
<exception cref="T:System.ArgumentNullException"><paramref name="value"/> is null.</exception>
</member>
<member name="M:System.Reflection.Metadata.Ecma335.MetadataBuilder.GetOrAddBlob(System.Collections.Immutable.ImmutableArray{System.Byte})">
<summary>
Adds specified blob to Blob heap, if it's not there already.
</summary>
<param name="value">Array containing the blob.</param>
<returns>Handle to the added or existing blob.</returns>
<exception cref="T:System.ArgumentNullException"><paramref name="value"/> is null.</exception>
</member>
<member name="M:System.Reflection.Metadata.Ecma335.MetadataBuilder.GetOrAddConstantBlob(System.Object)">
<summary>
Encodes a constant value to a blob and adds it to the Blob heap, if it's not there already.
Uses UTF16 to encode string constants.
</summary>
<param name="value">Constant value.</param>
<returns>Handle to the added or existing blob.</returns>
</member>
<member name="M:System.Reflection.Metadata.Ecma335.MetadataBuilder.GetOrAddBlobUTF16(System.String)">
<summary>
Encodes a string using UTF16 encoding to a blob and adds it to the Blob heap, if it's not there already.
</summary>
<param name="value">String.</param>
<returns>Handle to the added or existing blob.</returns>
<exception cref="T:System.ArgumentNullException"><paramref name="value"/> is null.</exception>
</member>
<member name="M:System.Reflection.Metadata.Ecma335.MetadataBuilder.GetOrAddBlobUTF8(System.String,System.Boolean)">
<summary>
Encodes a string using UTF8 encoding to a blob and adds it to the Blob heap, if it's not there already.
</summary>
<param name="value">Constant value.</param>
<param name="allowUnpairedSurrogates">
True to encode unpaired surrogates as specified, otherwise replace them with U+FFFD character.
</param>
<returns>Handle to the added or existing blob.</returns>
<exception cref="T:System.ArgumentNullException"><paramref name="value"/> is null.</exception>
</member>
<member name="M:System.Reflection.Metadata.Ecma335.MetadataBuilder.GetOrAddGuid(System.Guid)">
<summary>
Adds specified Guid to Guid heap, if it's not there already.
</summary>
<param name="guid">Guid to add.</param>
<returns>Handle to the added or existing Guid.</returns>
</member>
<member name="M:System.Reflection.Metadata.Ecma335.MetadataBuilder.ReserveGuid(System.Reflection.Metadata.Blob@)">
<summary>
Reserves space on the Guid heap for a GUID.
</summary>
<param name="content">
<see cref="T:System.Reflection.Metadata.Blob"/> representing the GUID blob as stored on the heap.
</param>
<returns>Handle to the reserved Guid.</returns>
<exception cref="T:System.Reflection.Metadata.ImageFormatLimitationException">The remaining space on the heap is too small to fit the string.</exception>
</member>
<member name="M:System.Reflection.Metadata.Ecma335.MetadataBuilder.GetOrAddString(System.String)">
<summary>
Adds specified string to String heap, if it's not there already.
</summary>
<param name="value">Array containing the blob.</param>
<returns>Handle to the added or existing blob.</returns>
<exception cref="T:System.ArgumentNullException"><paramref name="value"/> is null.</exception>
</member>
<member name="M:System.Reflection.Metadata.Ecma335.MetadataBuilder.ReserveUserString(System.Int32,System.Reflection.Metadata.Blob@)">
<summary>
Reserves space on the User String heap for a string of specified length.
</summary>
<param name="length">The number of characters to reserve.</param>
<param name="reservedUserString">
<see cref="T:System.Reflection.Metadata.Blob"/> representing the entire User String blob (including its length and terminal character).
Use <see cref="M:System.Reflection.Metadata.BlobWriter.WriteUserString(System.String)"/> to fill in the content.
</param>
<returns>
Handle to the reserved User String.
May be used in <see cref="M:System.Reflection.Metadata.Ecma335.InstructionEncoder.LoadString(System.Reflection.Metadata.UserStringHandle)"/>.
</returns>
<exception cref="T:System.Reflection.Metadata.ImageFormatLimitationException">The remaining space on the heap is too small to fit the string.</exception>
<exception cref="T:System.ArgumentOutOfRangeException"><paramref name="length"/> is negative.</exception>
</member>
<member name="M:System.Reflection.Metadata.Ecma335.MetadataBuilder.GetOrAddUserString(System.String)">
<summary>
Adds specified string to User String heap, if it's not there already.
</summary>
<param name="value">String to add.</param>
<returns>
Handle to the added or existing string.
May be used in <see cref="M:System.Reflection.Metadata.Ecma335.InstructionEncoder.LoadString(System.Reflection.Metadata.UserStringHandle)"/>.
</returns>
<exception cref="T:System.Reflection.Metadata.ImageFormatLimitationException">The remaining space on the heap is too small to fit the string.</exception>
<exception cref="T:System.ArgumentNullException"><paramref name="value"/> is null.</exception>
</member>
<member name="M:System.Reflection.Metadata.Ecma335.MetadataBuilder.SerializeStringHeap">
<summary>
Fills in stringIndexMap with data from stringIndex and write to stringWriter.
Releases stringIndex as the stringTable is sealed after this point.
</summary>
</member>
<member name="T:System.Reflection.Metadata.Ecma335.MetadataBuilder.SuffixSort">
<summary>
Sorts strings such that a string is followed immediately by all strings
that are a suffix of it.
</summary>
</member>
<member name="M:System.Reflection.Metadata.Ecma335.BlobEncoder.MethodSpecificationSignature(System.Int32)">
<exception cref="T:System.ArgumentOutOfRangeException"><paramref name="genericArgumentCount"/> is not in range [0, 0xffff].</exception>
</member>
<member name="M:System.Reflection.Metadata.Ecma335.BlobEncoder.MethodSignature(System.Reflection.Metadata.SignatureCallingConvention,System.Int32,System.Boolean)">
<exception cref="T:System.ArgumentOutOfRangeException"><paramref name="genericParameterCount"/> is not in range [0, 0xffff].</exception>
</member>
<member name="M:System.Reflection.Metadata.Ecma335.BlobEncoder.LocalVariableSignature(System.Int32)">
<exception cref="T:System.ArgumentOutOfRangeException"><paramref name="variableCount"/> is not in range [0, 0x1fffffff].</exception>
</member>
<member name="M:System.Reflection.Metadata.Ecma335.BlobEncoder.PermissionSetBlob(System.Int32)">
<exception cref="T:System.ArgumentOutOfRangeException"><paramref name="attributeCount"/> is not in range [0, 0x1fffffff].</exception>
</member>
<member name="M:System.Reflection.Metadata.Ecma335.SignatureTypeEncoder.PrimitiveType(System.Reflection.Metadata.PrimitiveTypeCode)">
<summary>
Writes primitive type code.
</summary>
<param name="type">Any primitive type code except for <see cref="F:System.Reflection.Metadata.PrimitiveTypeCode.TypedReference"/> and <see cref="F:System.Reflection.Metadata.PrimitiveTypeCode.Void"/>.</param>
<exception cref="T:System.ArgumentOutOfRangeException"><paramref name="type"/> is not valid in this context.</exception>
</member>
<member name="M:System.Reflection.Metadata.Ecma335.SignatureTypeEncoder.Type(System.Reflection.Metadata.EntityHandle,System.Boolean)">
<summary>
Encodes a reference to a type.
</summary>
<param name="type"><see cref="T:System.Reflection.Metadata.TypeDefinitionHandle"/> or <see cref="T:System.Reflection.Metadata.TypeReferenceHandle"/>.</param>
<param name="isValueType">True to mark the type as value type, false to mark it as a reference type in the signature.</param>
<exception cref="T:System.ArgumentException"><paramref name="type"/> doesn't have the expected handle kind.</exception>
</member>
<member name="M:System.Reflection.Metadata.Ecma335.SignatureTypeEncoder.FunctionPointer(System.Reflection.Metadata.SignatureCallingConvention,System.Reflection.Metadata.Ecma335.FunctionPointerAttributes,System.Int32)">
<summary>
Starts a function pointer signature.
</summary>
<param name="convention">Calling convention.</param>
<param name="attributes">Function pointer attributes.</param>
<param name="genericParameterCount">Generic parameter count.</param>
<exception cref="T:System.ArgumentException"><paramref name="attributes"/> is invalid.</exception>
<exception cref="T:System.ArgumentOutOfRangeException"><paramref name="genericParameterCount"/> is not in range [0, 0xffff].</exception>
</member>
<member name="M:System.Reflection.Metadata.Ecma335.SignatureTypeEncoder.GenericInstantiation(System.Reflection.Metadata.EntityHandle,System.Int32,System.Boolean)">
<summary>
Starts a generic instantiation signature.
</summary>
<param name="genericType"><see cref="T:System.Reflection.Metadata.TypeDefinitionHandle"/> or <see cref="T:System.Reflection.Metadata.TypeReferenceHandle"/>.</param>
<param name="genericArgumentCount">Generic argument count.</param>
<param name="isValueType">True to mark the type as value type, false to mark it as a reference type in the signature.</param>
<exception cref="T:System.ArgumentException"><paramref name="genericType"/> doesn't have the expected handle kind.</exception>
<exception cref="T:System.ArgumentOutOfRangeException"><paramref name="genericArgumentCount"/> is not in range [1, 0xffff].</exception>
</member>
<member name="M:System.Reflection.Metadata.Ecma335.SignatureTypeEncoder.GenericMethodTypeParameter(System.Int32)">
<summary>
Encodes a reference to type parameter of a containing generic method.
</summary>
<param name="parameterIndex">Parameter index.</param>
<exception cref="T:System.ArgumentOutOfRangeException"><paramref name="parameterIndex"/> is not in range [0, 0xffff].</exception>
</member>
<member name="M:System.Reflection.Metadata.Ecma335.SignatureTypeEncoder.GenericTypeParameter(System.Int32)">
<summary>
Encodes a reference to type parameter of a containing generic type.
</summary>
<param name="parameterIndex">Parameter index.</param>
<exception cref="T:System.ArgumentOutOfRangeException"><paramref name="parameterIndex"/> is not in range [0, 0xffff].</exception>
</member>
<member name="M:System.Reflection.Metadata.Ecma335.SignatureTypeEncoder.Pointer">
<summary>
Starts pointer signature.
</summary>
</member>
<member name="M:System.Reflection.Metadata.Ecma335.SignatureTypeEncoder.VoidPointer">
<summary>
Encodes <code>void*</code>.
</summary>
</member>
<member name="M:System.Reflection.Metadata.Ecma335.SignatureTypeEncoder.SZArray">
<summary>
Starts SZ array (vector) signature.
</summary>
</member>
<member name="M:System.Reflection.Metadata.Ecma335.SignatureTypeEncoder.CustomModifiers">
<summary>
Starts a signature of a type with custom modifiers.
</summary>
</member>
<member name="P:System.Reflection.Metadata.Ecma335.MetadataSizes.HeapSizes">
<summary>
Exact (unaligned) heap sizes.
</summary>
<remarks>Use <see cref="M:System.Reflection.Metadata.Ecma335.MetadataSizes.GetAlignedHeapSize(System.Reflection.Metadata.Ecma335.HeapIndex)"/> to get an aligned heap size.</remarks>
</member>
<member name="P:System.Reflection.Metadata.Ecma335.MetadataSizes.RowCounts">
<summary>
Table row counts.
</summary>
</member>
<member name="P:System.Reflection.Metadata.Ecma335.MetadataSizes.ExternalRowCounts">
<summary>
External table row counts.
</summary>
</member>
<member name="F:System.Reflection.Metadata.Ecma335.MetadataSizes.PresentTablesMask">
<summary>
Non-empty tables that are emitted into the metadata table stream.
</summary>
</member>
<member name="F:System.Reflection.Metadata.Ecma335.MetadataSizes.ExternalTablesMask">
<summary>
Non-empty tables stored in an external metadata table stream that might be referenced from the metadata table stream being emitted.
</summary>
</member>
<member name="F:System.Reflection.Metadata.Ecma335.MetadataSizes.MetadataStreamStorageSize">
<summary>
Overall size of metadata stream storage (stream headers, table stream, heaps, additional streams).
Aligned to <see cref="F:System.Reflection.Metadata.Ecma335.MetadataSizes.StreamAlignment"/>.
</summary>
</member>
<member name="F:System.Reflection.Metadata.Ecma335.MetadataSizes.MetadataTableStreamSize">
<summary>
The size of metadata stream (#- or #~). Aligned.
Aligned to <see cref="F:System.Reflection.Metadata.Ecma335.MetadataSizes.StreamAlignment"/>.
</summary>
</member>
<member name="F:System.Reflection.Metadata.Ecma335.MetadataSizes.StandalonePdbStreamSize">
<summary>
The size of #Pdb stream. Aligned.
</summary>
</member>
<member name="P:System.Reflection.Metadata.Ecma335.MetadataSizes.MetadataHeaderSize">
<summary>
Metadata header size.
Includes:
- metadata storage signature
- storage header
- stream headers
</summary>
</member>
<member name="P:System.Reflection.Metadata.Ecma335.MetadataSizes.MetadataSize">
<summary>
Total size of metadata (header and all streams).
</summary>
</member>
<member name="M:System.Reflection.Metadata.Ecma335.MetadataSizes.GetAlignedHeapSize(System.Reflection.Metadata.Ecma335.HeapIndex)">
<summary>
Returns aligned size of the specified heap.
</summary>
</member>
<member name="T:System.Reflection.Metadata.Ecma335.SignatureDecoder`1">
<summary>
Decodes signature blobs.
See Metadata Specification section II.23.2: Blobs and signatures.
</summary>
</member>
<member name="M:System.Reflection.Metadata.Ecma335.SignatureDecoder`1.#ctor(System.Reflection.Metadata.ISignatureTypeProvider{`0},System.Reflection.Metadata.MetadataReader)">
<summary>
Creates a new SignatureDecoder.
</summary>
<param name="provider">The provider used to obtain type symbols as the signature is decoded.</param>
<param name="metadataReader">
The metadata reader from which the signature was obtained. It may be null if the given provider allows it.
</param>
</member>
<member name="M:System.Reflection.Metadata.Ecma335.SignatureDecoder`1.DecodeType(System.Reflection.Metadata.BlobReader@,System.Boolean)">
<summary>
Decodes a type embedded in a signature and advances the reader past the type.
</summary>
<param name="blobReader">The blob reader positioned at the leading SignatureTypeCode</param>
<param name="allowTypeSpecifications">Allow a <see cref="T:System.Reflection.Metadata.TypeSpecificationHandle"/> to follow a (CLASS | VALUETYPE) in the signature.
At present, the only context where that would be valid is in a LocalConstantSig as defined by the Portable PDB specification.
</param>
<returns>The decoded type.</returns>
<exception cref="T:System.BadImageFormatException">The reader was not positioned at a valid signature type.</exception>
</member>
<member name="M:System.Reflection.Metadata.Ecma335.SignatureDecoder`1.DecodeTypeSequence(System.Reflection.Metadata.BlobReader@)">
<summary>
Decodes a list of types, with at least one instance that is preceded by its count as a compressed integer.
</summary>
</member>
<member name="M:System.Reflection.Metadata.Ecma335.SignatureDecoder`1.DecodeMethodSignature(System.Reflection.Metadata.BlobReader@)">
<summary>
Decodes a method (definition, reference, or standalone) or property signature blob.
</summary>
<param name="blobReader">BlobReader positioned at a method signature.</param>
<returns>The decoded method signature.</returns>
<exception cref="T:System.BadImageFormatException">The method signature is invalid.</exception>
</member>
<member name="M:System.Reflection.Metadata.Ecma335.SignatureDecoder`1.DecodeMethodSpecificationSignature(System.Reflection.Metadata.BlobReader@)">
<summary>
Decodes a method specification signature blob and advances the reader past the signature.
</summary>
<param name="blobReader">A BlobReader positioned at a valid method specification signature.</param>
<returns>The types used to instantiate a generic method via the method specification.</returns>
</member>
<member name="M:System.Reflection.Metadata.Ecma335.SignatureDecoder`1.DecodeLocalSignature(System.Reflection.Metadata.BlobReader@)">
<summary>
Decodes a local variable signature blob and advances the reader past the signature.
</summary>
<param name="blobReader">The blob reader positioned at a local variable signature.</param>
<returns>The local variable types.</returns>
<exception cref="T:System.BadImageFormatException">The local variable signature is invalid.</exception>
</member>
<member name="M:System.Reflection.Metadata.Ecma335.SignatureDecoder`1.DecodeFieldSignature(System.Reflection.Metadata.BlobReader@)">
<summary>
Decodes a field signature blob and advances the reader past the signature.
</summary>
<param name="blobReader">The blob reader positioned at a field signature.</param>
<returns>The decoded field type.</returns>
</member>
<member name="T:System.Reflection.Metadata.Ecma335.ExportedTypeExtensions">
<summary>
Provides an extension method to access the TypeDefinitionId column of the ExportedType table.
</summary>
</member>
<member name="M:System.Reflection.Metadata.Ecma335.ExportedTypeExtensions.GetTypeDefinitionId(System.Reflection.Metadata.ExportedType)">
<summary>
Gets a hint at the likely row number of the target type in the TypeDef table of its module.
If the namespaces and names do not match, resolution falls back to a full search of the
target TypeDef table. Ignored and should be zero if <see cref="P:System.Reflection.Metadata.ExportedType.IsForwarder"/> is
true.
</summary>
</member>
<member name="T:System.Reflection.Metadata.Ecma335.MetadataReaderExtensions">
<summary>
Provides extension methods for working with certain raw elements of the ECMA-335 metadata tables and heaps.
</summary>
</member>
<member name="M:System.Reflection.Metadata.Ecma335.MetadataReaderExtensions.GetTableRowCount(System.Reflection.Metadata.MetadataReader,System.Reflection.Metadata.Ecma335.TableIndex)">
<summary>
Returns the number of rows in the specified table.
</summary>
<exception cref="T:System.ArgumentNullException"><paramref name="reader"/> is null.</exception>
<exception cref="T:System.ArgumentOutOfRangeException"><paramref name="tableIndex"/> is not a valid table index.</exception>
</member>
<member name="M:System.Reflection.Metadata.Ecma335.MetadataReaderExtensions.GetTableRowSize(System.Reflection.Metadata.MetadataReader,System.Reflection.Metadata.Ecma335.TableIndex)">
<summary>
Returns the size of a row in the specified table.
</summary>
<exception cref="T:System.ArgumentNullException"><paramref name="reader"/> is null.</exception>
<exception cref="T:System.ArgumentOutOfRangeException"><paramref name="tableIndex"/> is not a valid table index.</exception>
</member>
<member name="M:System.Reflection.Metadata.Ecma335.MetadataReaderExtensions.GetTableMetadataOffset(System.Reflection.Metadata.MetadataReader,System.Reflection.Metadata.Ecma335.TableIndex)">
<summary>
Returns the offset from the start of metadata to the specified table.
</summary>
<exception cref="T:System.ArgumentNullException"><paramref name="reader"/> is null.</exception>
<exception cref="T:System.ArgumentOutOfRangeException"><paramref name="tableIndex"/> is not a valid table index.</exception>
</member>
<member name="M:System.Reflection.Metadata.Ecma335.MetadataReaderExtensions.GetHeapSize(System.Reflection.Metadata.MetadataReader,System.Reflection.Metadata.Ecma335.HeapIndex)">
<summary>
Returns the size of the specified heap.
</summary>
<exception cref="T:System.ArgumentNullException"><paramref name="reader"/> is null.</exception>
<exception cref="T:System.ArgumentOutOfRangeException"><paramref name="heapIndex"/> is not a valid heap index.</exception>
</member>
<member name="M:System.Reflection.Metadata.Ecma335.MetadataReaderExtensions.GetHeapMetadataOffset(System.Reflection.Metadata.MetadataReader,System.Reflection.Metadata.Ecma335.HeapIndex)">
<summary>
Returns the offset from the start of metadata to the specified heap.
</summary>
<exception cref="T:System.ArgumentNullException"><paramref name="reader"/> is null.</exception>
<exception cref="T:System.ArgumentOutOfRangeException"><paramref name="heapIndex"/> is not a valid heap index.</exception>
</member>
<member name="M:System.Reflection.Metadata.Ecma335.MetadataReaderExtensions.GetMetadataBlock(System.Reflection.Metadata.MetadataReader,System.Reflection.Metadata.Ecma335.HeapIndex)">
<summary>
Returns the size of the specified heap.
</summary>
<exception cref="T:System.ArgumentNullException"><paramref name="reader"/> is null.</exception>
<exception cref="T:System.ArgumentOutOfRangeException"><paramref name="heapIndex"/> is not a valid heap index.</exception>
</member>
<member name="M:System.Reflection.Metadata.Ecma335.MetadataReaderExtensions.GetNextHandle(System.Reflection.Metadata.MetadataReader,System.Reflection.Metadata.UserStringHandle)">
<summary>
Returns the a handle to the UserString that follows the given one in the UserString heap or a nil handle if it is the last one.
</summary>
<exception cref="T:System.ArgumentNullException"><paramref name="reader"/> is null.</exception>
</member>
<member name="M:System.Reflection.Metadata.Ecma335.MetadataReaderExtensions.GetNextHandle(System.Reflection.Metadata.MetadataReader,System.Reflection.Metadata.BlobHandle)">
<summary>
Returns the a handle to the Blob that follows the given one in the Blob heap or a nil handle if it is the last one.
</summary>
<exception cref="T:System.ArgumentNullException"><paramref name="reader"/> is null.</exception>
</member>
<member name="M:System.Reflection.Metadata.Ecma335.MetadataReaderExtensions.GetNextHandle(System.Reflection.Metadata.MetadataReader,System.Reflection.Metadata.StringHandle)">
<summary>
Returns the a handle to the String that follows the given one in the String heap or a nil handle if it is the last one.
</summary>
<exception cref="T:System.ArgumentNullException"><paramref name="reader"/> is null.</exception>
</member>
<member name="M:System.Reflection.Metadata.Ecma335.MetadataReaderExtensions.GetEditAndContinueLogEntries(System.Reflection.Metadata.MetadataReader)">
<summary>
Enumerates entries of EnC log.
</summary>
<exception cref="T:System.ArgumentNullException"><paramref name="reader"/> is null.</exception>
</member>
<member name="M:System.Reflection.Metadata.Ecma335.MetadataReaderExtensions.GetEditAndContinueMapEntries(System.Reflection.Metadata.MetadataReader)">
<summary>
Enumerates entries of EnC map.
</summary>
<exception cref="T:System.ArgumentNullException"><paramref name="reader"/> is null.</exception>
</member>
<member name="M:System.Reflection.Metadata.Ecma335.MetadataReaderExtensions.GetTypesWithProperties(System.Reflection.Metadata.MetadataReader)">
<summary>
Enumerate types that define one or more properties.
</summary>
<returns>
The resulting sequence corresponds exactly to entries in PropertyMap table,
i.e. n-th returned <see cref="T:System.Reflection.Metadata.TypeDefinitionHandle"/> is stored in n-th row of PropertyMap.
</returns>
</member>
<member name="M:System.Reflection.Metadata.Ecma335.MetadataReaderExtensions.GetTypesWithEvents(System.Reflection.Metadata.MetadataReader)">
<summary>
Enumerate types that define one or more events.
</summary>
<returns>
The resulting sequence corresponds exactly to entries in EventMap table,
i.e. n-th returned <see cref="T:System.Reflection.Metadata.TypeDefinitionHandle"/> is stored in n-th row of EventMap.
</returns>
</member>
<member name="M:System.Reflection.Metadata.Ecma335.MetadataReaderExtensions.ResolveSignatureTypeKind(System.Reflection.Metadata.MetadataReader,System.Reflection.Metadata.EntityHandle,System.Byte)">
<summary>
Given a type handle and a raw type kind found in a signature blob determines whether the target type is a value type or a reference type.
</summary>
</member>
<member name="F:System.Reflection.Metadata.Ecma335.MetadataTokens.TableCount">
<summary>
Maximum number of tables that can be present in Ecma335 metadata.
</summary>
</member>
<member name="F:System.Reflection.Metadata.Ecma335.MetadataTokens.HeapCount">
<summary>
Maximum number of tables that can be present in Ecma335 metadata.
</summary>
</member>
<member name="M:System.Reflection.Metadata.Ecma335.MetadataTokens.GetRowNumber(System.Reflection.Metadata.MetadataReader,System.Reflection.Metadata.EntityHandle)">
<summary>
Returns the row number of a metadata table entry that corresponds
to the specified <paramref name="handle"/> in the context of <paramref name="reader"/>.
</summary>
<returns>One based row number.</returns>
<exception cref="T:System.ArgumentException">The <paramref name="handle"/> is not a valid metadata table handle.</exception>
</member>
<member name="M:System.Reflection.Metadata.Ecma335.MetadataTokens.GetHeapOffset(System.Reflection.Metadata.MetadataReader,System.Reflection.Metadata.Handle)">
<summary>
Returns the offset of metadata heap data that corresponds
to the specified <paramref name="handle"/> in the context of <paramref name="reader"/>.
</summary>
<returns>Zero based offset, or -1 if <paramref name="handle"/> isn't a metadata heap handle.</returns>
<exception cref="T:System.NotSupportedException">The operation is not supported for the specified <paramref name="handle"/>.</exception>
<exception cref="T:System.ArgumentException">The <paramref name="handle"/> is invalid.</exception>
</member>
<member name="M:System.Reflection.Metadata.Ecma335.MetadataTokens.GetToken(System.Reflection.Metadata.MetadataReader,System.Reflection.Metadata.EntityHandle)">
<summary>
Returns the metadata token of the specified <paramref name="handle"/> in the context of <paramref name="reader"/>.
</summary>
<returns>Metadata token.</returns>
<exception cref="T:System.NotSupportedException">The operation is not supported for the specified <paramref name="handle"/>.</exception>
</member>
<member name="M:System.Reflection.Metadata.Ecma335.MetadataTokens.GetToken(System.Reflection.Metadata.MetadataReader,System.Reflection.Metadata.Handle)">
<summary>
Returns the metadata token of the specified <paramref name="handle"/> in the context of <paramref name="reader"/>.
</summary>
<returns>Metadata token.</returns>
<exception cref="T:System.ArgumentException">
Handle represents a metadata entity that doesn't have a token.
A token can only be retrieved for a metadata table handle or a heap handle of type <see cref="F:System.Reflection.Metadata.HandleKind.UserString"/>.
</exception>
<exception cref="T:System.NotSupportedException">The operation is not supported for the specified <paramref name="handle"/>.</exception>
</member>
<member name="M:System.Reflection.Metadata.Ecma335.MetadataTokens.GetRowNumber(System.Reflection.Metadata.EntityHandle)">
<summary>
Returns the row number of a metadata table entry that corresponds
to the specified <paramref name="handle"/>.
</summary>
<returns>
One based row number, or -1 if <paramref name="handle"/> can only be interpreted in a context of a specific <see cref="T:System.Reflection.Metadata.MetadataReader"/>.
See <see cref="M:System.Reflection.Metadata.Ecma335.MetadataTokens.GetRowNumber(System.Reflection.Metadata.MetadataReader,System.Reflection.Metadata.EntityHandle)"/>.
</returns>
</member>
<member name="M:System.Reflection.Metadata.Ecma335.MetadataTokens.GetHeapOffset(System.Reflection.Metadata.Handle)">
<summary>
Returns the offset of metadata heap data that corresponds
to the specified <paramref name="handle"/>.
</summary>
<returns>
An offset in the corresponding heap, or -1 if <paramref name="handle"/> can only be interpreted in a context of a specific <see cref="T:System.Reflection.Metadata.MetadataReader"/> or <see cref="T:System.Reflection.Metadata.Ecma335.MetadataBuilder"/>.
See <see cref="M:System.Reflection.Metadata.Ecma335.MetadataTokens.GetHeapOffset(System.Reflection.Metadata.MetadataReader,System.Reflection.Metadata.Handle)"/>.
</returns>
</member>
<member name="M:System.Reflection.Metadata.Ecma335.MetadataTokens.GetHeapOffset(System.Reflection.Metadata.BlobHandle)">
<summary>
Returns the offset of metadata heap data that corresponds
to the specified <paramref name="handle"/>.
</summary>
<returns>
Zero based offset, or -1 if <paramref name="handle"/> can only be interpreted in a context of a specific <see cref="T:System.Reflection.Metadata.MetadataReader"/> or <see cref="T:System.Reflection.Metadata.Ecma335.MetadataBuilder"/>.
See <see cref="M:System.Reflection.Metadata.Ecma335.MetadataTokens.GetHeapOffset(System.Reflection.Metadata.MetadataReader,System.Reflection.Metadata.Handle)"/>.
</returns>
</member>
<member name="M:System.Reflection.Metadata.Ecma335.MetadataTokens.GetHeapOffset(System.Reflection.Metadata.GuidHandle)">
<summary>
Returns the offset of metadata heap data that corresponds
to the specified <paramref name="handle"/>.
</summary>
<returns>
Zero based offset, or -1 if <paramref name="handle"/> can only be interpreted in a context of a specific <see cref="T:System.Reflection.Metadata.MetadataReader"/> or <see cref="T:System.Reflection.Metadata.Ecma335.MetadataBuilder"/>.
See <see cref="M:System.Reflection.Metadata.Ecma335.MetadataTokens.GetHeapOffset(System.Reflection.Metadata.MetadataReader,System.Reflection.Metadata.Handle)"/>.
</returns>
</member>
<member name="M:System.Reflection.Metadata.Ecma335.MetadataTokens.GetHeapOffset(System.Reflection.Metadata.UserStringHandle)">
<summary>
Returns the offset of metadata heap data that corresponds
to the specified <paramref name="handle"/>.
</summary>
<returns>
Zero based offset, or -1 if <paramref name="handle"/> can only be interpreted in a context of a specific <see cref="T:System.Reflection.Metadata.MetadataReader"/> or <see cref="T:System.Reflection.Metadata.Ecma335.MetadataBuilder"/>.
See <see cref="M:System.Reflection.Metadata.Ecma335.MetadataTokens.GetHeapOffset(System.Reflection.Metadata.MetadataReader,System.Reflection.Metadata.Handle)"/>.
</returns>
</member>
<member name="M:System.Reflection.Metadata.Ecma335.MetadataTokens.GetHeapOffset(System.Reflection.Metadata.StringHandle)">
<summary>
Returns the offset of metadata heap data that corresponds
to the specified <paramref name="handle"/>.
</summary>
<returns>
Zero based offset, or -1 if <paramref name="handle"/> can only be interpreted in a context of a specific <see cref="T:System.Reflection.Metadata.MetadataReader"/> or <see cref="T:System.Reflection.Metadata.Ecma335.MetadataBuilder"/>.
See <see cref="M:System.Reflection.Metadata.Ecma335.MetadataTokens.GetHeapOffset(System.Reflection.Metadata.MetadataReader,System.Reflection.Metadata.Handle)"/>.
</returns>
</member>
<member name="M:System.Reflection.Metadata.Ecma335.MetadataTokens.GetToken(System.Reflection.Metadata.Handle)">
<summary>
Returns the metadata token of the specified <paramref name="handle"/>.
</summary>
<returns>
Metadata token, or 0 if <paramref name="handle"/> can only be interpreted in a context of a specific <see cref="T:System.Reflection.Metadata.MetadataReader"/>.
See <see cref="M:System.Reflection.Metadata.Ecma335.MetadataTokens.GetToken(System.Reflection.Metadata.MetadataReader,System.Reflection.Metadata.Handle)"/>.
</returns>
<exception cref="T:System.ArgumentException">
Handle represents a metadata entity that doesn't have a token.
A token can only be retrieved for a metadata table handle or a heap handle of type <see cref="F:System.Reflection.Metadata.HandleKind.UserString"/>.
</exception>
</member>
<member name="M:System.Reflection.Metadata.Ecma335.MetadataTokens.GetToken(System.Reflection.Metadata.EntityHandle)">
<summary>
Returns the metadata token of the specified <paramref name="handle"/>.
</summary>
<returns>
Metadata token, or 0 if <paramref name="handle"/> can only be interpreted in a context of a specific <see cref="T:System.Reflection.Metadata.MetadataReader"/>.
See <see cref="M:System.Reflection.Metadata.Ecma335.MetadataTokens.GetToken(System.Reflection.Metadata.MetadataReader,System.Reflection.Metadata.EntityHandle)"/>.
</returns>
</member>
<member name="M:System.Reflection.Metadata.Ecma335.MetadataTokens.TryGetTableIndex(System.Reflection.Metadata.HandleKind,System.Reflection.Metadata.Ecma335.TableIndex@)">
<summary>
Gets the <see cref="T:System.Reflection.Metadata.Ecma335.TableIndex"/> of the table corresponding to the specified <see cref="T:System.Reflection.Metadata.HandleKind"/>.
</summary>
<param name="type">Handle type.</param>
<param name="index">Table index.</param>
<returns>True if the handle type corresponds to an Ecma335 table, false otherwise.</returns>
</member>
<member name="M:System.Reflection.Metadata.Ecma335.MetadataTokens.TryGetHeapIndex(System.Reflection.Metadata.HandleKind,System.Reflection.Metadata.Ecma335.HeapIndex@)">
<summary>
Gets the <see cref="T:System.Reflection.Metadata.Ecma335.HeapIndex"/> of the heap corresponding to the specified <see cref="T:System.Reflection.Metadata.HandleKind"/>.
</summary>
<param name="type">Handle type.</param>
<param name="index">Heap index.</param>
<returns>True if the handle type corresponds to an Ecma335 heap, false otherwise.</returns>
</member>
<member name="M:System.Reflection.Metadata.Ecma335.MetadataTokens.Handle(System.Int32)">
<summary>
Creates a handle from a token value.
</summary>
<exception cref="T:System.ArgumentException">
<paramref name="token"/> is not a valid metadata token.
It must encode a metadata table entity or an offset in <see cref="F:System.Reflection.Metadata.HandleKind.UserString"/> heap.
</exception>
</member>
<member name="M:System.Reflection.Metadata.Ecma335.MetadataTokens.EntityHandle(System.Int32)">
<summary>
Creates an entity handle from a token value.
</summary>
<exception cref="T:System.ArgumentException"><paramref name="token"/> is not a valid metadata entity token.</exception>
</member>
<member name="M:System.Reflection.Metadata.Ecma335.MetadataTokens.EntityHandle(System.Reflection.Metadata.Ecma335.TableIndex,System.Int32)">
<summary>
Creates an <see cref="T:System.Reflection.Metadata.EntityHandle"/> from a token value.
</summary>
<exception cref="T:System.ArgumentException">
<paramref name="tableIndex"/> is not a valid table index.</exception>
</member>
<member name="M:System.Reflection.Metadata.Ecma335.MetadataTokens.Handle(System.Reflection.Metadata.Ecma335.TableIndex,System.Int32)">
<summary>
Creates an <see cref="T:System.Reflection.Metadata.EntityHandle"/> from a token value.
</summary>
<exception cref="T:System.ArgumentException">
<paramref name="tableIndex"/> is not a valid table index.</exception>
</member>
<member name="M:System.Reflection.Metadata.Ecma335.StringStreamReader.EqualsRaw(System.Reflection.Metadata.StringHandle,System.String)">
<summary>
Returns true if the given raw (non-virtual) handle represents the same string as given ASCII string.
</summary>
</member>
<member name="M:System.Reflection.Metadata.Ecma335.StringStreamReader.IndexOfRaw(System.Int32,System.Char)">
<summary>
Returns the heap index of the given ASCII character or -1 if not found prior null terminator or end of heap.
</summary>
</member>
<member name="M:System.Reflection.Metadata.Ecma335.StringStreamReader.StartsWithRaw(System.Reflection.Metadata.StringHandle,System.String)">
<summary>
Returns true if the given raw (non-virtual) handle represents a string that starts with given ASCII prefix.
</summary>
</member>
<member name="M:System.Reflection.Metadata.Ecma335.StringStreamReader.BinarySearchRaw(System.String[],System.Reflection.Metadata.StringHandle)">
<summary>
Equivalent to Array.BinarySearch, searches for given raw (non-virtual) handle in given array of ASCII strings.
</summary>
</member>
<member name="T:System.Reflection.Metadata.Ecma335.HandleType">
<summary>
These constants are all in the byte range and apply to the interpretation of <see cref="P:System.Reflection.Metadata.Handle.VType"/>,
</summary>
</member>
<member name="F:System.Reflection.Metadata.Ecma335.HandleType.VirtualBit">
<summary>
Use the highest bit to mark tokens that are virtual (synthesized).
We create virtual tokens to represent projected WinMD entities.
</summary>
</member>
<member name="F:System.Reflection.Metadata.Ecma335.HandleType.NonVirtualStringTypeMask">
<summary>
In the case of string handles, the two lower bits that (in addition to the
virtual bit not included in this mask) encode how to obtain the string value.
</summary>
</member>
<member name="F:System.Reflection.Metadata.Ecma335.TokenTypeIds.VirtualBit">
<summary>
Use the highest bit to mark tokens that are virtual (synthesized).
We create virtual tokens to represent projected WinMD entities.
</summary>
</member>
<member name="M:System.Reflection.Metadata.Ecma335.TokenTypeIds.IsEntityOrUserStringToken(System.UInt32)">
<summary>
Returns true if the token value can escape the metadata reader.
We don't allow virtual tokens and heap tokens other than UserString to escape
since the token type ids are internal to the reader and not specified by ECMA spec.
Spec (Partition III, 1.9 Metadata tokens):
Many CIL instructions are followed by a "metadata token". This is a 4-byte value, that specifies a row in a
metadata table, or a starting byte offset in the User String heap.
For example, a value of 0x02 specifies the TypeDef table; a value of 0x70 specifies the User
String heap.The value corresponds to the number assigned to that metadata table (see Partition II for the full
list of tables) or to 0x70 for the User String heap.The least-significant 3 bytes specify the target row within that
metadata table, or starting byte offset within the User String heap.
</summary>
</member>
<member name="P:System.Reflection.Metadata.Ecma335.NamespaceCache.CacheIsRealized">
<summary>
Returns whether the namespaceTable has been created. If it hasn't, calling a GetXXX method
on this will probably have a very high amount of overhead.
</summary>
</member>
<member name="M:System.Reflection.Metadata.Ecma335.NamespaceCache.GetSimpleName(System.Reflection.Metadata.NamespaceDefinitionHandle,System.Int32)">
<summary>
This will return a StringHandle for the simple name of a namespace name at the given segment index.
If no segment index is passed explicitly or the "segment" index is greater than or equal to the number
of segments, then the last segment is used. "Segment" in this context refers to part of a namespace
name between dots.
Example: Given a NamespaceDefinitionHandle to "System.Collections.Generic.Test" called 'handle':
reader.GetString(GetSimpleName(handle)) == "Test"
reader.GetString(GetSimpleName(handle, 0)) == "System"
reader.GetString(GetSimpleName(handle, 1)) == "Collections"
reader.GetString(GetSimpleName(handle, 2)) == "Generic"
reader.GetString(GetSimpleName(handle, 3)) == "Test"
reader.GetString(GetSimpleName(handle, 1000)) == "Test"
</summary>
</member>
<member name="M:System.Reflection.Metadata.Ecma335.NamespaceCache.PopulateNamespaceTable">
<summary>
Two distinct namespace handles represent the same namespace if their full names are the same. This
method merges builders corresponding to such namespace handles.
</summary>
</member>
<member name="M:System.Reflection.Metadata.Ecma335.NamespaceCache.MergeDuplicateNamespaces(System.Collections.Generic.Dictionary{System.Reflection.Metadata.NamespaceDefinitionHandle,System.Reflection.Metadata.Ecma335.NamespaceCache.NamespaceDataBuilder},System.Collections.Generic.Dictionary{System.String,System.Reflection.Metadata.Ecma335.NamespaceCache.NamespaceDataBuilder}@)">
<summary>
This will take 'table' and merge all of the NamespaceData instances that point to the same
namespace. It has to create 'stringTable' as an intermediate dictionary, so it will hand it
back to the caller should the caller want to use it.
</summary>
</member>
<member name="M:System.Reflection.Metadata.Ecma335.NamespaceCache.SynthesizeNamespaceData(System.String,System.Reflection.Metadata.NamespaceDefinitionHandle)">
<summary>
Creates a NamespaceDataBuilder instance that contains a synthesized NamespaceDefinitionHandle,
as well as the name provided.
</summary>
</member>
<member name="M:System.Reflection.Metadata.Ecma335.NamespaceCache.LinkChildDataToParentData(System.Reflection.Metadata.Ecma335.NamespaceCache.NamespaceDataBuilder,System.Reflection.Metadata.Ecma335.NamespaceCache.NamespaceDataBuilder)">
<summary>
Quick convenience method that handles linking together child + parent
</summary>
</member>
<member name="M:System.Reflection.Metadata.Ecma335.NamespaceCache.LinkChildToParentNamespace(System.Collections.Generic.Dictionary{System.String,System.Reflection.Metadata.Ecma335.NamespaceCache.NamespaceDataBuilder},System.Reflection.Metadata.Ecma335.NamespaceCache.NamespaceDataBuilder,System.Collections.Generic.List{System.Reflection.Metadata.Ecma335.NamespaceCache.NamespaceDataBuilder}@)">
<summary>
Links a child to its parent namespace. If the parent namespace doesn't exist, this will create a
virtual one. This will automatically link any virtual namespaces it creates up to its parents.
</summary>
</member>
<member name="M:System.Reflection.Metadata.Ecma335.NamespaceCache.ResolveParentChildRelationships(System.Collections.Generic.Dictionary{System.String,System.Reflection.Metadata.Ecma335.NamespaceCache.NamespaceDataBuilder},System.Collections.Generic.List{System.Reflection.Metadata.Ecma335.NamespaceCache.NamespaceDataBuilder}@)">
<summary>
This will link all parents/children in the given namespaces dictionary up to each other.
In some cases, we need to synthesize namespaces that do not have any type definitions or forwarders
of their own, but do have child namespaces. These are returned via the virtualNamespaces out
parameter.
</summary>
</member>
<member name="M:System.Reflection.Metadata.Ecma335.NamespaceCache.PopulateTableWithTypeDefinitions(System.Collections.Generic.Dictionary{System.Reflection.Metadata.NamespaceDefinitionHandle,System.Reflection.Metadata.Ecma335.NamespaceCache.NamespaceDataBuilder})">
<summary>
Loops through all type definitions in metadata, adding them to the given table
</summary>
</member>
<member name="M:System.Reflection.Metadata.Ecma335.NamespaceCache.PopulateTableWithExportedTypes(System.Collections.Generic.Dictionary{System.Reflection.Metadata.NamespaceDefinitionHandle,System.Reflection.Metadata.Ecma335.NamespaceCache.NamespaceDataBuilder})">
<summary>
Loops through all type forwarders in metadata, adding them to the given table
</summary>
</member>
<member name="M:System.Reflection.Metadata.Ecma335.NamespaceCache.PopulateNamespaceList">
<summary>
Populates namespaceList with distinct namespaces. No ordering is guaranteed.
</summary>
</member>
<member name="M:System.Reflection.Metadata.Ecma335.NamespaceCache.EnsureNamespaceTableIsPopulated">
<summary>
If the namespace table doesn't exist, populates it!
</summary>
</member>
<member name="M:System.Reflection.Metadata.Ecma335.NamespaceCache.EnsureNamespaceListIsPopulated">
<summary>
If the namespace list doesn't exist, populates it!
</summary>
</member>
<member name="T:System.Reflection.Metadata.Ecma335.NamespaceCache.NamespaceDataBuilder">
<summary>
An intermediate class used to build NamespaceData instances. This was created because we wanted to
use ImmutableArrays in NamespaceData, but having ArrayBuilders and ImmutableArrays that served the
same purpose in NamespaceData got ugly. With the current design of how we create our Namespace
dictionary, this needs to be a class because we have a many-to-one mapping between NamespaceHandles
and NamespaceData. So, the pointer semantics must be preserved.
This class assumes that the builders will not be modified in any way after the first call to
Freeze().
</summary>
</member>
<member name="M:System.Reflection.Metadata.Ecma335.NamespaceCache.NamespaceDataBuilder.Freeze">
<summary>
Returns a NamespaceData that represents this NamespaceDataBuilder instance. After calling
this method, it is an error to use any methods or fields except Freeze() on the target
NamespaceDataBuilder.
</summary>
</member>
<member name="M:System.Reflection.Metadata.Ecma335.FieldLayoutTableReader.FindFieldLayoutRowId(System.Reflection.Metadata.FieldDefinitionHandle)">
<summary>
Returns field offset for given field RowId, or -1 if not available.
</summary>
</member>
<member name="F:System.Reflection.Metadata.Ecma335.AssemblyRefTableReader.NumberOfNonVirtualRows">
<summary>
In CLI metadata equal to the actual number of entries in AssemblyRef table.
In WinMD metadata it includes synthesized AssemblyRefs in addition.
</summary>
</member>
<member name="T:System.Reflection.Metadata.EntityHandle">
<summary>
Represents a metadata entity (type reference/definition/specification, method definition, custom attribute, etc.).
</summary>
<remarks>
Use <see cref="T:System.Reflection.Metadata.EntityHandle"/> to store multiple kinds of entity handles.
It has smaller memory footprint than <see cref="T:System.Reflection.Metadata.Handle"/>.
</remarks>
</member>
<member name="P:System.Reflection.Metadata.EntityHandle.SpecificHandleValue">
<summary>
Value stored in a specific entity handle (see <see cref="T:System.Reflection.Metadata.TypeDefinitionHandle"/>, <see cref="T:System.Reflection.Metadata.MethodDefinitionHandle"/>, etc.).
</summary>
</member>
<member name="M:System.Reflection.Metadata.BlobWriter.ContentEquals(System.Reflection.Metadata.BlobWriter)">
<summary>
Compares the current content of this writer with another one.
</summary>
</member>
<member name="M:System.Reflection.Metadata.BlobWriter.ToArray(System.Int32,System.Int32)">
<exception cref="T:System.ArgumentOutOfRangeException">Range specified by <paramref name="start"/> and <paramref name="byteCount"/> falls outside of the bounds of the buffer content.</exception>
</member>
<member name="M:System.Reflection.Metadata.BlobWriter.ToImmutableArray(System.Int32,System.Int32)">
<exception cref="T:System.ArgumentOutOfRangeException">Range specified by <paramref name="start"/> and <paramref name="byteCount"/> falls outside of the bounds of the buffer content.</exception>
</member>
<member name="M:System.Reflection.Metadata.BlobWriter.WriteBytes(System.Byte,System.Int32)">
<exception cref="T:System.ArgumentOutOfRangeException"><paramref name="byteCount"/> is negative.</exception>
</member>
<member name="M:System.Reflection.Metadata.BlobWriter.WriteBytes(System.Byte*,System.Int32)">
<exception cref="T:System.ArgumentNullException"><paramref name="buffer"/> is null.</exception>
<exception cref="T:System.ArgumentOutOfRangeException"><paramref name="byteCount"/> is negative.</exception>
</member>
<member name="M:System.Reflection.Metadata.BlobWriter.WriteBytes(System.Reflection.Metadata.BlobBuilder)">
<exception cref="T:System.ArgumentNullException"><paramref name="source"/> is null.</exception>
</member>
<member name="M:System.Reflection.Metadata.BlobWriter.WriteBytes(System.IO.Stream,System.Int32)">
<exception cref="T:System.ArgumentNullException"><paramref name="source"/> is null.</exception>
<exception cref="T:System.ArgumentOutOfRangeException"><paramref name="byteCount"/> is negative.</exception>
</member>
<member name="M:System.Reflection.Metadata.BlobWriter.WriteBytes(System.Collections.Immutable.ImmutableArray{System.Byte})">
<exception cref="T:System.ArgumentNullException"><paramref name="buffer"/> is null.</exception>
</member>
<member name="M:System.Reflection.Metadata.BlobWriter.WriteBytes(System.Collections.Immutable.ImmutableArray{System.Byte},System.Int32,System.Int32)">
<exception cref="T:System.ArgumentNullException"><paramref name="buffer"/> is null.</exception>
<exception cref="T:System.ArgumentOutOfRangeException">Range specified by <paramref name="start"/> and <paramref name="byteCount"/> falls outside of the bounds of the <paramref name="buffer"/>.</exception>
</member>
<member name="M:System.Reflection.Metadata.BlobWriter.WriteBytes(System.Byte[])">
<exception cref="T:System.ArgumentNullException"><paramref name="buffer"/> is null.</exception>
</member>
<member name="M:System.Reflection.Metadata.BlobWriter.WriteBytes(System.Byte[],System.Int32,System.Int32)">
<exception cref="T:System.ArgumentNullException"><paramref name="buffer"/> is null.</exception>
<exception cref="T:System.ArgumentOutOfRangeException">Range specified by <paramref name="start"/> and <paramref name="byteCount"/> falls outside of the bounds of the <paramref name="buffer"/>.</exception>
</member>
<member name="M:System.Reflection.Metadata.BlobWriter.WriteReference(System.Int32,System.Boolean)">
<summary>
Writes a reference to a heap (heap offset) or a table (row number).
</summary>
<param name="reference">Heap offset or table row number.</param>
<param name="isSmall">True to encode the reference as 16-bit integer, false to encode as 32-bit integer.</param>
</member>
<member name="M:System.Reflection.Metadata.BlobWriter.WriteUTF16(System.Char[])">
<summary>
Writes UTF16 (little-endian) encoded string at the current position.
</summary>
<exception cref="T:System.ArgumentNullException"><paramref name="value"/> is null.</exception>
</member>
<member name="M:System.Reflection.Metadata.BlobWriter.WriteUTF16(System.String)">
<summary>
Writes UTF16 (little-endian) encoded string at the current position.
</summary>
<exception cref="T:System.ArgumentNullException"><paramref name="value"/> is null.</exception>
</member>
<member name="M:System.Reflection.Metadata.BlobWriter.WriteSerializedString(System.String)">
<summary>
Writes string in SerString format (see ECMA-335-II 23.3 Custom attributes).
</summary>
<remarks>
The string is UTF8 encoded and prefixed by the its size in bytes.
Null string is represented as a single byte 0xFF.
</remarks>
<exception cref="T:System.InvalidOperationException">Builder is not writable, it has been linked with another one.</exception>
</member>
<member name="M:System.Reflection.Metadata.BlobWriter.WriteUserString(System.String)">
<summary>
Writes string in User String (#US) heap format (see ECMA-335-II 24.2.4 #US and #Blob heaps):
</summary>
<remarks>
The string is UTF16 encoded and prefixed by the its size in bytes.
This final byte holds the value 1 if and only if any UTF16 character within the string has any bit set in its top byte,
or its low byte is any of the following: 0x01–0x08, 0x0E–0x1F, 0x27, 0x2D, 0x7F. Otherwise, it holds 0.
The 1 signifies Unicode characters that require handling beyond that normally provided for 8-bit encoding sets.
</remarks>
<exception cref="T:System.InvalidOperationException">Builder is not writable, it has been linked with another one.</exception>
</member>
<member name="M:System.Reflection.Metadata.BlobWriter.WriteUTF8(System.String,System.Boolean)">
<summary>
Writes UTF8 encoded string at the current position.
</summary>
<exception cref="T:System.ArgumentNullException"><paramref name="value"/> is null.</exception>
</member>
<member name="M:System.Reflection.Metadata.BlobWriter.WriteCompressedSignedInteger(System.Int32)">
<summary>
Implements compressed signed integer encoding as defined by ECMA-335-II chapter 23.2: Blobs and signatures.
</summary>
<remarks>
If the value lies between -64 (0xFFFFFFC0) and 63 (0x3F), inclusive, encode as a one-byte integer:
bit 7 clear, value bits 5 through 0 held in bits 6 through 1, sign bit (value bit 31) in bit 0.
If the value lies between -8192 (0xFFFFE000) and 8191 (0x1FFF), inclusive, encode as a two-byte integer:
15 set, bit 14 clear, value bits 12 through 0 held in bits 13 through 1, sign bit(value bit 31) in bit 0.
If the value lies between -268435456 (0xF000000) and 268435455 (0x0FFFFFFF), inclusive, encode as a four-byte integer:
31 set, 30 set, bit 29 clear, value bits 27 through 0 held in bits 28 through 1, sign bit(value bit 31) in bit 0.
</remarks>
<exception cref="T:System.ArgumentOutOfRangeException"><paramref name="value"/> can't be represented as a compressed signed integer.</exception>
</member>
<member name="M:System.Reflection.Metadata.BlobWriter.WriteCompressedInteger(System.Int32)">
<summary>
Implements compressed unsigned integer encoding as defined by ECMA-335-II chapter 23.2: Blobs and signatures.
</summary>
<remarks>
If the value lies between 0 (0x00) and 127 (0x7F), inclusive,
encode as a one-byte integer (bit 7 is clear, value held in bits 6 through 0).
If the value lies between 28 (0x80) and 214 – 1 (0x3FFF), inclusive,
encode as a 2-byte integer with bit 15 set, bit 14 clear(value held in bits 13 through 0).
Otherwise, encode as a 4-byte integer, with bit 31 set, bit 30 set, bit 29 clear (value held in bits 28 through 0).
</remarks>
<exception cref="T:System.ArgumentOutOfRangeException"><paramref name="value"/> can't be represented as a compressed signed integer.</exception>
</member>
<member name="M:System.Reflection.Metadata.BlobWriter.WriteConstant(System.Object)">
<summary>
Writes a constant value (see ECMA-335 Partition II section 22.9) at the current position.
</summary>
<exception cref="T:System.ArgumentException"><paramref name="value"/> is not of a constant type.</exception>
</member>
<member name="M:System.Reflection.Metadata.BlobBuilder.GetBlobs">
<summary>
Returns a sequence of all blobs that represent the content of the builder.
</summary>
<exception cref="T:System.InvalidOperationException">Content is not available, the builder has been linked with another one.</exception>
</member>
<member name="M:System.Reflection.Metadata.BlobBuilder.ContentEquals(System.Reflection.Metadata.BlobBuilder)">
<summary>
Compares the current content of this writer with another one.
</summary>
<exception cref="T:System.InvalidOperationException">Content is not available, the builder has been linked with another one.</exception>
</member>
<member name="M:System.Reflection.Metadata.BlobBuilder.ToArray">
<exception cref="T:System.InvalidOperationException">Content is not available, the builder has been linked with another one.</exception>
</member>
<member name="M:System.Reflection.Metadata.BlobBuilder.ToArray(System.Int32,System.Int32)">
<exception cref="T:System.ArgumentOutOfRangeException">Range specified by <paramref name="start"/> and <paramref name="byteCount"/> falls outside of the bounds of the buffer content.</exception>
<exception cref="T:System.InvalidOperationException">Content is not available, the builder has been linked with another one.</exception>
</member>
<member name="M:System.Reflection.Metadata.BlobBuilder.ToImmutableArray">
<exception cref="T:System.InvalidOperationException">Content is not available, the builder has been linked with another one.</exception>
</member>
<member name="M:System.Reflection.Metadata.BlobBuilder.ToImmutableArray(System.Int32,System.Int32)">
<exception cref="T:System.ArgumentOutOfRangeException">Range specified by <paramref name="start"/> and <paramref name="byteCount"/> falls outside of the bounds of the buffer content.</exception>
<exception cref="T:System.InvalidOperationException">Content is not available, the builder has been linked with another one.</exception>
</member>
<member name="M:System.Reflection.Metadata.BlobBuilder.WriteContentTo(System.IO.Stream)">
<exception cref="T:System.ArgumentNullException"><paramref name="destination"/> is null.</exception>
<exception cref="T:System.InvalidOperationException">Content is not available, the builder has been linked with another one.</exception>
</member>
<member name="M:System.Reflection.Metadata.BlobBuilder.WriteContentTo(System.Reflection.Metadata.BlobWriter@)">
<exception cref="T:System.ArgumentNullException"><paramref name="destination"/> is default(<see cref="T:System.Reflection.Metadata.BlobWriter"/>).</exception>
<exception cref="T:System.InvalidOperationException">Content is not available, the builder has been linked with another one.</exception>
</member>
<member name="M:System.Reflection.Metadata.BlobBuilder.WriteContentTo(System.Reflection.Metadata.BlobBuilder)">
<exception cref="T:System.ArgumentNullException"><paramref name="destination"/> is null.</exception>
<exception cref="T:System.InvalidOperationException">Content is not available, the builder has been linked with another one.</exception>
</member>
<member name="M:System.Reflection.Metadata.BlobBuilder.LinkPrefix(System.Reflection.Metadata.BlobBuilder)">
<exception cref="T:System.ArgumentNullException"><paramref name="prefix"/> is null.</exception>
<exception cref="T:System.InvalidOperationException">Builder is not writable, it has been linked with another one.</exception>
</member>
<member name="M:System.Reflection.Metadata.BlobBuilder.LinkSuffix(System.Reflection.Metadata.BlobBuilder)">
<exception cref="T:System.ArgumentNullException"><paramref name="suffix"/> is null.</exception>
<exception cref="T:System.InvalidOperationException">Builder is not writable, it has been linked with another one.</exception>
</member>
<member name="M:System.Reflection.Metadata.BlobBuilder.ReserveBytes(System.Int32)">
<summary>
Reserves a contiguous block of bytes.
</summary>
<exception cref="T:System.ArgumentOutOfRangeException"><paramref name="byteCount"/> is negative.</exception>
<exception cref="T:System.InvalidOperationException">Builder is not writable, it has been linked with another one.</exception>
</member>
<member name="M:System.Reflection.Metadata.BlobBuilder.WriteBytes(System.Byte,System.Int32)">
<exception cref="T:System.ArgumentOutOfRangeException"><paramref name="byteCount"/> is negative.</exception>
<exception cref="T:System.InvalidOperationException">Builder is not writable, it has been linked with another one.</exception>
</member>
<member name="M:System.Reflection.Metadata.BlobBuilder.WriteBytes(System.Byte*,System.Int32)">
<exception cref="T:System.ArgumentNullException"><paramref name="buffer"/> is null.</exception>
<exception cref="T:System.ArgumentOutOfRangeException"><paramref name="byteCount"/> is negative.</exception>
<exception cref="T:System.InvalidOperationException">Builder is not writable, it has been linked with another one.</exception>
</member>
<member name="M:System.Reflection.Metadata.BlobBuilder.TryWriteBytes(System.IO.Stream,System.Int32)">
<exception cref="T:System.ArgumentNullException"><paramref name="source"/> is null.</exception>
<exception cref="T:System.ArgumentOutOfRangeException"><paramref name="byteCount"/> is negative.</exception>
<exception cref="T:System.InvalidOperationException">Builder is not writable, it has been linked with another one.</exception>
<returns>Bytes successfully written from the <paramref name="source" />.</returns>
</member>
<member name="M:System.Reflection.Metadata.BlobBuilder.WriteBytes(System.Collections.Immutable.ImmutableArray{System.Byte})">
<exception cref="T:System.ArgumentNullException"><paramref name="buffer"/> is null.</exception>
<exception cref="T:System.InvalidOperationException">Builder is not writable, it has been linked with another one.</exception>
</member>
<member name="M:System.Reflection.Metadata.BlobBuilder.WriteBytes(System.Collections.Immutable.ImmutableArray{System.Byte},System.Int32,System.Int32)">
<exception cref="T:System.ArgumentNullException"><paramref name="buffer"/> is null.</exception>
<exception cref="T:System.ArgumentOutOfRangeException">Range specified by <paramref name="start"/> and <paramref name="byteCount"/> falls outside of the bounds of the <paramref name="buffer"/>.</exception>
<exception cref="T:System.InvalidOperationException">Builder is not writable, it has been linked with another one.</exception>
</member>
<member name="M:System.Reflection.Metadata.BlobBuilder.WriteBytes(System.Byte[])">
<exception cref="T:System.ArgumentNullException"><paramref name="buffer"/> is null.</exception>
<exception cref="T:System.InvalidOperationException">Builder is not writable, it has been linked with another one.</exception>
</member>
<member name="M:System.Reflection.Metadata.BlobBuilder.WriteBytes(System.Byte[],System.Int32,System.Int32)">
<exception cref="T:System.ArgumentNullException"><paramref name="buffer"/> is null.</exception>
<exception cref="T:System.ArgumentOutOfRangeException">Range specified by <paramref name="start"/> and <paramref name="byteCount"/> falls outside of the bounds of the <paramref name="buffer"/>.</exception>
<exception cref="T:System.InvalidOperationException">Builder is not writable, it has been linked with another one.</exception>
</member>
<member name="M:System.Reflection.Metadata.BlobBuilder.PadTo(System.Int32)">
<exception cref="T:System.InvalidOperationException">Builder is not writable, it has been linked with another one.</exception>
</member>
<member name="M:System.Reflection.Metadata.BlobBuilder.Align(System.Int32)">
<exception cref="T:System.InvalidOperationException">Builder is not writable, it has been linked with another one.</exception>
</member>
<member name="M:System.Reflection.Metadata.BlobBuilder.WriteBoolean(System.Boolean)">
<exception cref="T:System.InvalidOperationException">Builder is not writable, it has been linked with another one.</exception>
</member>
<member name="M:System.Reflection.Metadata.BlobBuilder.WriteByte(System.Byte)">
<exception cref="T:System.InvalidOperationException">Builder is not writable, it has been linked with another one.</exception>
</member>
<member name="M:System.Reflection.Metadata.BlobBuilder.WriteSByte(System.SByte)">
<exception cref="T:System.InvalidOperationException">Builder is not writable, it has been linked with another one.</exception>
</member>
<member name="M:System.Reflection.Metadata.BlobBuilder.WriteDouble(System.Double)">
<exception cref="T:System.InvalidOperationException">Builder is not writable, it has been linked with another one.</exception>
</member>
<member name="M:System.Reflection.Metadata.BlobBuilder.WriteSingle(System.Single)">
<exception cref="T:System.InvalidOperationException">Builder is not writable, it has been linked with another one.</exception>
</member>
<member name="M:System.Reflection.Metadata.BlobBuilder.WriteInt16(System.Int16)">
<exception cref="T:System.InvalidOperationException">Builder is not writable, it has been linked with another one.</exception>
</member>
<member name="M:System.Reflection.Metadata.BlobBuilder.WriteUInt16(System.UInt16)">
<exception cref="T:System.InvalidOperationException">Builder is not writable, it has been linked with another one.</exception>
</member>
<member name="M:System.Reflection.Metadata.BlobBuilder.WriteInt16BE(System.Int16)">
<exception cref="T:System.InvalidOperationException">Builder is not writable, it has been linked with another one.</exception>
</member>
<member name="M:System.Reflection.Metadata.BlobBuilder.WriteUInt16BE(System.UInt16)">
<exception cref="T:System.InvalidOperationException">Builder is not writable, it has been linked with another one.</exception>
</member>
<member name="M:System.Reflection.Metadata.BlobBuilder.WriteInt32BE(System.Int32)">
<exception cref="T:System.InvalidOperationException">Builder is not writable, it has been linked with another one.</exception>
</member>
<member name="M:System.Reflection.Metadata.BlobBuilder.WriteUInt32BE(System.UInt32)">
<exception cref="T:System.InvalidOperationException">Builder is not writable, it has been linked with another one.</exception>
</member>
<member name="M:System.Reflection.Metadata.BlobBuilder.WriteInt32(System.Int32)">
<exception cref="T:System.InvalidOperationException">Builder is not writable, it has been linked with another one.</exception>
</member>
<member name="M:System.Reflection.Metadata.BlobBuilder.WriteUInt32(System.UInt32)">
<exception cref="T:System.InvalidOperationException">Builder is not writable, it has been linked with another one.</exception>
</member>
<member name="M:System.Reflection.Metadata.BlobBuilder.WriteInt64(System.Int64)">
<exception cref="T:System.InvalidOperationException">Builder is not writable, it has been linked with another one.</exception>
</member>
<member name="M:System.Reflection.Metadata.BlobBuilder.WriteUInt64(System.UInt64)">
<exception cref="T:System.InvalidOperationException">Builder is not writable, it has been linked with another one.</exception>
</member>
<member name="M:System.Reflection.Metadata.BlobBuilder.WriteDecimal(System.Decimal)">
<exception cref="T:System.InvalidOperationException">Builder is not writable, it has been linked with another one.</exception>
</member>
<member name="M:System.Reflection.Metadata.BlobBuilder.WriteGuid(System.Guid)">
<exception cref="T:System.InvalidOperationException">Builder is not writable, it has been linked with another one.</exception>
</member>
<member name="M:System.Reflection.Metadata.BlobBuilder.WriteDateTime(System.DateTime)">
<exception cref="T:System.InvalidOperationException">Builder is not writable, it has been linked with another one.</exception>
</member>
<member name="M:System.Reflection.Metadata.BlobBuilder.WriteReference(System.Int32,System.Boolean)">
<summary>
Writes a reference to a heap (heap offset) or a table (row number).
</summary>
<param name="reference">Heap offset or table row number.</param>
<param name="isSmall">True to encode the reference as 16-bit integer, false to encode as 32-bit integer.</param>
<exception cref="T:System.InvalidOperationException">Builder is not writable, it has been linked with another one.</exception>
</member>
<member name="M:System.Reflection.Metadata.BlobBuilder.WriteUTF16(System.Char[])">
<summary>
Writes UTF16 (little-endian) encoded string at the current position.
</summary>
<exception cref="T:System.ArgumentNullException"><paramref name="value"/> is null.</exception>
<exception cref="T:System.InvalidOperationException">Builder is not writable, it has been linked with another one.</exception>
</member>
<member name="M:System.Reflection.Metadata.BlobBuilder.WriteUTF16(System.String)">
<summary>
Writes UTF16 (little-endian) encoded string at the current position.
</summary>
<exception cref="T:System.ArgumentNullException"><paramref name="value"/> is null.</exception>
<exception cref="T:System.InvalidOperationException">Builder is not writable, it has been linked with another one.</exception>
</member>
<member name="M:System.Reflection.Metadata.BlobBuilder.WriteSerializedString(System.String)">
<summary>
Writes string in SerString format (see ECMA-335-II 23.3 Custom attributes).
</summary>
<remarks>
The string is UTF8 encoded and prefixed by the its size in bytes.
Null string is represented as a single byte 0xFF.
</remarks>
<exception cref="T:System.InvalidOperationException">Builder is not writable, it has been linked with another one.</exception>
</member>
<member name="M:System.Reflection.Metadata.BlobBuilder.WriteUserString(System.String)">
<summary>
Writes string in User String (#US) heap format (see ECMA-335-II 24.2.4 #US and #Blob heaps):
</summary>
<remarks>
The string is UTF16 encoded and prefixed by the its size in bytes.
This final byte holds the value 1 if and only if any UTF16 character within the string has any bit set in its top byte,
or its low byte is any of the following: 0x01–0x08, 0x0E–0x1F, 0x27, 0x2D, 0x7F. Otherwise, it holds 0.
The 1 signifies Unicode characters that require handling beyond that normally provided for 8-bit encoding sets.
</remarks>
<exception cref="T:System.InvalidOperationException">Builder is not writable, it has been linked with another one.</exception>
</member>
<member name="M:System.Reflection.Metadata.BlobBuilder.WriteUTF8(System.String,System.Boolean)">
<summary>
Writes UTF8 encoded string at the current position.
</summary>
<param name="value">Constant value.</param>
<param name="allowUnpairedSurrogates">
True to encode unpaired surrogates as specified, otherwise replace them with U+FFFD character.
</param>
<exception cref="T:System.ArgumentNullException"><paramref name="value"/> is null.</exception>
<exception cref="T:System.InvalidOperationException">Builder is not writable, it has been linked with another one.</exception>
</member>
<member name="M:System.Reflection.Metadata.BlobBuilder.WriteCompressedSignedInteger(System.Int32)">
<summary>
Implements compressed signed integer encoding as defined by ECMA-335-II chapter 23.2: Blobs and signatures.
</summary>
<remarks>
If the value lies between -64 (0xFFFFFFC0) and 63 (0x3F), inclusive, encode as a one-byte integer:
bit 7 clear, value bits 5 through 0 held in bits 6 through 1, sign bit (value bit 31) in bit 0.
If the value lies between -8192 (0xFFFFE000) and 8191 (0x1FFF), inclusive, encode as a two-byte integer:
15 set, bit 14 clear, value bits 12 through 0 held in bits 13 through 1, sign bit(value bit 31) in bit 0.
If the value lies between -268435456 (0xF000000) and 268435455 (0x0FFFFFFF), inclusive, encode as a four-byte integer:
31 set, 30 set, bit 29 clear, value bits 27 through 0 held in bits 28 through 1, sign bit(value bit 31) in bit 0.
</remarks>
<exception cref="T:System.ArgumentOutOfRangeException"><paramref name="value"/> can't be represented as a compressed signed integer.</exception>
<exception cref="T:System.InvalidOperationException">Builder is not writable, it has been linked with another one.</exception>
</member>
<member name="M:System.Reflection.Metadata.BlobBuilder.WriteCompressedInteger(System.Int32)">
<summary>
Implements compressed unsigned integer encoding as defined by ECMA-335-II chapter 23.2: Blobs and signatures.
</summary>
<remarks>
If the value lies between 0 (0x00) and 127 (0x7F), inclusive,
encode as a one-byte integer (bit 7 is clear, value held in bits 6 through 0).
If the value lies between 28 (0x80) and 214 – 1 (0x3FFF), inclusive,
encode as a 2-byte integer with bit 15 set, bit 14 clear (value held in bits 13 through 0).
Otherwise, encode as a 4-byte integer, with bit 31 set, bit 30 set, bit 29 clear (value held in bits 28 through 0).
</remarks>
<exception cref="T:System.ArgumentOutOfRangeException"><paramref name="value"/> can't be represented as a compressed integer.</exception>
<exception cref="T:System.InvalidOperationException">Builder is not writable, it has been linked with another one.</exception>
</member>
<member name="M:System.Reflection.Metadata.BlobBuilder.WriteConstant(System.Object)">
<summary>
Writes a constant value (see ECMA-335 Partition II section 22.9) at the current position.
</summary>
<exception cref="T:System.ArgumentException"><paramref name="value"/> is not of a constant type.</exception>
<exception cref="T:System.InvalidOperationException">Builder is not writable, it has been linked with another one.</exception>
</member>
<member name="M:System.Reflection.Metadata.ICustomAttributeTypeProvider`1.GetSystemType">
<summary>
Gets the TType representation for <see cref="T:System.Type"/>.
</summary>
</member>
<member name="M:System.Reflection.Metadata.ICustomAttributeTypeProvider`1.IsSystemType(`0)">
<summary>
Returns true if the given type represents <see cref="T:System.Type"/>.
</summary>
</member>
<member name="M:System.Reflection.Metadata.ICustomAttributeTypeProvider`1.GetTypeFromSerializedName(System.String)">
<summary>
Get the type symbol for the given serialized type name.
The serialized type name is in so-called "reflection notation" (i.e. as understood by <see cref="M:System.Type.GetType(System.String)"/>.)
</summary>
<exception cref="T:System.BadImageFormatException">The name is malformed.</exception>
</member>
<member name="M:System.Reflection.Metadata.ICustomAttributeTypeProvider`1.GetUnderlyingEnumType(`0)">
<summary>
Gets the underlying type of the given enum type symbol.
</summary>
<exception cref="T:System.BadImageFormatException">The given type symbol does not represent an enum.</exception>
</member>
<member name="M:System.Reflection.Metadata.ILOpCodeExtensions.IsBranch(System.Reflection.Metadata.ILOpCode)">
<summary>
Returns true of the specified op-code is a branch to a label.
</summary>
</member>
<member name="M:System.Reflection.Metadata.ILOpCodeExtensions.GetBranchOperandSize(System.Reflection.Metadata.ILOpCode)">
<summary>
Calculate the size of the specified branch instruction operand.
</summary>
<param name="opCode">Branch op-code.</param>
<returns>1 if <paramref name="opCode"/> is a short branch or 4 if it is a long branch.</returns>
<exception cref="T:System.ArgumentException">Specified <paramref name="opCode"/> is not a branch op-code.</exception>
</member>
<member name="M:System.Reflection.Metadata.ILOpCodeExtensions.GetShortBranch(System.Reflection.Metadata.ILOpCode)">
<summary>
Get a short form of the specified branch op-code.
</summary>
<param name="opCode">Branch op-code.</param>
<returns>Short form of the branch op-code.</returns>
<exception cref="T:System.ArgumentException">Specified <paramref name="opCode"/> is not a branch op-code.</exception>
</member>
<member name="M:System.Reflection.Metadata.ILOpCodeExtensions.GetLongBranch(System.Reflection.Metadata.ILOpCode)">
<summary>
Get a long form of the specified branch op-code.
</summary>
<param name="opCode">Branch op-code.</param>
<returns>Long form of the branch op-code.</returns>
<exception cref="T:System.ArgumentException">Specified <paramref name="opCode"/> is not a branch op-code.</exception>
</member>
<member name="F:System.Reflection.Metadata.MetadataStreamOptions.Default">
<summary>
By default the stream is disposed when <see cref="T:System.Reflection.Metadata.MetadataReaderProvider"/> is disposed and sections of the PE image are read lazily.
</summary>
</member>
<member name="F:System.Reflection.Metadata.MetadataStreamOptions.LeaveOpen">
<summary>
Keep the stream open when the <see cref="T:System.Reflection.Metadata.MetadataReaderProvider"/> is disposed.
</summary>
</member>
<member name="F:System.Reflection.Metadata.MetadataStreamOptions.PrefetchMetadata">
<summary>
Reads PDB metadata into memory right away.
</summary>
<remarks>
The underlying file may be closed and even deleted after <see cref="T:System.Reflection.Metadata.MetadataReaderProvider"/> is constructed.
<see cref="T:System.Reflection.Metadata.MetadataReaderProvider"/> closes the stream automatically by the time the constructor returns unless <see cref="F:System.Reflection.Metadata.MetadataStreamOptions.LeaveOpen"/> is specified.
</remarks>
</member>
<member name="T:System.Reflection.Metadata.MetadataReaderProvider">
<summary>
Provides a <see cref="T:System.Reflection.Metadata.MetadataReader"/> metadata stored in an array of bytes, a memory block, or a stream.
</summary>
<remarks>
Supported formats:
- ECMA-335 CLI (Common Language Infrastructure) metadata (<see cref="M:System.Reflection.Metadata.MetadataReaderProvider.FromMetadataImage(System.Byte*,System.Int32)"/>)
- Edit and Continue metadata delta (<see cref="M:System.Reflection.Metadata.MetadataReaderProvider.FromMetadataImage(System.Byte*,System.Int32)"/>)
- Portable PDB metadata (<see cref="M:System.Reflection.Metadata.MetadataReaderProvider.FromPortablePdbImage(System.Byte*,System.Int32)"/>)
</remarks>
</member>
<member name="M:System.Reflection.Metadata.MetadataReaderProvider.FromPortablePdbImage(System.Byte*,System.Int32)">
<summary>
Creates a Portable PDB metadata provider over a blob stored in memory.
</summary>
<param name="start">Pointer to the start of the Portable PDB blob.</param>
<param name="size">The size of the Portable PDB blob.</param>
<exception cref="T:System.ArgumentNullException"><paramref name="start"/> is <see cref="F:System.IntPtr.Zero"/>.</exception>
<exception cref="T:System.ArgumentOutOfRangeException"><paramref name="size"/> is negative.</exception>
<remarks>
The memory is owned by the caller and not released on disposal of the <see cref="T:System.Reflection.Metadata.MetadataReaderProvider"/>.
The caller is responsible for keeping the memory alive and unmodified throughout the lifetime of the <see cref="T:System.Reflection.Metadata.MetadataReaderProvider"/>.
The content of the blob is not read during the construction of the <see cref="T:System.Reflection.Metadata.MetadataReaderProvider"/>
</remarks>
</member>
<member name="M:System.Reflection.Metadata.MetadataReaderProvider.FromMetadataImage(System.Byte*,System.Int32)">
<summary>
Creates a metadata provider over an image stored in memory.
</summary>
<param name="start">Pointer to the start of the metadata blob.</param>
<param name="size">The size of the metadata blob.</param>
<exception cref="T:System.ArgumentNullException"><paramref name="start"/> is <see cref="F:System.IntPtr.Zero"/>.</exception>
<exception cref="T:System.ArgumentOutOfRangeException"><paramref name="size"/> is negative.</exception>
<remarks>
The memory is owned by the caller and not released on disposal of the <see cref="T:System.Reflection.Metadata.MetadataReaderProvider"/>.
The caller is responsible for keeping the memory alive and unmodified throughout the lifetime of the <see cref="T:System.Reflection.Metadata.MetadataReaderProvider"/>.
The content of the blob is not read during the construction of the <see cref="T:System.Reflection.Metadata.MetadataReaderProvider"/>
</remarks>
</member>
<member name="M:System.Reflection.Metadata.MetadataReaderProvider.FromPortablePdbImage(System.Collections.Immutable.ImmutableArray{System.Byte})">
<summary>
Creates a Portable PDB metadata provider over a byte array.
</summary>
<param name="image">Portable PDB image.</param>
<remarks>
The content of the image is not read during the construction of the <see cref="T:System.Reflection.Metadata.MetadataReaderProvider"/>
</remarks>
<exception cref="T:System.ArgumentNullException"><paramref name="image"/> is null.</exception>
</member>
<member name="M:System.Reflection.Metadata.MetadataReaderProvider.FromMetadataImage(System.Collections.Immutable.ImmutableArray{System.Byte})">
<summary>
Creates a provider over a byte array.
</summary>
<param name="image">Metadata image.</param>
<remarks>
The content of the image is not read during the construction of the <see cref="T:System.Reflection.Metadata.MetadataReaderProvider"/>
</remarks>
<exception cref="T:System.ArgumentNullException"><paramref name="image"/> is null.</exception>
</member>
<member name="M:System.Reflection.Metadata.MetadataReaderProvider.FromPortablePdbStream(System.IO.Stream,System.Reflection.Metadata.MetadataStreamOptions,System.Int32)">
<summary>
Creates a provider for a stream of the specified size beginning at its current position.
</summary>
<param name="stream">Stream.</param>
<param name="size">Size of the metadata blob in the stream. If not specified the metadata blob is assumed to span to the end of the stream.</param>
<param name="options">
Options specifying how sections of the image are read from the stream.
Unless <see cref="F:System.Reflection.Metadata.MetadataStreamOptions.LeaveOpen"/> is specified, ownership of the stream is transferred to the <see cref="T:System.Reflection.Metadata.MetadataReaderProvider"/>
upon successful argument validation. It will be disposed by the <see cref="T:System.Reflection.Metadata.MetadataReaderProvider"/> and the caller must not manipulate it.
Unless <see cref="F:System.Reflection.Metadata.MetadataStreamOptions.PrefetchMetadata"/> is specified no data
is read from the stream during the construction of the <see cref="T:System.Reflection.Metadata.MetadataReaderProvider"/>. Furthermore, the stream must not be manipulated
by caller while the <see cref="T:System.Reflection.Metadata.MetadataReaderProvider"/> is alive and undisposed.
If <see cref="F:System.Reflection.Metadata.MetadataStreamOptions.PrefetchMetadata"/>, the <see cref="T:System.Reflection.Metadata.MetadataReaderProvider"/>
will have read all of the data requested during construction. As such, if <see cref="F:System.Reflection.Metadata.MetadataStreamOptions.LeaveOpen"/> is also
specified, the caller retains full ownership of the stream and is assured that it will not be manipulated by the <see cref="T:System.Reflection.Metadata.MetadataReaderProvider"/>
after construction.
</param>
<exception cref="T:System.ArgumentOutOfRangeException">Size is negative or extends past the end of the stream.</exception>
</member>
<member name="M:System.Reflection.Metadata.MetadataReaderProvider.FromMetadataStream(System.IO.Stream,System.Reflection.Metadata.MetadataStreamOptions,System.Int32)">
<summary>
Creates a provider for a stream of the specified size beginning at its current position.
</summary>
<param name="stream">Stream.</param>
<param name="size">Size of the metadata blob in the stream. If not specified the metadata blob is assumed to span to the end of the stream.</param>
<param name="options">
Options specifying how sections of the image are read from the stream.
Unless <see cref="F:System.Reflection.Metadata.MetadataStreamOptions.LeaveOpen"/> is specified, ownership of the stream is transferred to the <see cref="T:System.Reflection.Metadata.MetadataReaderProvider"/>
upon successful argument validation. It will be disposed by the <see cref="T:System.Reflection.Metadata.MetadataReaderProvider"/> and the caller must not manipulate it.
Unless <see cref="F:System.Reflection.Metadata.MetadataStreamOptions.PrefetchMetadata"/> is specified no data
is read from the stream during the construction of the <see cref="T:System.Reflection.Metadata.MetadataReaderProvider"/>. Furthermore, the stream must not be manipulated
by caller while the <see cref="T:System.Reflection.Metadata.MetadataReaderProvider"/> is alive and undisposed.
If <see cref="F:System.Reflection.Metadata.MetadataStreamOptions.PrefetchMetadata"/>, the <see cref="T:System.Reflection.Metadata.MetadataReaderProvider"/>
will have read all of the data requested during construction. As such, if <see cref="F:System.Reflection.Metadata.MetadataStreamOptions.LeaveOpen"/> is also
specified, the caller retains full ownership of the stream and is assured that it will not be manipulated by the <see cref="T:System.Reflection.Metadata.MetadataReaderProvider"/>
after construction.
</param>
<exception cref="T:System.ArgumentOutOfRangeException">Size is negative or extends past the end of the stream.</exception>
</member>
<member name="M:System.Reflection.Metadata.MetadataReaderProvider.Dispose">
<summary>
Disposes all memory allocated by the reader.
</summary>
<remarks>
<see cref="M:System.Reflection.Metadata.MetadataReaderProvider.Dispose"/> can be called multiple times (but not in parallel).
It is not safe to call <see cref="M:System.Reflection.Metadata.MetadataReaderProvider.Dispose"/> in parallel with any other operation on the <see cref="T:System.Reflection.Metadata.MetadataReaderProvider"/>
or reading from the underlying memory.
</remarks>
</member>
<member name="M:System.Reflection.Metadata.MetadataReaderProvider.GetMetadataReader(System.Reflection.Metadata.MetadataReaderOptions,System.Reflection.Metadata.MetadataStringDecoder)">
<summary>
Gets a <see cref="T:System.Reflection.Metadata.MetadataReader"/> from a <see cref="T:System.Reflection.Metadata.MetadataReaderProvider"/>.
</summary>
<remarks>
The caller must keep the <see cref="T:System.Reflection.Metadata.MetadataReaderProvider"/> alive and undisposed throughout the lifetime of the metadata reader.
</remarks>
<exception cref="T:System.ArgumentException">The encoding of <paramref name="utf8Decoder"/> is not <see cref="T:System.Text.UTF8Encoding"/>.</exception>
<exception cref="T:System.PlatformNotSupportedException">The current platform is big-endian.</exception>
</member>
<member name="T:System.Reflection.Metadata.PrimitiveSerializationTypeCode">
<summary>
Type codes used to encode types of primitive values in Custom Attribute value blob.
</summary>
</member>
<member name="M:System.Reflection.Metadata.MethodDefinitionHandle.ToDebugInformationHandle">
<summary>
Returns a handle to <see cref="T:System.Reflection.Metadata.MethodDebugInformation"/> corresponding to this handle.
</summary>
<remarks>
The resulting handle is only valid within the context of a <see cref="T:System.Reflection.Metadata.MetadataReader"/> open on the Portable PDB blob,
which in case of standalone PDB file is a different reader than the one containing this method definition.
</remarks>
</member>
<member name="T:System.Reflection.Metadata.UserStringHandle">
<summary>
#UserString heap handle.
</summary>
<remarks>
The handle is 32-bit wide.
</remarks>
</member>
<member name="T:System.Reflection.Metadata.NamespaceDefinitionHandle">
<summary>
A handle that represents a namespace definition.
</summary>
</member>
<member name="P:System.Reflection.Metadata.AssemblyFile.ContainsMetadata">
<summary>
True if the file contains metadata.
</summary>
<remarks>
Corresponds to Flags field of File table in ECMA-335 Standard.
</remarks>
</member>
<member name="P:System.Reflection.Metadata.AssemblyFile.Name">
<summary>
File name with extension.
</summary>
<remarks>
Corresponds to Name field of File table in ECMA-335 Standard.
</remarks>
</member>
<member name="P:System.Reflection.Metadata.AssemblyFile.HashValue">
<summary>
Hash value of the file content calculated using <see cref="P:System.Reflection.Metadata.AssemblyDefinition.HashAlgorithm"/>.
</summary>
<remarks>
Corresponds to HashValue field of File table in ECMA-335 Standard.
</remarks>
</member>
<member name="F:System.Reflection.Metadata.BlobReader.s_nullCharArray">
<summary>An array containing the '\0' character.</summary>
</member>
<member name="M:System.Reflection.Metadata.BlobReader.ReadDecimal">
<summary>
Reads <see cref="T:System.Decimal"/> number.
</summary>
<remarks>
Decimal number is encoded in 13 bytes as follows:
- byte 0: highest bit indicates sign (1 for negative, 0 for non-negative); the remaining 7 bits encode scale
- bytes 1..12: 96-bit unsigned integer in little endian encoding.
</remarks>
<exception cref="T:System.BadImageFormatException">The data at the current position was not a valid <see cref="T:System.Decimal"/> number.</exception>
</member>
<member name="M:System.Reflection.Metadata.BlobReader.ReadUTF8(System.Int32)">
<summary>
Reads UTF8 encoded string starting at the current position.
</summary>
<param name="byteCount">The number of bytes to read.</param>
<returns>The string.</returns>
<exception cref="T:System.BadImageFormatException"><paramref name="byteCount"/> bytes not available.</exception>
</member>
<member name="M:System.Reflection.Metadata.BlobReader.ReadUTF16(System.Int32)">
<summary>
Reads UTF16 (little-endian) encoded string starting at the current position.
</summary>
<param name="byteCount">The number of bytes to read.</param>
<returns>The string.</returns>
<exception cref="T:System.BadImageFormatException"><paramref name="byteCount"/> bytes not available.</exception>
</member>
<member name="M:System.Reflection.Metadata.BlobReader.ReadBytes(System.Int32)">
<summary>
Reads bytes starting at the current position.
</summary>
<param name="byteCount">The number of bytes to read.</param>
<returns>The byte array.</returns>
<exception cref="T:System.BadImageFormatException"><paramref name="byteCount"/> bytes not available.</exception>
</member>
<member name="M:System.Reflection.Metadata.BlobReader.TryReadCompressedInteger(System.Int32@)">
<summary>
Reads an unsigned compressed integer value.
See Metadata Specification section II.23.2: Blobs and signatures.
</summary>
<param name="value">The value of the compressed integer that was read.</param>
<returns>true if the value was read successfully. false if the data at the current position was not a valid compressed integer.</returns>
</member>
<member name="M:System.Reflection.Metadata.BlobReader.ReadCompressedInteger">
<summary>
Reads an unsigned compressed integer value.
See Metadata Specification section II.23.2: Blobs and signatures.
</summary>
<returns>The value of the compressed integer that was read.</returns>
<exception cref="T:System.BadImageFormatException">The data at the current position was not a valid compressed integer.</exception>
</member>
<member name="M:System.Reflection.Metadata.BlobReader.TryReadCompressedSignedInteger(System.Int32@)">
<summary>
Reads a signed compressed integer value.
See Metadata Specification section II.23.2: Blobs and signatures.
</summary>
<param name="value">The value of the compressed integer that was read.</param>
<returns>true if the value was read successfully. false if the data at the current position was not a valid compressed integer.</returns>
</member>
<member name="M:System.Reflection.Metadata.BlobReader.ReadCompressedSignedInteger">
<summary>
Reads a signed compressed integer value.
See Metadata Specification section II.23.2: Blobs and signatures.
</summary>
<returns>The value of the compressed integer that was read.</returns>
<exception cref="T:System.BadImageFormatException">The data at the current position was not a valid compressed integer.</exception>
</member>
<member name="M:System.Reflection.Metadata.BlobReader.ReadSerializationTypeCode">
<summary>
Reads type code encoded in a serialized custom attribute value.
</summary>
<returns><see cref="F:System.Reflection.Metadata.SerializationTypeCode.Invalid"/> if the encoding is invalid.</returns>
</member>
<member name="M:System.Reflection.Metadata.BlobReader.ReadSignatureTypeCode">
<summary>
Reads type code encoded in a signature.
</summary>
<returns><see cref="F:System.Reflection.Metadata.SignatureTypeCode.Invalid"/> if the encoding is invalid.</returns>
</member>
<member name="M:System.Reflection.Metadata.BlobReader.ReadSerializedString">
<summary>
Reads a string encoded as a compressed integer containing its length followed by
its contents in UTF8. Null strings are encoded as a single 0xFF byte.
</summary>
<remarks>Defined as a 'SerString' in the ECMA CLI specification.</remarks>
<returns>String value or null.</returns>
<exception cref="T:System.BadImageFormatException">If the encoding is invalid.</exception>
</member>
<member name="M:System.Reflection.Metadata.BlobReader.ReadTypeHandle">
<summary>
Reads a type handle encoded in a signature as TypeDefOrRefOrSpecEncoded (see ECMA-335 II.23.2.8).
</summary>
<returns>The handle or nil if the encoding is invalid.</returns>
</member>
<member name="M:System.Reflection.Metadata.BlobReader.ReadBlobHandle">
<summary>
Reads a #Blob heap handle encoded as a compressed integer.
</summary>
<remarks>
Blobs that contain references to other blobs are used in Portable PDB format, for example <see cref="P:System.Reflection.Metadata.Document.Name"/>.
</remarks>
</member>
<member name="M:System.Reflection.Metadata.BlobReader.ReadConstant(System.Reflection.Metadata.ConstantTypeCode)">
<summary>
Reads a constant value (see ECMA-335 Partition II section 22.9) from the current position.
</summary>
<exception cref="T:System.BadImageFormatException">Error while reading from the blob.</exception>
<exception cref="T:System.ArgumentOutOfRangeException"><paramref name="typeCode"/> is not a valid <see cref="T:System.Reflection.Metadata.ConstantTypeCode"/>.</exception>
<returns>
Boxed constant value. To avoid allocating the object use Read* methods directly.
Constants of type <see cref="F:System.Reflection.Metadata.ConstantTypeCode.String"/> are encoded as UTF16 strings, use <see cref="M:System.Reflection.Metadata.BlobReader.ReadUTF16(System.Int32)"/> to read them.
</returns>
</member>
<member name="P:System.Reflection.Metadata.Constant.TypeCode">
<summary>
The type of the constant value.
</summary>
<remarks>
Corresponds to Type field of Constant table in ECMA-335 Standard.
</remarks>
</member>
<member name="P:System.Reflection.Metadata.Constant.Value">
<summary>
The constant value.
</summary>
<remarks>
Corresponds to Value field of Constant table in ECMA-335 Standard.
</remarks>
</member>
<member name="P:System.Reflection.Metadata.Constant.Parent">
<summary>
The parent handle (<see cref="T:System.Reflection.Metadata.ParameterHandle"/>, <see cref="T:System.Reflection.Metadata.FieldDefinitionHandle"/>, or <see cref="T:System.Reflection.Metadata.PropertyDefinitionHandle"/>).
</summary>
<remarks>
Corresponds to Parent field of Constant table in ECMA-335 Standard.
</remarks>
</member>
<member name="P:System.Reflection.Metadata.CustomAttribute.Constructor">
<summary>
The constructor (<see cref="T:System.Reflection.Metadata.MethodDefinitionHandle"/> or <see cref="T:System.Reflection.Metadata.MemberReferenceHandle"/>) of the custom attribute type.
</summary>
<remarks>
Corresponds to Type field of CustomAttribute table in ECMA-335 Standard.
</remarks>
</member>
<member name="P:System.Reflection.Metadata.CustomAttribute.Parent">
<summary>
The handle of the metadata entity the attribute is applied to.
</summary>
<remarks>
Corresponds to Parent field of CustomAttribute table in ECMA-335 Standard.
</remarks>
</member>
<member name="P:System.Reflection.Metadata.CustomAttribute.Value">
<summary>
The value of the attribute.
</summary>
<remarks>
Corresponds to Value field of CustomAttribute table in ECMA-335 Standard.
</remarks>
</member>
<member name="M:System.Reflection.Metadata.CustomAttribute.DecodeValue``1(System.Reflection.Metadata.ICustomAttributeTypeProvider{``0})">
<summary>
Decodes the arguments encoded in the value blob.
</summary>
</member>
<member name="T:System.Reflection.Metadata.ArrayShape">
<summary>
Represents the shape of an array type.
</summary>
</member>
<member name="P:System.Reflection.Metadata.ArrayShape.Rank">
<summary>
Gets the number of dimensions in the array.
</summary>
</member>
<member name="P:System.Reflection.Metadata.ArrayShape.Sizes">
<summary>
Gets the sizes of each dimension. Length may be smaller than rank, in which case the trailing dimensions have unspecified sizes.
</summary>
</member>
<member name="P:System.Reflection.Metadata.ArrayShape.LowerBounds">
<summary>
Gets the lower-bounds of each dimension. Length may be smaller than rank, in which case the trailing dimensions have unspecified lower bounds.
</summary>
</member>
<member name="M:System.Reflection.Metadata.ISZArrayTypeProvider`1.GetSZArrayType(`0)">
<summary>
Gets the type symbol for a single-dimensional array with zero lower bounds of the given element type.
</summary>
</member>
<member name="M:System.Reflection.Metadata.ISignatureTypeProvider`1.GetFunctionPointerType(System.Reflection.Metadata.MethodSignature{`0})">
<summary>
Gets the a type symbol for the function pointer type of the given method signature.
</summary>
</member>
<member name="M:System.Reflection.Metadata.ISignatureTypeProvider`1.GetGenericMethodParameter(System.Int32)">
<summary>
Gets the type symbol for the generic method parameter at the given zero-based index.
</summary>
</member>
<member name="M:System.Reflection.Metadata.ISignatureTypeProvider`1.GetGenericTypeParameter(System.Int32)">
<summary>
Gets the type symbol for the generic type parameter at the given zero-based index.
</summary>
</member>
<member name="M:System.Reflection.Metadata.ISignatureTypeProvider`1.GetModifiedType(System.Reflection.Metadata.MetadataReader,System.Boolean,`0,`0)">
<summary>
Gets the type symbol for a type with a custom modifier applied.
</summary>
<param name="reader">The metadata reader that was passed to the <see cref="T:System.Reflection.Metadata.Ecma335.SignatureDecoder`1"/>. It may be null.</param>
<param name="isRequired">True if the modifier is required, false if it's optional.</param>
<param name="modifier">The modifier type applied. </param>
<param name="unmodifiedType">The type symbol of the underlying type without modifiers applied.</param>
</member>
<member name="M:System.Reflection.Metadata.ISignatureTypeProvider`1.GetPinnedType(`0)">
<summary>
Gets the type symbol for a local variable type that is marked as pinned.
</summary>
</member>
<member name="M:System.Reflection.Metadata.ITypeProvider`1.GetTypeFromDefinition(System.Reflection.Metadata.MetadataReader,System.Reflection.Metadata.TypeDefinitionHandle,System.Byte)">
<summary>
Gets the type symbol for a type definition.
</summary>
<param name="reader">
The metadata reader that was passed to the signature decoder. It may be null.
</param>
<param name="handle">
The type definition handle.
</param>
<param name="rawTypeKind">
The kind of the type as specified in the signature. To interpret this value use <see cref="M:System.Reflection.Metadata.Ecma335.MetadataReaderExtensions.ResolveSignatureTypeKind(System.Reflection.Metadata.MetadataReader,System.Reflection.Metadata.EntityHandle,System.Byte)"/>
Note that when the signature comes from a WinMD file additional processing is needed to determine whether the target type is a value type or a reference type.
</param>
</member>
<member name="M:System.Reflection.Metadata.ITypeProvider`1.GetTypeFromReference(System.Reflection.Metadata.MetadataReader,System.Reflection.Metadata.TypeReferenceHandle,System.Byte)">
<summary>
Gets the type symbol for a type reference.
</summary>
<param name="reader">
The metadata reader that was passed to the signature decoder. It may be null.
</param>
<param name="handle">
The type definition handle.
</param>
<param name="rawTypeKind">
The kind of the type as specified in the signature. To interpret this value use <see cref="M:System.Reflection.Metadata.Ecma335.MetadataReaderExtensions.ResolveSignatureTypeKind(System.Reflection.Metadata.MetadataReader,System.Reflection.Metadata.EntityHandle,System.Byte)"/>
Note that when the signature comes from a WinMD file additional processing is needed to determine whether the target type is a value type or a reference type.
</param>
</member>
<member name="M:System.Reflection.Metadata.ITypeProvider`1.GetTypeFromSpecification(System.Reflection.Metadata.MetadataReader,System.Reflection.Metadata.TypeSpecificationHandle,System.Byte)">
<summary>
Gets the type symbol for a type specification.
</summary>
<param name="reader">
The metadata reader that was passed to the signature decoder. It may be null.
</param>
<param name="handle">
The type specification handle.
</param>
<param name="rawTypeKind">
The kind of the type as specified in the signature. To interpret this value use <see cref="M:System.Reflection.Metadata.Ecma335.MetadataReaderExtensions.ResolveSignatureTypeKind(System.Reflection.Metadata.MetadataReader,System.Reflection.Metadata.EntityHandle,System.Byte)"/>
Note that when the signature comes from a WinMD file additional processing is needed to determine whether the target type is a value type or a reference type.
</param>
</member>
<member name="F:System.Reflection.Metadata.SignatureTypeKind.Unknown">
<summary>
It is not known in the current context if the type reference or definition is a class or value type.
</summary>
</member>
<member name="F:System.Reflection.Metadata.SignatureTypeKind.Class">
<summary>
The type definition or reference refers to a class.
</summary>
</member>
<member name="F:System.Reflection.Metadata.SignatureTypeKind.ValueType">
<summary>
The type definition or reference refers to a value type.
</summary>
</member>
<member name="M:System.Reflection.Metadata.IPrimitiveTypeProvider`1.GetPrimitiveType(System.Reflection.Metadata.PrimitiveTypeCode)">
<summary>
Gets the type symbol for a primitive type.
</summary>
</member>
<member name="M:System.Reflection.Metadata.IConstructedTypeProvider`1.GetGenericInstance(`0,System.Collections.Immutable.ImmutableArray{`0})">
<summary>
Gets the type symbol for a generic instantiation of the given generic type with the given type arguments.
</summary>
</member>
<member name="M:System.Reflection.Metadata.IConstructedTypeProvider`1.GetArrayType(`0,System.Reflection.Metadata.ArrayShape)">
<summary>
Gets the type symbol for a generalized array of the given element type and shape.
</summary>
</member>
<member name="M:System.Reflection.Metadata.IConstructedTypeProvider`1.GetByReferenceType(`0)">
<summary>
Gets the type symbol for a managed pointer to the given element type.
</summary>
</member>
<member name="M:System.Reflection.Metadata.IConstructedTypeProvider`1.GetPointerType(`0)">
<summary>
Gets the type symbol for an unmanaged pointer to the given element ty
</summary>
</member>
<member name="T:System.Reflection.Metadata.MethodSignature`1">
<summary>
Represents a method (definition, reference, or standalone) or property signature.
In the case of properties, the signature matches that of a getter with a distinguishing <see cref="T:System.Reflection.Metadata.SignatureHeader"/>.
</summary>
</member>
<member name="P:System.Reflection.Metadata.MethodSignature`1.Header">
<summary>
Represents the information in the leading byte of the signature (kind, calling convention, flags).
</summary>
</member>
<member name="P:System.Reflection.Metadata.MethodSignature`1.ReturnType">
<summary>
Gets the method's return type.
</summary>
</member>
<member name="P:System.Reflection.Metadata.MethodSignature`1.RequiredParameterCount">
<summary>
Gets the number of parameters that are required. Will be equal to the length <see cref="P:System.Reflection.Metadata.MethodSignature`1.ParameterTypes"/> of
unless this signature represents the standalone call site of a vararg method, in which case the entries
extra entries in <see cref="P:System.Reflection.Metadata.MethodSignature`1.ParameterTypes"/> are the types used for the optional parameters.
</summary>
</member>
<member name="P:System.Reflection.Metadata.MethodSignature`1.GenericParameterCount">
<summary>
Gets the number of generic type parameters of the method. Will be 0 for non-generic methods.
</summary>
</member>
<member name="P:System.Reflection.Metadata.MethodSignature`1.ParameterTypes">
<summary>
Gets the method's parameter types.
</summary>
</member>
<member name="T:System.Reflection.Metadata.PrimitiveTypeCode">
<summary>
Represents a primitive type found in metadata signatures.
</summary>
</member>
<member name="P:System.Reflection.Metadata.ExceptionRegion.TryOffset">
<summary>
Start IL offset of the try block.
</summary>
</member>
<member name="P:System.Reflection.Metadata.ExceptionRegion.TryLength">
<summary>
Length in bytes of try block.
</summary>
</member>
<member name="P:System.Reflection.Metadata.ExceptionRegion.HandlerOffset">
<summary>
Start IL offset of the exception handler.
</summary>
</member>
<member name="P:System.Reflection.Metadata.ExceptionRegion.HandlerLength">
<summary>
Length in bytes of the exception handler.
</summary>
</member>
<member name="P:System.Reflection.Metadata.ExceptionRegion.FilterOffset">
<summary>
IL offset of the start of the filter block, or -1 if the region is not a filter.
</summary>
</member>
<member name="P:System.Reflection.Metadata.ExceptionRegion.CatchType">
<summary>
Returns a TypeRef, TypeDef, or TypeSpec handle if the region represents a catch, nil token otherwise.
</summary>
</member>
<member name="P:System.Reflection.Metadata.ExportedType.Name">
<summary>
Name of the target type, or nil if the type is nested or defined in a root namespace.
</summary>
</member>
<member name="P:System.Reflection.Metadata.ExportedType.Namespace">
<summary>
Full name of the namespace where the target type, or nil if the type is nested or defined in a root namespace.
</summary>
</member>
<member name="P:System.Reflection.Metadata.ExportedType.NamespaceDefinition">
<summary>
The definition handle of the namespace where the target type is defined, or nil if the type is nested or defined in a root namespace.
</summary>
</member>
<member name="P:System.Reflection.Metadata.ExportedType.Implementation">
<summary>
Handle to resolve the implementation of the target type.
</summary>
<returns>
<list type="bullet">
<item><description><see cref="T:System.Reflection.Metadata.AssemblyFileHandle"/> representing another module in the assembly.</description></item>
<item><description><see cref="T:System.Reflection.Metadata.AssemblyReferenceHandle"/> representing another assembly if <see cref="P:System.Reflection.Metadata.ExportedType.IsForwarder"/> is true.</description></item>
<item><description><see cref="T:System.Reflection.Metadata.ExportedTypeHandle"/> representing the declaring exported type in which this was is nested.</description></item>
</list>
</returns>
</member>
<member name="M:System.Reflection.Metadata.FieldDefinition.GetOffset">
<summary>
Returns field layout offset, or -1 if not available.
</summary>
</member>
<member name="P:System.Reflection.Metadata.GenericParameter.Parent">
<summary>
<see cref="T:System.Reflection.Metadata.TypeDefinitionHandle"/> or <see cref="T:System.Reflection.Metadata.MethodDefinitionHandle"/>.
</summary>
<remarks>
Corresponds to Owner field of GenericParam table in ECMA-335 Standard.
</remarks>
</member>
<member name="P:System.Reflection.Metadata.GenericParameter.Attributes">
<summary>
Attributes specifying variance and constraints.
</summary>
<remarks>
Corresponds to Flags field of GenericParam table in ECMA-335 Standard.
</remarks>
</member>
<member name="P:System.Reflection.Metadata.GenericParameter.Index">
<summary>
Zero-based index of the parameter within the declaring generic type or method declaration.
</summary>
<remarks>
Corresponds to Number field of GenericParam table in ECMA-335 Standard.
</remarks>
</member>
<member name="P:System.Reflection.Metadata.GenericParameter.Name">
<summary>
The name of the generic parameter.
</summary>
<remarks>
Corresponds to Name field of GenericParam table in ECMA-335 Standard.
</remarks>
</member>
<member name="P:System.Reflection.Metadata.GenericParameterConstraint.Parameter">
<summary>
The constrained <see cref="T:System.Reflection.Metadata.GenericParameterHandle"/>.
</summary>
<remarks>
Corresponds to Owner field of GenericParamConstraint table in ECMA-335 Standard.
</remarks>
</member>
<member name="P:System.Reflection.Metadata.GenericParameterConstraint.Type">
<summary>
Handle (<see cref="T:System.Reflection.Metadata.TypeDefinitionHandle"/>, <see cref="T:System.Reflection.Metadata.TypeReferenceHandle"/>, or <see cref="T:System.Reflection.Metadata.TypeSpecificationHandle"/>)
specifying from which type this generic parameter is constrained to derive,
or which interface this generic parameter is constrained to implement.
</summary>
<remarks>
Corresponds to Constraint field of GenericParamConstraint table in ECMA-335 Standard.
</remarks>
</member>
<member name="T:System.Reflection.Metadata.GenericParameterHandleCollection">
<summary>
Represents generic type parameters of a method or type.
</summary>
</member>
<member name="T:System.Reflection.Metadata.GenericParameterConstraintHandleCollection">
<summary>
Represents constraints of a generic type parameter.
</summary>
</member>
<member name="T:System.Reflection.Metadata.ParameterHandleCollection">
<summary>
Collection of parameters of a specified method.
</summary>
</member>
<member name="T:System.Reflection.Metadata.TypeDefinitionHandleCollection">
<summary>
Represents a collection of <see cref="T:System.Reflection.Metadata.TypeDefinitionHandle"/>.
</summary>
</member>
<member name="T:System.Reflection.Metadata.TypeReferenceHandleCollection">
<summary>
Represents a collection of <see cref="T:System.Reflection.Metadata.TypeReferenceHandle"/>.
</summary>
</member>
<member name="T:System.Reflection.Metadata.ExportedTypeHandleCollection">
<summary>
Represents a collection of <see cref="T:System.Reflection.Metadata.TypeReferenceHandle"/>.
</summary>
</member>
<member name="T:System.Reflection.Metadata.MemberReferenceHandleCollection">
<summary>
Represents a collection of <see cref="T:System.Reflection.Metadata.MemberReferenceHandle"/>.
</summary>
</member>
<member name="T:System.Reflection.Metadata.AssemblyReferenceHandleCollection">
<summary>
Collection of assembly references.
</summary>
</member>
<member name="T:System.Reflection.Metadata.ManifestResourceHandleCollection">
<summary>
Represents a collection of <see cref="T:System.Reflection.Metadata.ManifestResourceHandle"/>.
</summary>
</member>
<member name="T:System.Reflection.Metadata.AssemblyFileHandleCollection">
<summary>
Represents a collection of <see cref="T:System.Reflection.Metadata.AssemblyFileHandle"/>.
</summary>
</member>
<member name="M:System.Reflection.Metadata.HandleComparer.Compare(System.Reflection.Metadata.Handle,System.Reflection.Metadata.Handle)">
<summary>
Compares two handles.
</summary>
<remarks>
The order of handles that differ in kind and are not <see cref="T:System.Reflection.Metadata.EntityHandle"/> is undefined.
Returns 0 if and only if <see cref="M:System.Reflection.Metadata.HandleComparer.Equals(System.Reflection.Metadata.Handle,System.Reflection.Metadata.Handle)"/> returns true.
</remarks>
</member>
<member name="M:System.Reflection.Metadata.HandleComparer.Compare(System.Reflection.Metadata.EntityHandle,System.Reflection.Metadata.EntityHandle)">
<summary>
Compares two entity handles.
</summary>
<remarks>
Returns 0 if and only if <see cref="M:System.Reflection.Metadata.HandleComparer.Equals(System.Reflection.Metadata.EntityHandle,System.Reflection.Metadata.EntityHandle)"/> returns true.
</remarks>
</member>
<member name="T:System.Reflection.Metadata.Handle">
<summary>
Represents any metadata entity (type reference/definition/specification, method definition, custom attribute, etc.) or value (string, blob, guid, user string).
</summary>
<remarks>
Use <see cref="T:System.Reflection.Metadata.Handle"/> to store multiple kinds of handles.
</remarks>
</member>
<member name="M:System.Reflection.Metadata.Handle.FromVToken(System.UInt32)">
<summary>
Creates <see cref="T:System.Reflection.Metadata.Handle"/> from a token or a token combined with a virtual flag.
</summary>
</member>
<member name="P:System.Reflection.Metadata.Handle.EntityHandleType">
<summary>
Token type (0x##000000), does not include virtual flag.
</summary>
</member>
<member name="P:System.Reflection.Metadata.Handle.Type">
<summary>
Small token type (0x##), does not include virtual flag.
</summary>
</member>
<member name="P:System.Reflection.Metadata.Handle.EntityHandleValue">
<summary>
Value stored in an <see cref="T:System.Reflection.Metadata.EntityHandle"/>.
</summary>
</member>
<member name="P:System.Reflection.Metadata.Handle.SpecificEntityHandleValue">
<summary>
Value stored in a concrete entity handle (see <see cref="T:System.Reflection.Metadata.TypeDefinitionHandle"/>, <see cref="T:System.Reflection.Metadata.MethodDefinitionHandle"/>, etc.).
</summary>
</member>
<member name="P:System.Reflection.Metadata.InterfaceImplementation.Interface">
<summary>
The interface that is implemented
<see cref="T:System.Reflection.Metadata.TypeDefinitionHandle"/>, <see cref="T:System.Reflection.Metadata.TypeReferenceHandle"/>, or <see cref="T:System.Reflection.Metadata.TypeSpecificationHandle"/>
</summary>
</member>
<member name="P:System.Reflection.Metadata.ManifestResource.Offset">
<summary>
Specifies the byte offset within the referenced file at which this resource record begins.
</summary>
<remarks>
Corresponds to Offset field of ManifestResource table in ECMA-335 Standard.
</remarks>
</member>
<member name="P:System.Reflection.Metadata.ManifestResource.Attributes">
<summary>
Resource attributes.
</summary>
<remarks>
Corresponds to Flags field of ManifestResource table in ECMA-335 Standard.
</remarks>
</member>
<member name="P:System.Reflection.Metadata.ManifestResource.Name">
<summary>
Name of the resource.
</summary>
<remarks>
Corresponds to Name field of ManifestResource table in ECMA-335 Standard.
</remarks>
</member>
<member name="P:System.Reflection.Metadata.ManifestResource.Implementation">
<summary>
<see cref="T:System.Reflection.Metadata.AssemblyFileHandle"/>, <see cref="T:System.Reflection.Metadata.AssemblyReferenceHandle"/>, or nil handle.
</summary>
<remarks>
Corresponds to Implementation field of ManifestResource table in ECMA-335 Standard.
If nil then <see cref="P:System.Reflection.Metadata.ManifestResource.Offset"/> is an offset in the PE image that contains the metadata,
starting from the Resource entry in the CLI header.
</remarks>
</member>
<member name="P:System.Reflection.Metadata.MemberReference.Parent">
<summary>
MethodDef, ModuleRef,TypeDef, TypeRef, or TypeSpec handle.
</summary>
</member>
<member name="P:System.Reflection.Metadata.MemberReference.Signature">
<summary>
Gets a handle to the signature blob.
</summary>
</member>
<member name="M:System.Reflection.Metadata.MemberReference.GetKind">
<summary>
Determines if the member reference is to a method or field.
</summary>
<exception cref="T:System.BadImageFormatException">The member reference signature is invalid.</exception>
</member>
<member name="T:System.Reflection.Metadata.StandaloneSignatureKind">
<summary>
Indicates whether a <see cref="T:System.Reflection.Metadata.StandaloneSignature"/> represents a standalone method or local variable signature.
</summary>
</member>
<member name="F:System.Reflection.Metadata.StandaloneSignatureKind.Method">
<summary>
The <see cref="T:System.Reflection.Metadata.StandaloneSignature"/> represents a standalone method signature.
</summary>
</member>
<member name="F:System.Reflection.Metadata.StandaloneSignatureKind.LocalVariables">
<summary>
The <see cref="T:System.Reflection.Metadata.MemberReference"/> references a local variable signature.
</summary>
</member>
<member name="T:System.Reflection.Metadata.MemberReferenceKind">
<summary>
Indicates whether a <see cref="T:System.Reflection.Metadata.MemberReference"/> references a method or field.
</summary>
</member>
<member name="F:System.Reflection.Metadata.MemberReferenceKind.Method">
<summary>
The <see cref="T:System.Reflection.Metadata.MemberReference"/> references a method.
</summary>
</member>
<member name="F:System.Reflection.Metadata.MemberReferenceKind.Field">
<summary>
The <see cref="T:System.Reflection.Metadata.MemberReference"/> references a field.
</summary>
</member>
<member name="F:System.Reflection.Metadata.MetadataKind.Ecma335">
<summary>
CLI metadata.
</summary>
</member>
<member name="F:System.Reflection.Metadata.MetadataKind.WindowsMetadata">
<summary>
Windows Metadata.
</summary>
</member>
<member name="F:System.Reflection.Metadata.MetadataKind.ManagedWindowsMetadata">
<summary>
Windows Metadata generated by managed compilers.
</summary>
</member>
<member name="T:System.Reflection.Metadata.MetadataReader">
<summary>
Reads metadata as defined byte the ECMA 335 CLI specification.
</summary>
</member>
<member name="M:System.Reflection.Metadata.MetadataReader.#ctor(System.Byte*,System.Int32)">
<summary>
Creates a metadata reader from the metadata stored at the given memory location.
</summary>
<remarks>
The memory is owned by the caller and it must be kept memory alive and unmodified throughout the lifetime of the <see cref="T:System.Reflection.Metadata.MetadataReader"/>.
</remarks>
</member>
<member name="M:System.Reflection.Metadata.MetadataReader.#ctor(System.Byte*,System.Int32,System.Reflection.Metadata.MetadataReaderOptions)">
<summary>
Creates a metadata reader from the metadata stored at the given memory location.
</summary>
<remarks>
The memory is owned by the caller and it must be kept memory alive and unmodified throughout the lifetime of the <see cref="T:System.Reflection.Metadata.MetadataReader"/>.
Use <see cref="M:System.Reflection.Metadata.PEReaderExtensions.GetMetadataReader(System.Reflection.PortableExecutable.PEReader,System.Reflection.Metadata.MetadataReaderOptions)"/> to obtain
metadata from a PE image.
</remarks>
</member>
<member name="M:System.Reflection.Metadata.MetadataReader.#ctor(System.Byte*,System.Int32,System.Reflection.Metadata.MetadataReaderOptions,System.Reflection.Metadata.MetadataStringDecoder)">
<summary>
Creates a metadata reader from the metadata stored at the given memory location.
</summary>
<remarks>
The memory is owned by the caller and it must be kept memory alive and unmodified throughout the lifetime of the <see cref="T:System.Reflection.Metadata.MetadataReader"/>.
Use <see cref="M:System.Reflection.Metadata.PEReaderExtensions.GetMetadataReader(System.Reflection.PortableExecutable.PEReader,System.Reflection.Metadata.MetadataReaderOptions,System.Reflection.Metadata.MetadataStringDecoder)"/> to obtain
metadata from a PE image.
</remarks>
<exception cref="T:System.ArgumentOutOfRangeException"><paramref name="length"/> is not positive.</exception>
<exception cref="T:System.ArgumentNullException"><paramref name="metadata"/> is null.</exception>
<exception cref="T:System.ArgumentException">The encoding of <paramref name="utf8Decoder"/> is not <see cref="T:System.Text.UTF8Encoding"/>.</exception>
<exception cref="T:System.PlatformNotSupportedException">The current platform is big-endian.</exception>
</member>
<member name="F:System.Reflection.Metadata.MetadataReader.IsMinimalDelta">
<summary>
True if the metadata stream has minimal delta format. Used for EnC.
</summary>
<remarks>
The metadata stream has minimal delta format if "#JTD" stream is present.
Minimal delta format uses large size (4B) when encoding table/heap references.
The heaps in minimal delta only contain data of the delta,
there is no padding at the beginning of the heaps that would align them
with the original full metadata heaps.
</remarks>
</member>
<member name="M:System.Reflection.Metadata.MetadataReader.ReadMetadataHeader(System.Reflection.Metadata.BlobReader@,System.String@)">
<summary>
Looks like this function reads beginning of the header described in
ECMA-335 24.2.1 Metadata root
</summary>
</member>
<member name="M:System.Reflection.Metadata.MetadataReader.ReadStreamHeaders(System.Reflection.Metadata.BlobReader@)">
<summary>
Reads stream headers described in ECMA-335 24.2.2 Stream header
</summary>
</member>
<member name="F:System.Reflection.Metadata.MetadataReader.TableRowCounts">
<summary>
A row count for each possible table. May be indexed by <see cref="T:System.Reflection.Metadata.Ecma335.TableIndex"/>.
</summary>
</member>
<member name="P:System.Reflection.Metadata.MetadataReader.DebugMetadataHeader">
<summary>
Information decoded from #Pdb stream, or null if the stream is not present.
</summary>
</member>
<member name="M:System.Reflection.Metadata.MetadataReader.GetNestedTypes(System.Reflection.Metadata.TypeDefinitionHandle)">
<summary>
Returns an array of types nested in the specified type.
</summary>
</member>
<member name="M:System.Reflection.Metadata.MetadataReader.CalculateFieldDefTreatmentAndRowId(System.Reflection.Metadata.FieldDefinitionHandle)">
<summary>
The backing field of a WinRT enumeration type is not public although the backing fields
of managed enumerations are. To allow managed languages to directly access this field,
it is made public by the metadata adapter.
</summary>
</member>
<member name="M:System.Reflection.Metadata.MetadataReader.ImplementsRedirectedInterface(System.Reflection.Metadata.MemberReferenceHandle,System.Boolean@)">
<summary>
We want to know if a given method implements a redirected interface.
For example, if we are given the method RemoveAt on a class "A"
which implements the IVector interface (which is redirected
to IList in .NET) then this method would return true. The most
likely reason why we would want to know this is that we wish to hide
(mark private) all methods which implement methods on a redirected
interface.
</summary>
<param name="memberRef">The declaration token for the method</param>
<param name="isIDisposable">
Returns true if the redirected interface is <see cref="T:System.IDisposable"/>.
</param>
<returns>True if the method implements a method on a redirected interface.
False otherwise.</returns>
</member>
<member name="M:System.Reflection.Metadata.MetadataReader.GetAttributeTypeRaw(System.Reflection.Metadata.CustomAttributeHandle)">
<summary>
Returns the type definition or reference handle of the attribute type.
</summary>
<returns><see cref="T:System.Reflection.Metadata.TypeDefinitionHandle"/> or <see cref="T:System.Reflection.Metadata.TypeReferenceHandle"/> or nil token if the metadata is invalid and the type can't be determined.</returns>
</member>
<member name="F:System.Reflection.Metadata.MetadataReaderOptions.None">
<summary>
All options are disabled.
</summary>
</member>
<member name="F:System.Reflection.Metadata.MetadataReaderOptions.Default">
<summary>
The options that are used when a <see cref="T:System.Reflection.Metadata.MetadataReader"/> is obtained
via an overload that does not take a <see cref="T:System.Reflection.Metadata.MetadataReaderOptions"/>
argument.
</summary>
</member>
<member name="F:System.Reflection.Metadata.MetadataReaderOptions.ApplyWindowsRuntimeProjections">
<summary>
Windows Runtime projections are enabled (on by default).
</summary>
</member>
<member name="T:System.Reflection.Metadata.MetadataStringComparer">
<summary>
Provides string comparison helpers to query strings in metadata while
avoiding allocation where possible.
</summary>
<remarks>
No allocation is performed unless both the handle argument and the
value argument contain non-ascii text.
Obtain instances using <see cref="P:System.Reflection.Metadata.MetadataReader.StringComparer"/>.
A default-initialized instance is useless and behaves as a null reference.
The code is optimized such that there is no additional overhead in
re-obtaining a a comparer over hoisting it in to a local.
That is to say that a construct like:
<code>
if (reader.StringComparer.Equals(typeDef.Namespace, "System") &&
reader.StringComparer.Equals(typeDef.Name, "Object")
{
// found System.Object
}
</code>
is no less efficient than:
<code>
var comparer = reader.StringComparer;
if (comparer.Equals(typeDef.Namespace, "System") &&
comparer.Equals(typeDef.Name, "Object")
{
// found System.Object
}
</code>
The choice between them is therefore one of style and not performance.
</remarks>
</member>
<member name="T:System.Reflection.Metadata.MetadataStringDecoder">
<summary>
Provides the <see cref="T:System.Reflection.Metadata.MetadataReader"/> with a custom mechanism for decoding
byte sequences in metadata that represent text.
</summary>
<remarks>
This can be used for the following purposes:
1) To customize the treatment of invalid input. When no decoder is provided,
the <see cref="T:System.Reflection.Metadata.MetadataReader"/> uses the default fallback replacement
with \uFFFD)
2) To reuse existing strings instead of allocating a new one for each decoding
operation.
</remarks>
</member>
<member name="P:System.Reflection.Metadata.MetadataStringDecoder.DefaultUTF8">
<summary>
The default decoder used by <see cref="T:System.Reflection.Metadata.MetadataReader"/> to decode UTF-8 when
no decoder is provided to the constructor.
</summary>
</member>
<member name="M:System.Reflection.Metadata.MetadataStringDecoder.#ctor(System.Text.Encoding)">
<summary>
Creates a <see cref="T:System.Reflection.Metadata.MetadataStringDecoder"/> for the given encoding.
</summary>
<param name="encoding">The encoding to use.</param>
<remarks>
To cache and reuse existing strings. Create a derived class and override <see cref="M:System.Reflection.Metadata.MetadataStringDecoder.GetString(System.Byte*,System.Int32)"/>
</remarks>
</member>
<member name="P:System.Reflection.Metadata.MetadataStringDecoder.Encoding">
<summary>
Gets the encoding used by this instance.
</summary>
</member>
<member name="M:System.Reflection.Metadata.MetadataStringDecoder.GetString(System.Byte*,System.Int32)">
<summary>
The mechanism through which the <see cref="T:System.Reflection.Metadata.MetadataReader"/> obtains strings
for byte sequences in metadata. Override this to cache strings if required.
Otherwise, it is implemented by forwarding straight to <see cref="P:System.Reflection.Metadata.MetadataStringDecoder.Encoding"/>
and every call will allocate a new string.
</summary>
<param name="bytes">Pointer to bytes to decode.</param>
<param name="byteCount">Number of bytes to decode.</param>
<returns>The decoded string.</returns>
</member>
<member name="P:System.Reflection.Metadata.MethodBodyBlock.Size">
<summary>
Size of the method body - includes the header, IL and exception regions.
</summary>
</member>
<member name="P:System.Reflection.Metadata.MethodSpecification.Method">
<summary>
MethodDef or MemberRef handle specifying to which generic method this <see cref="T:System.Reflection.Metadata.MethodSpecification"/> refers,
that is which generic method is it an instantiation of.
</summary>
</member>
<member name="P:System.Reflection.Metadata.MethodSpecification.Signature">
<summary>
Gets a handle to the signature blob.
</summary>
</member>
<member name="P:System.Reflection.Metadata.NamespaceDefinition.Name">
<summary>
Gets the unqualified name of the NamespaceDefinition.
</summary>
</member>
<member name="P:System.Reflection.Metadata.NamespaceDefinition.Parent">
<summary>
Gets the parent namespace.
</summary>
</member>
<member name="P:System.Reflection.Metadata.NamespaceDefinition.NamespaceDefinitions">
<summary>
Gets the namespace definitions that are direct children of the current
namespace definition.
System.Collections and System.Linq are direct children of System.
System.Collections.Generic is a direct child of System.Collections.
System.Collections.Generic is *not* a direct child of System.
</summary>
</member>
<member name="P:System.Reflection.Metadata.NamespaceDefinition.TypeDefinitions">
<summary>
Gets all type definitions that reside directly in a namespace.
</summary>
</member>
<member name="P:System.Reflection.Metadata.NamespaceDefinition.ExportedTypes">
<summary>
Gets all exported types that reside directly in a namespace.
</summary>
</member>
<member name="T:System.Reflection.Metadata.Document">
<summary>
Source document in debug metadata.
</summary>
<remarks>
See also https://github.com/dotnet/corefx/blob/master/src/System.Reflection.Metadata/specs/PortablePdb-Metadata.md#document-table-0x30.
</remarks>
</member>
<member name="P:System.Reflection.Metadata.Document.Name">
<summary>
Returns Document Name Blob.
</summary>
</member>
<member name="P:System.Reflection.Metadata.Document.Language">
<summary>
Source code language (C#, VB, F#, etc.)
</summary>
</member>
<member name="P:System.Reflection.Metadata.Document.HashAlgorithm">
<summary>
Hash algorithm used to calculate <see cref="P:System.Reflection.Metadata.Document.Hash"/> (SHA1, SHA256, etc.)
</summary>
</member>
<member name="P:System.Reflection.Metadata.Document.Hash">
<summary>
Document content hash.
</summary>
<remarks>
<see cref="P:System.Reflection.Metadata.Document.HashAlgorithm"/> determines the algorithm used to produce this hash.
The source document is hashed in its binary form as stored in the file.
</remarks>
</member>
<member name="T:System.Reflection.Metadata.DocumentNameBlobHandle">
<summary>
<see cref="T:System.Reflection.Metadata.BlobHandle"/> representing a blob on #Blob heap in Portable PDB
structured as Document Name.
</summary>
<remarks>
The kind of the handle is <see cref="F:System.Reflection.Metadata.HandleKind.Blob"/>.
The handle is a specialization of <see cref="T:System.Reflection.Metadata.BlobHandle"/> and doesn't have a distinct kind.
</remarks>
</member>
<member name="M:System.Reflection.Metadata.MethodDebugInformationHandle.ToDefinitionHandle">
<summary>
Returns a handle to <see cref="T:System.Reflection.Metadata.MethodDefinition"/> corresponding to this handle.
</summary>
<remarks>
The resulting handle is only valid within the context of a <see cref="T:System.Reflection.Metadata.MetadataReader"/> open on the type system metadata blob,
which in case of standalone PDB file is a different reader than the one containing this method debug information.
</remarks>
</member>
<member name="M:System.Reflection.Metadata.ImportDefinitionCollection.Enumerator.MoveNext">
<exception cref="T:System.BadImageFormatException">Invalid blob format.</exception>
</member>
<member name="T:System.Reflection.Metadata.LocalConstant">
<summary>
Local constant. Stored in debug metadata.
</summary>
<remarks>
See https://github.com/dotnet/corefx/blob/master/src/System.Reflection.Metadata/specs/PortablePdb-Metadata.md#localconstant-table-0x34.
</remarks>
</member>
<member name="P:System.Reflection.Metadata.LocalConstant.Signature">
<summary>
The constant signature.
</summary>
</member>
<member name="T:System.Reflection.Metadata.ImportScope">
<summary>
Lexical scope within which a group of imports are available. Stored in debug metadata.
</summary>
<remarks>
See https://github.com/dotnet/corefx/blob/master/src/System.Reflection.Metadata/specs/PortablePdb-Metadata.md#importscope-table-0x35
</remarks>
</member>
<member name="T:System.Reflection.Metadata.LocalScope">
<summary>
Scope of local variables and constants. Stored in debug metadata.
</summary>
<remarks>
See https://github.com/dotnet/corefx/blob/master/src/System.Reflection.Metadata/specs/PortablePdb-Metadata.md#localscope-table-0x32.
</remarks>
</member>
<member name="T:System.Reflection.Metadata.LocalVariable">
<summary>
Local variable. Stored in debug metadata.
</summary>
<remarks>
See https://github.com/dotnet/corefx/blob/master/src/System.Reflection.Metadata/specs/PortablePdb-Metadata.md#localvariable-table-0x33.
</remarks>
</member>
<member name="T:System.Reflection.Metadata.MethodDebugInformation">
<summary>
Debug information associated with a method definition. Stored in debug metadata.
</summary>
<remarks>
See https://github.com/dotnet/corefx/blob/master/src/System.Reflection.Metadata/specs/PortablePdb-Metadata.md#methoddebuginformation-table-0x31.
</remarks>
</member>
<member name="P:System.Reflection.Metadata.MethodDebugInformation.SequencePointsBlob">
<summary>
Returns a blob encoding sequence points.
Use <see cref="M:System.Reflection.Metadata.MethodDebugInformation.GetSequencePoints"/> to decode.
</summary>
</member>
<member name="P:System.Reflection.Metadata.MethodDebugInformation.Document">
<summary>
The document containing the first sequence point of the method,
or nil if the method doesn't have sequence points.
</summary>
</member>
<member name="P:System.Reflection.Metadata.MethodDebugInformation.LocalSignature">
<summary>
Returns local signature handle.
</summary>
</member>
<member name="M:System.Reflection.Metadata.MethodDebugInformation.GetStateMachineKickoffMethod">
<summary>
If the method is a MoveNext method of a state machine returns the kickoff method of the state machine, otherwise returns nil handle.
</summary>
</member>
<member name="M:System.Reflection.Metadata.PEReaderExtensions.GetMethodBody(System.Reflection.PortableExecutable.PEReader,System.Int32)">
<summary>
Returns a body block of a method with specified Relative Virtual Address (RVA);
</summary>
<exception cref="T:System.ArgumentNullException"><paramref name="peReader"/> is null.</exception>
<exception cref="T:System.BadImageFormatException">The body is not found in the metadata or is invalid.</exception>
<exception cref="T:System.InvalidOperationException">Section where the method is stored is not available.</exception>
</member>
<member name="M:System.Reflection.Metadata.PEReaderExtensions.GetMetadataReader(System.Reflection.PortableExecutable.PEReader)">
<summary>
Gets a <see cref="T:System.Reflection.Metadata.MetadataReader"/> from a <see cref="T:System.Reflection.PortableExecutable.PEReader"/>.
</summary>
<remarks>
The caller must keep the <see cref="T:System.Reflection.PortableExecutable.PEReader"/> alive and undisposed throughout the lifetime of the metadata reader.
</remarks>
<exception cref="T:System.ArgumentNullException"><paramref name="peReader"/> is null</exception>
<exception cref="T:System.PlatformNotSupportedException">The current platform is big-endian.</exception>
</member>
<member name="M:System.Reflection.Metadata.PEReaderExtensions.GetMetadataReader(System.Reflection.PortableExecutable.PEReader,System.Reflection.Metadata.MetadataReaderOptions)">
<summary>
Gets a <see cref="T:System.Reflection.Metadata.MetadataReader"/> from a <see cref="T:System.Reflection.PortableExecutable.PEReader"/>.
</summary>
<remarks>
The caller must keep the <see cref="T:System.Reflection.PortableExecutable.PEReader"/> alive and undisposed throughout the lifetime of the metadata reader.
</remarks>
<exception cref="T:System.ArgumentNullException"><paramref name="peReader"/> is null</exception>
<exception cref="T:System.PlatformNotSupportedException">The current platform is big-endian.</exception>
</member>
<member name="M:System.Reflection.Metadata.PEReaderExtensions.GetMetadataReader(System.Reflection.PortableExecutable.PEReader,System.Reflection.Metadata.MetadataReaderOptions,System.Reflection.Metadata.MetadataStringDecoder)">
<summary>
Gets a <see cref="T:System.Reflection.Metadata.MetadataReader"/> from a <see cref="T:System.Reflection.PortableExecutable.PEReader"/>.
</summary>
<remarks>
The caller must keep the <see cref="T:System.Reflection.PortableExecutable.PEReader"/> alive and undisposed throughout the lifetime of the metadata reader.
</remarks>
<exception cref="T:System.ArgumentNullException"><paramref name="peReader"/> is null</exception>
<exception cref="T:System.ArgumentException">The encoding of <paramref name="utf8Decoder"/> is not <see cref="T:System.Text.UTF8Encoding"/>.</exception>
<exception cref="T:System.PlatformNotSupportedException">The current platform is big-endian.</exception>
</member>
<member name="T:System.Reflection.Metadata.SerializationTypeCode">
<summary>
Type codes used to encode types of values in Custom Attribute value blob.
</summary>
</member>
<member name="F:System.Reflection.Metadata.SerializationTypeCode.Invalid">
<summary>
Equivalent to <see cref="F:System.Reflection.Metadata.SignatureTypeCode.Invalid"/>.
</summary>
</member>
<member name="F:System.Reflection.Metadata.SerializationTypeCode.Boolean">
<summary>
Equivalent to <see cref="F:System.Reflection.Metadata.SignatureTypeCode.Boolean"/>.
</summary>
</member>
<member name="F:System.Reflection.Metadata.SerializationTypeCode.Char">
<summary>
Equivalent to <see cref="F:System.Reflection.Metadata.SignatureTypeCode.Char"/>.
</summary>
</member>
<member name="F:System.Reflection.Metadata.SerializationTypeCode.SByte">
<summary>
Equivalent to <see cref="F:System.Reflection.Metadata.SignatureTypeCode.SByte"/>.
</summary>
</member>
<member name="F:System.Reflection.Metadata.SerializationTypeCode.Byte">
<summary>
Equivalent to <see cref="F:System.Reflection.Metadata.SignatureTypeCode.Byte"/>.
</summary>
</member>
<member name="F:System.Reflection.Metadata.SerializationTypeCode.Int16">
<summary>
Equivalent to <see cref="F:System.Reflection.Metadata.SignatureTypeCode.Int16"/>.
</summary>
</member>
<member name="F:System.Reflection.Metadata.SerializationTypeCode.UInt16">
<summary>
Equivalent to <see cref="F:System.Reflection.Metadata.SignatureTypeCode.UInt16"/>.
</summary>
</member>
<member name="F:System.Reflection.Metadata.SerializationTypeCode.Int32">
<summary>
Equivalent to <see cref="F:System.Reflection.Metadata.SignatureTypeCode.Int32"/>.
</summary>
</member>
<member name="F:System.Reflection.Metadata.SerializationTypeCode.UInt32">
<summary>
Equivalent to <see cref="F:System.Reflection.Metadata.SignatureTypeCode.UInt32"/>.
</summary>
</member>
<member name="F:System.Reflection.Metadata.SerializationTypeCode.Int64">
<summary>
Equivalent to <see cref="F:System.Reflection.Metadata.SignatureTypeCode.Int64"/>.
</summary>
</member>
<member name="F:System.Reflection.Metadata.SerializationTypeCode.UInt64">
<summary>
Equivalent to <see cref="F:System.Reflection.Metadata.SignatureTypeCode.UInt64"/>.
</summary>
</member>
<member name="F:System.Reflection.Metadata.SerializationTypeCode.Single">
<summary>
Equivalent to <see cref="F:System.Reflection.Metadata.SignatureTypeCode.Single"/>.
</summary>
</member>
<member name="F:System.Reflection.Metadata.SerializationTypeCode.Double">
<summary>
Equivalent to <see cref="F:System.Reflection.Metadata.SignatureTypeCode.Double"/>.
</summary>
</member>
<member name="F:System.Reflection.Metadata.SerializationTypeCode.String">
<summary>
Equivalent to <see cref="F:System.Reflection.Metadata.SignatureTypeCode.String"/>.
</summary>
</member>
<member name="F:System.Reflection.Metadata.SerializationTypeCode.SZArray">
<summary>
Equivalent to <see cref="F:System.Reflection.Metadata.SignatureTypeCode.SZArray"/>.
</summary>
</member>
<member name="F:System.Reflection.Metadata.SerializationTypeCode.Type">
<summary>
The attribute argument is a System.Type instance.
</summary>
</member>
<member name="F:System.Reflection.Metadata.SerializationTypeCode.TaggedObject">
<summary>
The attribute argument is "boxed" (passed to a parameter, field, or property of type object) and carries type information in the attribute blob.
</summary>
</member>
<member name="F:System.Reflection.Metadata.SerializationTypeCode.Enum">
<summary>
The attribute argument is an Enum instance.
</summary>
</member>
<member name="T:System.Reflection.Metadata.SignatureAttributes">
<summary>
Specified additional flags that can be applied to method signatures.
Underlying values correspond to the representation in the leading signature
byte represented by <see cref="T:System.Reflection.Metadata.SignatureHeader"/>.
</summary>
</member>
<member name="F:System.Reflection.Metadata.SignatureAttributes.None">
<summary>
No flags.
</summary>
</member>
<member name="F:System.Reflection.Metadata.SignatureAttributes.Generic">
<summary>
Generic method.
</summary>
</member>
<member name="F:System.Reflection.Metadata.SignatureAttributes.Instance">
<summary>
Instance method.
</summary>
<remarks>Ecma 335 CLI Specification refers to this flag as HAS_THIS.</remarks>
</member>
<member name="F:System.Reflection.Metadata.SignatureAttributes.ExplicitThis">
<summary>
The first explicitly declared parameter represents the instance pointer.
</summary>
</member>
<member name="T:System.Reflection.Metadata.SignatureCallingConvention">
<summary>
Specifies how arguments in a given signature are passed from the caller to the callee.
Underlying values correspond to the representation in the leading signature byte
represented by <see cref="T:System.Reflection.Metadata.SignatureHeader"/>.
</summary>
</member>
<member name="F:System.Reflection.Metadata.SignatureCallingConvention.Default">
<summary>
Managed calling convention with fixed-length argument list.
</summary>
</member>
<member name="F:System.Reflection.Metadata.SignatureCallingConvention.CDecl">
<summary>
Unmanaged C/C++-style calling convention where the call stack is cleaned by the caller.
</summary>
</member>
<member name="F:System.Reflection.Metadata.SignatureCallingConvention.StdCall">
<summary>
Unmanaged calling convention where call stack is cleaned up by the callee.
</summary>
</member>
<member name="F:System.Reflection.Metadata.SignatureCallingConvention.ThisCall">
<summary>
Unmanaged C++-style calling convention for calling instance member functions with a fixed argument list.
</summary>
</member>
<member name="F:System.Reflection.Metadata.SignatureCallingConvention.FastCall">
<summary>
Unmanaged calling convention where arguments are passed in registers when possible.
</summary>
</member>
<member name="F:System.Reflection.Metadata.SignatureCallingConvention.VarArgs">
<summary>
Managed calling convention for passing extra arguments.
</summary>
</member>
<member name="T:System.Reflection.Metadata.SignatureHeader">
<summary>
Represents the signature characteristics specified by the leading byte of signature blobs.
</summary>
<remarks>
This header byte is present in all method definition, method reference, standalone method, field,
property, and local variable signatures, but not in type specification signatures.
</remarks>
</member>
<member name="T:System.Reflection.Metadata.SignatureKind">
<summary>
Specifies the signature kind. Underlying values correspond to the representation
in the leading signature byte represented by <see cref="T:System.Reflection.Metadata.SignatureHeader"/>.
</summary>
</member>
<member name="F:System.Reflection.Metadata.SignatureKind.Method">
<summary>
Method reference, method definition, or standalone method signature.
</summary>
</member>
<member name="F:System.Reflection.Metadata.SignatureKind.Field">
<summary>
Field signature.
</summary>
</member>
<member name="F:System.Reflection.Metadata.SignatureKind.LocalVariables">
<summary>
Local variables signature.
</summary>
</member>
<member name="F:System.Reflection.Metadata.SignatureKind.Property">
<summary>
Property signature.
</summary>
</member>
<member name="F:System.Reflection.Metadata.SignatureKind.MethodSpecification">
<summary>
Method specification signature.
</summary>
</member>
<member name="T:System.Reflection.Metadata.SignatureTypeCode">
<summary>
Represents the type codes that are used in signature encoding.
</summary>
</member>
<member name="F:System.Reflection.Metadata.SignatureTypeCode.Invalid">
<summary>
Represents an invalid or uninitialized type code. It will not appear in valid signatures.
</summary>
</member>
<member name="F:System.Reflection.Metadata.SignatureTypeCode.Void">
<summary>
Represents <see cref="T:System.Void"/> in signatures.
</summary>
</member>
<member name="F:System.Reflection.Metadata.SignatureTypeCode.Boolean">
<summary>
Represents <see cref="T:System.Boolean"/> in signatures.
</summary>
</member>
<member name="F:System.Reflection.Metadata.SignatureTypeCode.Char">
<summary>
Represents <see cref="T:System.Char"/> in signatures.
</summary>
</member>
<member name="F:System.Reflection.Metadata.SignatureTypeCode.SByte">
<summary>
Represents <see cref="T:System.SByte"/> in signatures.
</summary>
</member>
<member name="F:System.Reflection.Metadata.SignatureTypeCode.Byte">
<summary>
Represents <see cref="T:System.Byte"/> in signatures.
</summary>
</member>
<member name="F:System.Reflection.Metadata.SignatureTypeCode.Int16">
<summary>
Represents <see cref="T:System.Int16"/> in signatures.
</summary>
</member>
<member name="F:System.Reflection.Metadata.SignatureTypeCode.UInt16">
<summary>
Represents <see cref="T:System.UInt16"/> in signatures.
</summary>
</member>
<member name="F:System.Reflection.Metadata.SignatureTypeCode.Int32">
<summary>
Represents <see cref="T:System.Int32"/> in signatures.
</summary>
</member>
<member name="F:System.Reflection.Metadata.SignatureTypeCode.UInt32">
<summary>
Represents <see cref="T:System.UInt32"/> in signatures.
</summary>
</member>
<member name="F:System.Reflection.Metadata.SignatureTypeCode.Int64">
<summary>
Represents <see cref="T:System.Int64"/> in signatures.
</summary>
</member>
<member name="F:System.Reflection.Metadata.SignatureTypeCode.UInt64">
<summary>
Represents <see cref="T:System.UInt64"/> in signatures.
</summary>
</member>
<member name="F:System.Reflection.Metadata.SignatureTypeCode.Single">
<summary>
Represents <see cref="T:System.Single"/> in signatures.
</summary>
</member>
<member name="F:System.Reflection.Metadata.SignatureTypeCode.Double">
<summary>
Represents <see cref="T:System.Double"/> in signatures.
</summary>
</member>
<member name="F:System.Reflection.Metadata.SignatureTypeCode.String">
<summary>
Represents <see cref="T:System.String"/> in signatures.
</summary>
</member>
<member name="F:System.Reflection.Metadata.SignatureTypeCode.Pointer">
<summary>
Represents a unmanaged pointers in signatures.
It is followed in the blob by the signature encoding of the underlying type.
</summary>
</member>
<member name="F:System.Reflection.Metadata.SignatureTypeCode.ByReference">
<summary>
Represents managed pointers (byref return values and parameters) in signatures.
It is followed in the blob by the signature encoding of the underlying type.
</summary>
</member>
<member name="F:System.Reflection.Metadata.SignatureTypeCode.GenericTypeParameter">
<summary>
Represents a generic type parameter used within a signature.
</summary>
</member>
<member name="F:System.Reflection.Metadata.SignatureTypeCode.Array">
<summary>
Represents a generalized <see cref="T:System.Array"/> in signatures.
</summary>
</member>
<member name="F:System.Reflection.Metadata.SignatureTypeCode.GenericTypeInstance">
<summary>
Represents the instantiation of a generic type in signatures.
</summary>
</member>
<member name="F:System.Reflection.Metadata.SignatureTypeCode.TypedReference">
<summary>
Represents a System.TypedReference in signatures.
</summary>
</member>
<member name="F:System.Reflection.Metadata.SignatureTypeCode.IntPtr">
<summary>
Represents a <see cref="T:System.IntPtr"/> in signatures.
</summary>
</member>
<member name="F:System.Reflection.Metadata.SignatureTypeCode.UIntPtr">
<summary>
Represents a <see cref="T:System.UIntPtr"/> in signatures.
</summary>
</member>
<member name="F:System.Reflection.Metadata.SignatureTypeCode.FunctionPointer">
<summary>
Represents function pointer types in signatures.
</summary>
</member>
<member name="F:System.Reflection.Metadata.SignatureTypeCode.Object">
<summary>
Represents <see cref="T:System.Object"/>
</summary>
</member>
<member name="F:System.Reflection.Metadata.SignatureTypeCode.SZArray">
<summary>
Represents a single dimensional <see cref="T:System.Array"/> with 0 lower bound.
</summary>
</member>
<member name="F:System.Reflection.Metadata.SignatureTypeCode.GenericMethodParameter">
<summary>
Represents a generic method parameter used within a signature.
</summary>
</member>
<member name="F:System.Reflection.Metadata.SignatureTypeCode.RequiredModifier">
<summary>
Represents a custom modifier applied to a type within a signature that the caller must understand.
</summary>
</member>
<member name="F:System.Reflection.Metadata.SignatureTypeCode.OptionalModifier">
<summary>
Represents a custom modifier applied to a type within a signature that the caller can ignore.
</summary>
</member>
<member name="F:System.Reflection.Metadata.SignatureTypeCode.TypeHandle">
<summary>
Precedes a type <see cref="T:System.Reflection.Metadata.EntityHandle"/> in signatures.
</summary>
<remarks>
In raw metadata, this will be encoded as either ELEMENT_TYPE_CLASS (0x12) for reference
types and ELEMENT_TYPE_VALUETYPE (0x11) for value types. This is collapsed to a single
code because Windows Runtime projections can project from class to value type or vice-versa
and the raw code is misleading in those cases.
</remarks>
</member>
<member name="F:System.Reflection.Metadata.SignatureTypeCode.Sentinel">
<summary>
Represents a marker to indicate the end of fixed arguments and the beginning of variable arguments.
</summary>
</member>
<member name="F:System.Reflection.Metadata.SignatureTypeCode.Pinned">
<summary>
Represents a local variable that is pinned by garbage collector
</summary>
</member>
<member name="P:System.Reflection.Metadata.StandaloneSignature.Signature">
<summary>
Gets a handle to the signature blob.
</summary>
</member>
<member name="M:System.Reflection.Metadata.StandaloneSignature.GetKind">
<summary>
Determines the kind of signature, which can be <see cref="F:System.Reflection.Metadata.SignatureKind.Method"/> or <see cref="F:System.Reflection.Metadata.SignatureKind.LocalVariables"/>
</summary>
<exception cref="T:System.BadImageFormatException">The signature is invalid.</exception>
</member>
<member name="P:System.Reflection.Metadata.TypeDefinition.Name">
<summary>
Name of the type.
</summary>
</member>
<member name="P:System.Reflection.Metadata.TypeDefinition.Namespace">
<summary>
Full name of the namespace where the type is defined, or nil if the type is nested or defined in a root namespace.
</summary>
</member>
<member name="P:System.Reflection.Metadata.TypeDefinition.NamespaceDefinition">
<summary>
The definition handle of the namespace where the type is defined, or nil if the type is nested or defined in a root namespace.
</summary>
</member>
<member name="P:System.Reflection.Metadata.TypeDefinition.BaseType">
<summary>
The base type of the type definition: either
<see cref="T:System.Reflection.Metadata.TypeSpecificationHandle"/>, <see cref="T:System.Reflection.Metadata.TypeReferenceHandle"/> or <see cref="T:System.Reflection.Metadata.TypeDefinitionHandle"/>.
</summary>
</member>
<member name="M:System.Reflection.Metadata.TypeDefinition.GetDeclaringType">
<summary>
Returns the enclosing type of a specified nested type or nil handle if the type is not nested.
</summary>
</member>
<member name="M:System.Reflection.Metadata.TypeDefinition.GetNestedTypes">
<summary>
Returns an array of types nested in the specified type.
</summary>
</member>
<member name="P:System.Reflection.Metadata.TypeReference.ResolutionScope">
<summary>
Resolution scope in which the target type is defined and is uniquely identified by the specified <see cref="P:System.Reflection.Metadata.TypeReference.Namespace"/> and <see cref="P:System.Reflection.Metadata.TypeReference.Name"/>.
</summary>
<remarks>
Resolution scope can be one of the following handles:
<list type="bullet">
<item><description><see cref="T:System.Reflection.Metadata.TypeReferenceHandle"/> of the enclosing type, if the target type is a nested type.</description></item>
<item><description><see cref="T:System.Reflection.Metadata.ModuleReferenceHandle"/>, if the target type is defined in another module within the same assembly as this one.</description></item>
<item><description><see cref="F:System.Reflection.Metadata.EntityHandle.ModuleDefinition"/>, if the target type is defined in the current module. This should not occur in a CLI compressed metadata module.</description></item>
<item><description><see cref="T:System.Reflection.Metadata.AssemblyReferenceHandle"/>, if the target type is defined in a different assembly from the current module.</description></item>
<item><description>Nil handle if the target type must be resolved by searching the <see cref="P:System.Reflection.Metadata.MetadataReader.ExportedTypes"/> for a matching <see cref="P:System.Reflection.Metadata.TypeReference.Namespace"/> and <see cref="P:System.Reflection.Metadata.TypeReference.Name"/>.</description></item>
</list>
</remarks>
</member>
<member name="P:System.Reflection.Metadata.TypeReference.Name">
<summary>
Name of the target type.
</summary>
</member>
<member name="P:System.Reflection.Metadata.TypeReference.Namespace">
<summary>
Full name of the namespace where the target type is defined, or nil if the type is nested or defined in a root namespace.
</summary>
</member>
<member name="T:System.Reflection.PortableExecutable.ManagedTextSection">
<summary>
Managed .text PE section.
</summary>
<remarks>
Contains in the following order:
- Import Address Table
- COR Header
- IL
- Metadata
- Managed Resource Data
- Strong Name Signature
- Debug Data (directory and extra info)
- Import Table
- Name Table
- Runtime Startup Stub
- Mapped Field Data
</remarks>
</member>
<member name="P:System.Reflection.PortableExecutable.ManagedTextSection.ILStreamSize">
<summary>
The size of IL stream (unaligned).
</summary>
</member>
<member name="P:System.Reflection.PortableExecutable.ManagedTextSection.MetadataSize">
<summary>
Total size of metadata (header and all streams).
</summary>
</member>
<member name="P:System.Reflection.PortableExecutable.ManagedTextSection.ResourceDataSize">
<summary>
The size of managed resource data stream.
Aligned to <see cref="F:System.Reflection.PortableExecutable.ManagedTextSection.ManagedResourcesDataAlignment"/>.
</summary>
</member>
<member name="P:System.Reflection.PortableExecutable.ManagedTextSection.StrongNameSignatureSize">
<summary>
Size of strong name hash.
</summary>
</member>
<member name="P:System.Reflection.PortableExecutable.ManagedTextSection.DebugDataSize">
<summary>
Size of Debug data.
</summary>
</member>
<member name="P:System.Reflection.PortableExecutable.ManagedTextSection.MappedFieldDataSize">
<summary>
The size of mapped field data stream.
Aligned to <see cref="F:System.Reflection.PortableExecutable.ManagedTextSection.MappedFieldDataAlignment"/>.
</summary>
</member>
<member name="P:System.Reflection.PortableExecutable.ManagedTextSection.RequiresStartupStub">
<summary>
If set, the module must include a machine code stub that transfers control to the virtual execution system.
</summary>
</member>
<member name="P:System.Reflection.PortableExecutable.ManagedTextSection.Requires64bits">
<summary>
If set, the module contains instructions that assume a 64 bit instruction set. For example it may depend on an address being 64 bits.
This may be true even if the module contains only IL instructions because of PlatformInvoke and COM interop.
</summary>
</member>
<member name="M:System.Reflection.PortableExecutable.ManagedTextSection.Serialize(System.Reflection.Metadata.BlobBuilder,System.Int32,System.Int32,System.Reflection.PortableExecutable.CorFlags,System.UInt64,System.Reflection.Metadata.BlobBuilder,System.Reflection.Metadata.BlobBuilder,System.Reflection.Metadata.BlobBuilder,System.Reflection.Metadata.BlobBuilder,System.Reflection.Metadata.BlobBuilder,System.Reflection.Metadata.Blob@)">
<summary>
Serializes .text section data into a specified <paramref name="builder"/>.
</summary>
<param name="builder">An empty builder to serialize section data to.</param>
<param name="relativeVirtualAddess">Relative virtual address of the section within the containing PE file.</param>
<param name="entryPointTokenOrRelativeVirtualAddress">Entry point token or RVA (<see cref="P:System.Reflection.PortableExecutable.CorHeader.EntryPointTokenOrRelativeVirtualAddress"/>)</param>
<param name="corFlags">COR Flags (<see cref="P:System.Reflection.PortableExecutable.CorHeader.Flags"/>).</param>
<param name="baseAddress">Base address of the PE image.</param>
<param name="metadataBuilder"><see cref="T:System.Reflection.Metadata.BlobBuilder"/> containing metadata. Must be populated with data. Linked into the <paramref name="builder"/> and can't be expanded afterwards.</param>
<param name="ilBuilder"><see cref="T:System.Reflection.Metadata.BlobBuilder"/> containing IL stream. Must be populated with data. Linked into the <paramref name="builder"/> and can't be expanded afterwards.</param>
<param name="mappedFieldDataBuilderOpt"><see cref="T:System.Reflection.Metadata.BlobBuilder"/> containing mapped field data. Must be populated with data. Linked into the <paramref name="builder"/> and can't be expanded afterwards.</param>
<param name="resourceBuilderOpt"><see cref="T:System.Reflection.Metadata.BlobBuilder"/> containing managed resource data. Must be populated with data. Linked into the <paramref name="builder"/> and can't be expanded afterwards.</param>
<param name="debugDataBuilderOpt"><see cref="T:System.Reflection.Metadata.BlobBuilder"/> containing PE debug table and data. Must be populated with data. Linked into the <paramref name="builder"/> and can't be expanded afterwards.</param>
<param name="strongNameSignature">Blob reserved in the <paramref name="builder"/> for strong name signature.</param>
</member>
<member name="M:System.Reflection.PortableExecutable.DebugDirectoryBuilder.Serialize(System.Reflection.Metadata.BlobBuilder,System.Reflection.PortableExecutable.SectionLocation,System.Int32)">
<summary>
Serialize the Debug Table and Data.
</summary>
<param name="builder">Builder.</param>
<param name="sectionLocation">The containing PE section location.</param>
<param name="sectionOffset">Offset of the table within the containing section.</param>
</member>
<member name="P:System.Reflection.PortableExecutable.PEDirectoriesBuilder.ExportTable">
<remarks>
Aka IMAGE_DIRECTORY_ENTRY_EXPORT.
</remarks>
</member>
<member name="P:System.Reflection.PortableExecutable.PEDirectoriesBuilder.ImportTable">
<remarks>
Aka IMAGE_DIRECTORY_ENTRY_IMPORT.
</remarks>
</member>
<member name="P:System.Reflection.PortableExecutable.PEDirectoriesBuilder.ResourceTable">
<remarks>
Aka IMAGE_DIRECTORY_ENTRY_RESOURCE.
</remarks>
</member>
<member name="P:System.Reflection.PortableExecutable.PEDirectoriesBuilder.ExceptionTable">
<remarks>
Aka IMAGE_DIRECTORY_ENTRY_EXCEPTION.
</remarks>
</member>
<member name="P:System.Reflection.PortableExecutable.PEDirectoriesBuilder.BaseRelocationTable">
<remarks>
Aka IMAGE_DIRECTORY_ENTRY_BASERELOC.
</remarks>
</member>
<member name="P:System.Reflection.PortableExecutable.PEDirectoriesBuilder.DebugTable">
<remarks>
Aka IMAGE_DIRECTORY_ENTRY_DEBUG.
</remarks>
</member>
<member name="P:System.Reflection.PortableExecutable.PEDirectoriesBuilder.CopyrightTable">
<remarks>
Aka IMAGE_DIRECTORY_ENTRY_COPYRIGHT or IMAGE_DIRECTORY_ENTRY_ARCHITECTURE.
</remarks>
</member>
<member name="P:System.Reflection.PortableExecutable.PEDirectoriesBuilder.GlobalPointerTable">
<remarks>
Aka IMAGE_DIRECTORY_ENTRY_GLOBALPTR.
</remarks>
</member>
<member name="P:System.Reflection.PortableExecutable.PEDirectoriesBuilder.ThreadLocalStorageTable">
<remarks>
Aka IMAGE_DIRECTORY_ENTRY_TLS.
</remarks>
</member>
<member name="P:System.Reflection.PortableExecutable.PEDirectoriesBuilder.LoadConfigTable">
<remarks>
Aka IMAGE_DIRECTORY_ENTRY_LOAD_CONFIG.
</remarks>
</member>
<member name="P:System.Reflection.PortableExecutable.PEDirectoriesBuilder.BoundImportTable">
<remarks>
Aka IMAGE_DIRECTORY_ENTRY_BOUND_IMPORT.
</remarks>
</member>
<member name="P:System.Reflection.PortableExecutable.PEDirectoriesBuilder.ImportAddressTable">
<remarks>
Aka IMAGE_DIRECTORY_ENTRY_IAT.
</remarks>
</member>
<member name="P:System.Reflection.PortableExecutable.PEDirectoriesBuilder.DelayImportTable">
<remarks>
Aka IMAGE_DIRECTORY_ENTRY_DELAY_IMPORT.
</remarks>
</member>
<member name="P:System.Reflection.PortableExecutable.PEDirectoriesBuilder.CorHeaderTable">
<remarks>
Aka IMAGE_DIRECTORY_ENTRY_COM_DESCRIPTOR.
</remarks>
</member>
<member name="T:System.Reflection.PortableExecutable.ResourceSectionBuilder">
<summary>
Base class for PE resource section builder. Implement to provide serialization logic for native resources.
</summary>
</member>
<member name="P:System.Reflection.PortableExecutable.CoffHeader.Machine">
<summary>
The type of target machine.
</summary>
</member>
<member name="P:System.Reflection.PortableExecutable.CoffHeader.NumberOfSections">
<summary>
The number of sections. This indicates the size of the section table, which immediately follows the headers.
</summary>
</member>
<member name="P:System.Reflection.PortableExecutable.CoffHeader.TimeDateStamp">
<summary>
The low 32 bits of the number of seconds since 00:00 January 1, 1970, that indicates when the file was created.
</summary>
</member>
<member name="P:System.Reflection.PortableExecutable.CoffHeader.PointerToSymbolTable">
<summary>
The file pointer to the COFF symbol table, or zero if no COFF symbol table is present.
This value should be zero for a PE image.
</summary>
</member>
<member name="P:System.Reflection.PortableExecutable.CoffHeader.NumberOfSymbols">
<summary>
The number of entries in the symbol table. This data can be used to locate the string table,
which immediately follows the symbol table. This value should be zero for a PE image.
</summary>
</member>
<member name="P:System.Reflection.PortableExecutable.CoffHeader.SizeOfOptionalHeader">
<summary>
The size of the optional header, which is required for executable files but not for object files.
This value should be zero for an object file.
</summary>
</member>
<member name="P:System.Reflection.PortableExecutable.CoffHeader.Characteristics">
<summary>
The flags that indicate the attributes of the file.
</summary>
</member>
<member name="T:System.Reflection.PortableExecutable.CorFlags">
<summary>
COR20Flags
</summary>
</member>
<member name="P:System.Reflection.PortableExecutable.CodeViewDebugDirectoryData.Guid">
<summary>
GUID (Globally Unique Identifier) of the associated PDB.
</summary>
</member>
<member name="P:System.Reflection.PortableExecutable.CodeViewDebugDirectoryData.Age">
<summary>
Iteration of the PDB. The first iteration is 1. The iteration is incremented each time the PDB content is augmented.
</summary>
</member>
<member name="P:System.Reflection.PortableExecutable.CodeViewDebugDirectoryData.Path">
<summary>
Path to the .pdb file containing debug information for the PE/COFF file.
</summary>
</member>
<member name="T:System.Reflection.PortableExecutable.DebugDirectoryEntry">
<summary>
Identifies the location, size and format of a block of debug information.
</summary>
</member>
<member name="P:System.Reflection.PortableExecutable.DebugDirectoryEntry.Stamp">
<summary>
The time and date that the debug data was created if the PE/COFF file is not deterministic,
otherwise a value based on the hash of the content.
</summary>
<remarks>
The algorithm used to calculate this value is an implementation
detail of the tool that produced the file.
</remarks>
</member>
<member name="P:System.Reflection.PortableExecutable.DebugDirectoryEntry.MajorVersion">
<summary>
The major version number of the debug data format.
</summary>
</member>
<member name="P:System.Reflection.PortableExecutable.DebugDirectoryEntry.MinorVersion">
<summary>
The minor version number of the debug data format.
</summary>
</member>
<member name="P:System.Reflection.PortableExecutable.DebugDirectoryEntry.Type">
<summary>
The format of debugging information.
</summary>
</member>
<member name="P:System.Reflection.PortableExecutable.DebugDirectoryEntry.DataSize">
<summary>
The size of the debug data (not including the debug directory itself).
</summary>
</member>
<member name="P:System.Reflection.PortableExecutable.DebugDirectoryEntry.DataRelativeVirtualAddress">
<summary>
The address of the debug data when loaded, relative to the image base.
</summary>
</member>
<member name="P:System.Reflection.PortableExecutable.DebugDirectoryEntry.DataPointer">
<summary>
The file pointer to the debug data.
</summary>
</member>
<member name="F:System.Reflection.PortableExecutable.DebugDirectoryEntryType.Unknown">
<summary>
An unknown value that is ignored by all tools.
</summary>
</member>
<member name="F:System.Reflection.PortableExecutable.DebugDirectoryEntryType.Coff">
<summary>
The COFF debug information (line numbers, symbol table, and string table).
This type of debug information is also pointed to by fields in the file headers.
</summary>
</member>
<member name="F:System.Reflection.PortableExecutable.DebugDirectoryEntryType.CodeView">
<summary>
Associated PDB file description.
</summary>
</member>
<member name="F:System.Reflection.PortableExecutable.DebugDirectoryEntryType.Reproducible">
<summary>
Presence of this entry indicates deterministic PE/COFF file.
</summary>
<remarks>
<para>
The tool that produced the deterministic PE/COFF file guarantees that the entire content of the file
is based solely on documented inputs given to the tool (such as source files, resource files, compiler options, etc.)
rather than ambient environment variables (such as the current time, the operating system,
the bitness of the process running the tool, etc.).
</para>
<para>
The value of field TimeDateStamp in COFF File Header of a deterministic PE/COFF file
does not indicate the date and time when the file was produced and should not be interpreted that way.
Instead the value of the field is derived from a hash of the file content. The algorithm to calculate
this value is an implementation detail of the tool that produced the file.
</para>
<para>
The debug directory entry of type <see cref="F:System.Reflection.PortableExecutable.DebugDirectoryEntryType.Reproducible"/> must have all fields, except for Type zeroed.
</para>
</remarks>
</member>
<member name="F:System.Reflection.PortableExecutable.Machine.Unknown">
<summary>
The target CPU is unknown or not specified.
</summary>
</member>
<member name="F:System.Reflection.PortableExecutable.Machine.I386">
<summary>
Intel 386.
</summary>
</member>
<member name="F:System.Reflection.PortableExecutable.Machine.WceMipsV2">
<summary>
MIPS little-endian WCE v2
</summary>
</member>
<member name="F:System.Reflection.PortableExecutable.Machine.Alpha">
<summary>
Alpha
</summary>
</member>
<member name="F:System.Reflection.PortableExecutable.Machine.SH3">
<summary>
Hitachi SH3 little endian
</summary>
</member>
<member name="F:System.Reflection.PortableExecutable.Machine.SH3Dsp">
<summary>
Hitachi SH3 DSP.
</summary>
</member>
<member name="F:System.Reflection.PortableExecutable.Machine.SH3E">
<summary>
Hitachi SH3 little endian.
</summary>
</member>
<member name="F:System.Reflection.PortableExecutable.Machine.SH4">
<summary>
Hitachi SH4 little endian.
</summary>
</member>
<member name="F:System.Reflection.PortableExecutable.Machine.SH5">
<summary>
Hitachi SH5.
</summary>
</member>
<member name="F:System.Reflection.PortableExecutable.Machine.Arm">
<summary>
ARM little endian
</summary>
</member>
<member name="F:System.Reflection.PortableExecutable.Machine.Thumb">
<summary>
Thumb.
</summary>
</member>
<member name="F:System.Reflection.PortableExecutable.Machine.ArmThumb2">
<summary>
ARM Thumb-2 little endian.
</summary>
</member>
<member name="F:System.Reflection.PortableExecutable.Machine.AM33">
<summary>
Matsushita AM33.
</summary>
</member>
<member name="F:System.Reflection.PortableExecutable.Machine.PowerPC">
<summary>
IBM PowerPC little endian.
</summary>
</member>
<member name="F:System.Reflection.PortableExecutable.Machine.PowerPCFP">
<summary>
PowerPCFP
</summary>
</member>
<member name="F:System.Reflection.PortableExecutable.Machine.IA64">
<summary>
Intel 64
</summary>
</member>
<member name="F:System.Reflection.PortableExecutable.Machine.MIPS16">
<summary>
MIPS
</summary>
</member>
<member name="F:System.Reflection.PortableExecutable.Machine.Alpha64">
<summary>
ALPHA64
</summary>
</member>
<member name="F:System.Reflection.PortableExecutable.Machine.MipsFpu">
<summary>
MIPS with FPU.
</summary>
</member>
<member name="F:System.Reflection.PortableExecutable.Machine.MipsFpu16">
<summary>
MIPS16 with FPU.
</summary>
</member>
<member name="F:System.Reflection.PortableExecutable.Machine.Tricore">
<summary>
Infineon
</summary>
</member>
<member name="F:System.Reflection.PortableExecutable.Machine.Ebc">
<summary>
EFI Byte Code
</summary>
</member>
<member name="F:System.Reflection.PortableExecutable.Machine.Amd64">
<summary>
AMD64 (K8)
</summary>
</member>
<member name="F:System.Reflection.PortableExecutable.Machine.M32R">
<summary>
M32R little-endian
</summary>
</member>
<member name="T:System.Reflection.PortableExecutable.PEBinaryReader">
<summary>
Simple BinaryReader wrapper to:
1) throw BadImageFormat instead of EndOfStream or ArgumentOutOfRange.
2) limit reads to a subset of the base stream.
Only methods that are needed to read PE headers are implemented.
</summary>
</member>
<member name="M:System.Reflection.PortableExecutable.PEBinaryReader.ReadNullPaddedUTF8(System.Int32)">
<summary>
Reads a fixed-length byte block as a null-padded UTF8-encoded string.
The padding is not included in the returned string.
Note that it is legal for UTF8 strings to contain NUL; if NUL occurs
between non-NUL codepoints, it is not considered to be padding and
is included in the result.
</summary>
</member>
<member name="F:System.Reflection.PortableExecutable.DllCharacteristics.ProcessInit">
<summary>
Reserved.
</summary>
</member>
<member name="F:System.Reflection.PortableExecutable.DllCharacteristics.ProcessTerm">
<summary>
Reserved.
</summary>
</member>
<member name="F:System.Reflection.PortableExecutable.DllCharacteristics.ThreadInit">
<summary>
Reserved.
</summary>
</member>
<member name="F:System.Reflection.PortableExecutable.DllCharacteristics.ThreadTerm">
<summary>
Reserved.
</summary>
</member>
<member name="F:System.Reflection.PortableExecutable.DllCharacteristics.HighEntropyVirtualAddressSpace">
<summary>
Image can handle a high entropy 64-bit virtual address space.
</summary>
</member>
<member name="F:System.Reflection.PortableExecutable.DllCharacteristics.DynamicBase">
<summary>
DLL can move.
</summary>
</member>
<member name="F:System.Reflection.PortableExecutable.DllCharacteristics.NxCompatible">
<summary>
Image is NX compatible.
</summary>
</member>
<member name="F:System.Reflection.PortableExecutable.DllCharacteristics.NoIsolation">
<summary>
Image understands isolation and doesn't want it.
</summary>
</member>
<member name="F:System.Reflection.PortableExecutable.DllCharacteristics.NoSeh">
<summary>
Image does not use SEH. No SE handler may reside in this image.
</summary>
</member>
<member name="F:System.Reflection.PortableExecutable.DllCharacteristics.NoBind">
<summary>
Do not bind this image.
</summary>
</member>
<member name="F:System.Reflection.PortableExecutable.DllCharacteristics.AppContainer">
<summary>
The image must run inside an AppContainer.
</summary>
</member>
<member name="F:System.Reflection.PortableExecutable.DllCharacteristics.WdmDriver">
<summary>
Driver uses WDM model.
</summary>
</member>
<member name="P:System.Reflection.PortableExecutable.PEHeader.Magic">
<summary>
Identifies the format of the image file.
</summary>
</member>
<member name="P:System.Reflection.PortableExecutable.PEHeader.MajorLinkerVersion">
<summary>
The linker major version number.
</summary>
</member>
<member name="P:System.Reflection.PortableExecutable.PEHeader.MinorLinkerVersion">
<summary>
The linker minor version number.
</summary>
</member>
<member name="P:System.Reflection.PortableExecutable.PEHeader.SizeOfCode">
<summary>
The size of the code (text) section, or the sum of all code sections if there are multiple sections.
</summary>
</member>
<member name="P:System.Reflection.PortableExecutable.PEHeader.SizeOfInitializedData">
<summary>
The size of the initialized data section, or the sum of all such sections if there are multiple data sections.
</summary>
</member>
<member name="P:System.Reflection.PortableExecutable.PEHeader.SizeOfUninitializedData">
<summary>
The size of the uninitialized data section (BSS), or the sum of all such sections if there are multiple BSS sections.
</summary>
</member>
<member name="P:System.Reflection.PortableExecutable.PEHeader.AddressOfEntryPoint">
<summary>
The address of the entry point relative to the image base when the PE file is loaded into memory.
For program images, this is the starting address. For device drivers, this is the address of the initialization function.
An entry point is optional for DLLs. When no entry point is present, this field must be zero.
</summary>
</member>
<member name="P:System.Reflection.PortableExecutable.PEHeader.BaseOfCode">
<summary>
The address that is relative to the image base of the beginning-of-code section when it is loaded into memory.
</summary>
</member>
<member name="P:System.Reflection.PortableExecutable.PEHeader.BaseOfData">
<summary>
The address that is relative to the image base of the beginning-of-data section when it is loaded into memory.
</summary>
</member>
<member name="P:System.Reflection.PortableExecutable.PEHeader.ImageBase">
<summary>
The preferred address of the first byte of image when loaded into memory;
must be a multiple of 64K.
</summary>
</member>
<member name="P:System.Reflection.PortableExecutable.PEHeader.SectionAlignment">
<summary>
The alignment (in bytes) of sections when they are loaded into memory. It must be greater than or equal to <see cref="P:System.Reflection.PortableExecutable.PEHeader.FileAlignment"/>.
The default is the page size for the architecture.
</summary>
</member>
<member name="P:System.Reflection.PortableExecutable.PEHeader.FileAlignment">
<summary>
The alignment factor (in bytes) that is used to align the raw data of sections in the image file.
The value should be a power of 2 between 512 and 64K, inclusive. The default is 512.
If the <see cref="P:System.Reflection.PortableExecutable.PEHeader.SectionAlignment"/> is less than the architecture's page size,
then <see cref="P:System.Reflection.PortableExecutable.PEHeader.FileAlignment"/> must match <see cref="P:System.Reflection.PortableExecutable.PEHeader.SectionAlignment"/>.
</summary>
</member>
<member name="P:System.Reflection.PortableExecutable.PEHeader.MajorOperatingSystemVersion">
<summary>
The major version number of the required operating system.
</summary>
</member>
<member name="P:System.Reflection.PortableExecutable.PEHeader.MinorOperatingSystemVersion">
<summary>
The minor version number of the required operating system.
</summary>
</member>
<member name="P:System.Reflection.PortableExecutable.PEHeader.MajorImageVersion">
<summary>
The major version number of the image.
</summary>
</member>
<member name="P:System.Reflection.PortableExecutable.PEHeader.MinorImageVersion">
<summary>
The minor version number of the image.
</summary>
</member>
<member name="P:System.Reflection.PortableExecutable.PEHeader.MajorSubsystemVersion">
<summary>
The major version number of the subsystem.
</summary>
</member>
<member name="P:System.Reflection.PortableExecutable.PEHeader.MinorSubsystemVersion">
<summary>
The minor version number of the subsystem.
</summary>
</member>
<member name="P:System.Reflection.PortableExecutable.PEHeader.SizeOfImage">
<summary>
The size (in bytes) of the image, including all headers, as the image is loaded in memory.
It must be a multiple of <see cref="P:System.Reflection.PortableExecutable.PEHeader.SectionAlignment"/>.
</summary>
</member>
<member name="P:System.Reflection.PortableExecutable.PEHeader.SizeOfHeaders">
<summary>
The combined size of an MS DOS stub, PE header, and section headers rounded up to a multiple of FileAlignment.
</summary>
</member>
<member name="P:System.Reflection.PortableExecutable.PEHeader.CheckSum">
<summary>
The image file checksum.
</summary>
</member>
<member name="P:System.Reflection.PortableExecutable.PEHeader.Subsystem">
<summary>
The subsystem that is required to run this image.
</summary>
</member>
<member name="P:System.Reflection.PortableExecutable.PEHeader.SizeOfStackReserve">
<summary>
The size of the stack to reserve. Only <see cref="P:System.Reflection.PortableExecutable.PEHeader.SizeOfStackCommit"/> is committed;
the rest is made available one page at a time until the reserve size is reached.
</summary>
</member>
<member name="P:System.Reflection.PortableExecutable.PEHeader.SizeOfStackCommit">
<summary>
The size of the stack to commit.
</summary>
</member>
<member name="P:System.Reflection.PortableExecutable.PEHeader.SizeOfHeapReserve">
<summary>
The size of the local heap space to reserve. Only <see cref="P:System.Reflection.PortableExecutable.PEHeader.SizeOfHeapCommit"/> is committed;
the rest is made available one page at a time until the reserve size is reached.
</summary>
</member>
<member name="P:System.Reflection.PortableExecutable.PEHeader.SizeOfHeapCommit">
<summary>
The size of the local heap space to commit.
</summary>
</member>
<member name="P:System.Reflection.PortableExecutable.PEHeader.NumberOfRvaAndSizes">
<summary>
The number of data-directory entries in the remainder of the <see cref="T:System.Reflection.PortableExecutable.PEHeader"/>. Each describes a location and size.
</summary>
</member>
<member name="P:System.Reflection.PortableExecutable.PEHeader.ExportTableDirectory">
<remarks>
Aka IMAGE_DIRECTORY_ENTRY_EXPORT.
</remarks>
</member>
<member name="P:System.Reflection.PortableExecutable.PEHeader.ImportTableDirectory">
<remarks>
Aka IMAGE_DIRECTORY_ENTRY_IMPORT.
</remarks>
</member>
<member name="P:System.Reflection.PortableExecutable.PEHeader.ResourceTableDirectory">
<remarks>
Aka IMAGE_DIRECTORY_ENTRY_RESOURCE.
</remarks>
</member>
<member name="P:System.Reflection.PortableExecutable.PEHeader.ExceptionTableDirectory">
<remarks>
Aka IMAGE_DIRECTORY_ENTRY_EXCEPTION.
</remarks>
</member>
<member name="P:System.Reflection.PortableExecutable.PEHeader.CertificateTableDirectory">
<summary>
The Certificate Table entry points to a table of attribute certificates.
</summary>
<remarks>
These certificates are not loaded into memory as part of the image.
As such, the first field of this entry, which is normally an RVA, is a file pointer instead.
Aka IMAGE_DIRECTORY_ENTRY_SECURITY.
</remarks>
</member>
<member name="P:System.Reflection.PortableExecutable.PEHeader.BaseRelocationTableDirectory">
<remarks>
Aka IMAGE_DIRECTORY_ENTRY_BASERELOC.
</remarks>
</member>
<member name="P:System.Reflection.PortableExecutable.PEHeader.DebugTableDirectory">
<remarks>
Aka IMAGE_DIRECTORY_ENTRY_DEBUG.
</remarks>
</member>
<member name="P:System.Reflection.PortableExecutable.PEHeader.CopyrightTableDirectory">
<remarks>
Aka IMAGE_DIRECTORY_ENTRY_COPYRIGHT or IMAGE_DIRECTORY_ENTRY_ARCHITECTURE.
</remarks>
</member>
<member name="P:System.Reflection.PortableExecutable.PEHeader.GlobalPointerTableDirectory">
<remarks>
Aka IMAGE_DIRECTORY_ENTRY_GLOBALPTR.
</remarks>
</member>
<member name="P:System.Reflection.PortableExecutable.PEHeader.ThreadLocalStorageTableDirectory">
<remarks>
Aka IMAGE_DIRECTORY_ENTRY_TLS.
</remarks>
</member>
<member name="P:System.Reflection.PortableExecutable.PEHeader.LoadConfigTableDirectory">
<remarks>
Aka IMAGE_DIRECTORY_ENTRY_LOAD_CONFIG.
</remarks>
</member>
<member name="P:System.Reflection.PortableExecutable.PEHeader.BoundImportTableDirectory">
<remarks>
Aka IMAGE_DIRECTORY_ENTRY_BOUND_IMPORT.
</remarks>
</member>
<member name="P:System.Reflection.PortableExecutable.PEHeader.ImportAddressTableDirectory">
<remarks>
Aka IMAGE_DIRECTORY_ENTRY_IAT.
</remarks>
</member>
<member name="P:System.Reflection.PortableExecutable.PEHeader.DelayImportTableDirectory">
<remarks>
Aka IMAGE_DIRECTORY_ENTRY_DELAY_IMPORT.
</remarks>
</member>
<member name="P:System.Reflection.PortableExecutable.PEHeader.CorHeaderTableDirectory">
<remarks>
Aka IMAGE_DIRECTORY_ENTRY_COM_DESCRIPTOR.
</remarks>
</member>
<member name="T:System.Reflection.PortableExecutable.PEHeaders">
<summary>
An object used to read PE (Portable Executable) and COFF (Common Object File Format) headers from a stream.
</summary>
</member>
<member name="M:System.Reflection.PortableExecutable.PEHeaders.#ctor(System.IO.Stream)">
<summary>
Reads PE headers from the current location in the stream.
</summary>
<param name="peStream">Stream containing PE image starting at the stream's current position and ending at the end of the stream.</param>
<exception cref="T:System.BadImageFormatException">The data read from stream have invalid format.</exception>
<exception cref="T:System.IO.IOException">Error reading from the stream.</exception>
<exception cref="T:System.ArgumentException">The stream doesn't support seek operations.</exception>
<exception cref="T:System.ArgumentNullException"><paramref name="peStream"/> is null.</exception>
</member>
<member name="M:System.Reflection.PortableExecutable.PEHeaders.#ctor(System.IO.Stream,System.Int32)">
<summary>
Reads PE headers from the current location in the stream.
</summary>
<param name="peStream">Stream containing PE image of the given size starting at its current position.</param>
<param name="size">Size of the PE image.</param>
<exception cref="T:System.BadImageFormatException">The data read from stream have invalid format.</exception>
<exception cref="T:System.IO.IOException">Error reading from the stream.</exception>
<exception cref="T:System.ArgumentException">The stream doesn't support seek operations.</exception>
<exception cref="T:System.ArgumentNullException"><paramref name="peStream"/> is null.</exception>
<exception cref="T:System.ArgumentOutOfRangeException">Size is negative or extends past the end of the stream.</exception>
</member>
<member name="P:System.Reflection.PortableExecutable.PEHeaders.MetadataStartOffset">
<summary>
Gets the offset (in bytes) from the start of the PE image to the start of the CLI metadata.
or -1 if the image does not contain metadata.
</summary>
</member>
<member name="P:System.Reflection.PortableExecutable.PEHeaders.MetadataSize">
<summary>
Gets the size of the CLI metadata 0 if the image does not contain metadata.)
</summary>
</member>
<member name="P:System.Reflection.PortableExecutable.PEHeaders.CoffHeader">
<summary>
Gets the COFF header of the image.
</summary>
</member>
<member name="P:System.Reflection.PortableExecutable.PEHeaders.CoffHeaderStartOffset">
<summary>
Gets the byte offset from the start of the PE image to the start of the COFF header.
</summary>
</member>
<member name="P:System.Reflection.PortableExecutable.PEHeaders.IsCoffOnly">
<summary>
Determines if the image is Coff only.
</summary>
</member>
<member name="P:System.Reflection.PortableExecutable.PEHeaders.PEHeader">
<summary>
Gets the PE header of the image or null if the image is COFF only.
</summary>
</member>
<member name="P:System.Reflection.PortableExecutable.PEHeaders.PEHeaderStartOffset">
<summary>
Gets the byte offset from the start of the image to
</summary>
</member>
<member name="P:System.Reflection.PortableExecutable.PEHeaders.SectionHeaders">
<summary>
Gets the PE section headers.
</summary>
</member>
<member name="P:System.Reflection.PortableExecutable.PEHeaders.CorHeader">
<summary>
Gets the CLI header or null if the image does not have one.
</summary>
</member>
<member name="P:System.Reflection.PortableExecutable.PEHeaders.CorHeaderStartOffset">
<summary>
Gets the byte offset from the start of the image to the COR header or -1 if the image does not have one.
</summary>
</member>
<member name="P:System.Reflection.PortableExecutable.PEHeaders.IsConsoleApplication">
<summary>
Determines if the image represents a Windows console application.
</summary>
</member>
<member name="P:System.Reflection.PortableExecutable.PEHeaders.IsDll">
<summary>
Determines if the image represents a dynamically linked library.
</summary>
</member>
<member name="P:System.Reflection.PortableExecutable.PEHeaders.IsExe">
<summary>
Determines if the image represents an executable.
</summary>
</member>
<member name="M:System.Reflection.PortableExecutable.PEHeaders.TryGetDirectoryOffset(System.Reflection.PortableExecutable.DirectoryEntry,System.Int32@)">
<summary>
Gets the offset (in bytes) from the start of the image to the given directory entry.
</summary>
<param name="directory"></param>
<param name="offset"></param>
<returns>The section containing the directory could not be found.</returns>
<exception cref="T:System.BadImageFormatException">The section containing the</exception>
</member>
<member name="M:System.Reflection.PortableExecutable.PEHeaders.GetContainingSectionIndex(System.Int32)">
<summary>
Searches sections of the PE image for the one that contains specified Relative Virtual Address.
</summary>
<param name="relativeVirtualAddress">Address.</param>
<returns>
Index of the section that contains <paramref name="relativeVirtualAddress"/>,
or -1 if there is none.
</returns>
</member>
<member name="T:System.Reflection.PortableExecutable.PEReader">
<summary>
Portable Executable format reader.
</summary>
<remarks>
The implementation is thread-safe, that is multiple threads can read data from the reader in parallel.
Disposal of the reader is not thread-safe (see <see cref="M:System.Reflection.PortableExecutable.PEReader.Dispose"/>).
</remarks>
</member>
<member name="M:System.Reflection.PortableExecutable.PEReader.#ctor(System.Byte*,System.Int32)">
<summary>
Creates a Portable Executable reader over a PE image stored in memory.
</summary>
<param name="peImage">Pointer to the start of the PE image.</param>
<param name="size">The size of the PE image.</param>
<exception cref="T:System.ArgumentNullException"><paramref name="peImage"/> is <see cref="F:System.IntPtr.Zero"/>.</exception>
<exception cref="T:System.ArgumentOutOfRangeException"><paramref name="size"/> is negative.</exception>
<remarks>
The memory is owned by the caller and not released on disposal of the <see cref="T:System.Reflection.PortableExecutable.PEReader"/>.
The caller is responsible for keeping the memory alive and unmodified throughout the lifetime of the <see cref="T:System.Reflection.PortableExecutable.PEReader"/>.
The content of the image is not read during the construction of the <see cref="T:System.Reflection.PortableExecutable.PEReader"/>
</remarks>
</member>
<member name="M:System.Reflection.PortableExecutable.PEReader.#ctor(System.IO.Stream)">
<summary>
Creates a Portable Executable reader over a PE image stored in a stream.
</summary>
<param name="peStream">PE image stream.</param>
<exception cref="T:System.ArgumentNullException"><paramref name="peStream"/> is null.</exception>
<remarks>
Ownership of the stream is transferred to the <see cref="T:System.Reflection.PortableExecutable.PEReader"/> upon successful validation of constructor arguments. It will be
disposed by the <see cref="T:System.Reflection.PortableExecutable.PEReader"/> and the caller must not manipulate it.
</remarks>
</member>
<member name="M:System.Reflection.PortableExecutable.PEReader.#ctor(System.IO.Stream,System.Reflection.PortableExecutable.PEStreamOptions)">
<summary>
Creates a Portable Executable reader over a PE image stored in a stream beginning at its current position and ending at the end of the stream.
</summary>
<param name="peStream">PE image stream.</param>
<param name="options">
Options specifying how sections of the PE image are read from the stream.
Unless <see cref="F:System.Reflection.PortableExecutable.PEStreamOptions.LeaveOpen"/> is specified, ownership of the stream is transferred to the <see cref="T:System.Reflection.PortableExecutable.PEReader"/>
upon successful argument validation. It will be disposed by the <see cref="T:System.Reflection.PortableExecutable.PEReader"/> and the caller must not manipulate it.
Unless <see cref="F:System.Reflection.PortableExecutable.PEStreamOptions.PrefetchMetadata"/> or <see cref="F:System.Reflection.PortableExecutable.PEStreamOptions.PrefetchEntireImage"/> is specified no data
is read from the stream during the construction of the <see cref="T:System.Reflection.PortableExecutable.PEReader"/>. Furthermore, the stream must not be manipulated
by caller while the <see cref="T:System.Reflection.PortableExecutable.PEReader"/> is alive and undisposed.
If <see cref="F:System.Reflection.PortableExecutable.PEStreamOptions.PrefetchMetadata"/> or <see cref="F:System.Reflection.PortableExecutable.PEStreamOptions.PrefetchEntireImage"/>, the <see cref="T:System.Reflection.PortableExecutable.PEReader"/>
will have read all of the data requested during construction. As such, if <see cref="F:System.Reflection.PortableExecutable.PEStreamOptions.LeaveOpen"/> is also
specified, the caller retains full ownership of the stream and is assured that it will not be manipulated by the <see cref="T:System.Reflection.PortableExecutable.PEReader"/>
after construction.
</param>
<exception cref="T:System.ArgumentNullException"><paramref name="peStream"/> is null.</exception>
<exception cref="T:System.ArgumentOutOfRangeException"><paramref name="options"/> has an invalid value.</exception>
<exception cref="T:System.BadImageFormatException">
<see cref="F:System.Reflection.PortableExecutable.PEStreamOptions.PrefetchMetadata"/> is specified and the PE headers of the image are invalid.
</exception>
</member>
<member name="M:System.Reflection.PortableExecutable.PEReader.#ctor(System.IO.Stream,System.Reflection.PortableExecutable.PEStreamOptions,System.Int32)">
<summary>
Creates a Portable Executable reader over a PE image of the given size beginning at the stream's current position.
</summary>
<param name="peStream">PE image stream.</param>
<param name="size">PE image size.</param>
<param name="options">
Options specifying how sections of the PE image are read from the stream.
Unless <see cref="F:System.Reflection.PortableExecutable.PEStreamOptions.LeaveOpen"/> is specified, ownership of the stream is transferred to the <see cref="T:System.Reflection.PortableExecutable.PEReader"/>
upon successful argument validation. It will be disposed by the <see cref="T:System.Reflection.PortableExecutable.PEReader"/> and the caller must not manipulate it.
Unless <see cref="F:System.Reflection.PortableExecutable.PEStreamOptions.PrefetchMetadata"/> or <see cref="F:System.Reflection.PortableExecutable.PEStreamOptions.PrefetchEntireImage"/> is specified no data
is read from the stream during the construction of the <see cref="T:System.Reflection.PortableExecutable.PEReader"/>. Furthermore, the stream must not be manipulated
by caller while the <see cref="T:System.Reflection.PortableExecutable.PEReader"/> is alive and undisposed.
If <see cref="F:System.Reflection.PortableExecutable.PEStreamOptions.PrefetchMetadata"/> or <see cref="F:System.Reflection.PortableExecutable.PEStreamOptions.PrefetchEntireImage"/>, the <see cref="T:System.Reflection.PortableExecutable.PEReader"/>
will have read all of the data requested during construction. As such, if <see cref="F:System.Reflection.PortableExecutable.PEStreamOptions.LeaveOpen"/> is also
specified, the caller retains full ownership of the stream and is assured that it will not be manipulated by the <see cref="T:System.Reflection.PortableExecutable.PEReader"/>
after construction.
</param>
<exception cref="T:System.ArgumentOutOfRangeException">Size is negative or extends past the end of the stream.</exception>
</member>
<member name="M:System.Reflection.PortableExecutable.PEReader.#ctor(System.Collections.Immutable.ImmutableArray{System.Byte})">
<summary>
Creates a Portable Executable reader over a PE image stored in a byte array.
</summary>
<param name="peImage">PE image.</param>
<remarks>
The content of the image is not read during the construction of the <see cref="T:System.Reflection.PortableExecutable.PEReader"/>
</remarks>
<exception cref="T:System.ArgumentNullException"><paramref name="peImage"/> is null.</exception>
</member>
<member name="M:System.Reflection.PortableExecutable.PEReader.Dispose">
<summary>
Disposes all memory allocated by the reader.
</summary>
<remarks>
<see cref="M:System.Reflection.PortableExecutable.PEReader.Dispose"/> can be called multiple times (but not in parallel).
It is not safe to call <see cref="M:System.Reflection.PortableExecutable.PEReader.Dispose"/> in parallel with any other operation on the <see cref="T:System.Reflection.PortableExecutable.PEReader"/>
or reading from <see cref="T:System.Reflection.PortableExecutable.PEMemoryBlock"/>s retrieved from the reader.
</remarks>
</member>
<member name="P:System.Reflection.PortableExecutable.PEReader.PEHeaders">
<summary>
Gets the PE headers.
</summary>
<exception cref="T:System.BadImageFormatException">The headers contain invalid data.</exception>
</member>
<member name="M:System.Reflection.PortableExecutable.PEReader.GetEntireImageBlock">
<summary>
Returns a view of the entire image as a pointer and length.
</summary>
<exception cref="T:System.InvalidOperationException">PE image not available.</exception>
</member>
<member name="P:System.Reflection.PortableExecutable.PEReader.IsEntireImageAvailable">
<summary>
Return true if the reader can access the entire PE image.
</summary>
<remarks>
Returns false if the <see cref="T:System.Reflection.PortableExecutable.PEReader"/> is constructed from a stream and only part of it is prefetched into memory.
</remarks>
</member>
<member name="M:System.Reflection.PortableExecutable.PEReader.GetEntireImage">
<summary>
Gets a pointer to and size of the PE image if available (<see cref="P:System.Reflection.PortableExecutable.PEReader.IsEntireImageAvailable"/>).
</summary>
<exception cref="T:System.InvalidOperationException">The entire PE image is not available.</exception>
</member>
<member name="P:System.Reflection.PortableExecutable.PEReader.HasMetadata">
<summary>
Returns true if the PE image contains CLI metadata.
</summary>
<exception cref="T:System.BadImageFormatException">The PE headers contain invalid data.</exception>
</member>
<member name="M:System.Reflection.PortableExecutable.PEReader.GetMetadata">
<summary>
Loads PE section that contains CLI metadata.
</summary>
<exception cref="T:System.InvalidOperationException">The PE image doesn't contain metadata (<see cref="P:System.Reflection.PortableExecutable.PEReader.HasMetadata"/> returns false).</exception>
<exception cref="T:System.BadImageFormatException">The PE headers contain invalid data.</exception>
</member>
<member name="M:System.Reflection.PortableExecutable.PEReader.GetSectionData(System.Int32)">
<summary>
Loads PE section that contains the specified <paramref name="relativeVirtualAddress"/> into memory
and returns a memory block that starts at <paramref name="relativeVirtualAddress"/> and ends at the end of the containing section.
</summary>
<param name="relativeVirtualAddress">Relative Virtual Address of the data to read.</param>
<returns>
An empty block if <paramref name="relativeVirtualAddress"/> doesn't represent a location in any of the PE sections of this PE image.
</returns>
<exception cref="T:System.BadImageFormatException">The PE headers contain invalid data.</exception>
</member>
<member name="M:System.Reflection.PortableExecutable.PEReader.ReadDebugDirectory">
<summary>
Reads all Debug Directory table entries.
</summary>
<exception cref="T:System.BadImageFormatException">Bad format of the entry.</exception>
</member>
<member name="M:System.Reflection.PortableExecutable.PEReader.ReadCodeViewDebugDirectoryData(System.Reflection.PortableExecutable.DebugDirectoryEntry)">
<summary>
Reads the data pointed to by the specified Debug Directory entry and interprets them as CodeView.
</summary>
<exception cref="T:System.ArgumentException"><paramref name="entry"/> is not a CodeView entry.</exception>
<exception cref="T:System.BadImageFormatException">Bad format of the data.</exception>
</member>
<member name="F:System.Reflection.PortableExecutable.PEStreamOptions.Default">
<summary>
By default the stream is disposed when <see cref="T:System.Reflection.PortableExecutable.PEReader"/> is disposed and sections of the PE image are read lazily.
</summary>
</member>
<member name="F:System.Reflection.PortableExecutable.PEStreamOptions.LeaveOpen">
<summary>
Keep the stream open when the <see cref="T:System.Reflection.PortableExecutable.PEReader"/> is disposed.
</summary>
</member>
<member name="F:System.Reflection.PortableExecutable.PEStreamOptions.PrefetchMetadata">
<summary>
Reads metadata section into memory right away.
</summary>
<remarks>
Reading from other sections of the file is not allowed (<see cref="T:System.InvalidOperationException"/> is thrown by the <see cref="T:System.Reflection.PortableExecutable.PEReader"/>).
The underlying file may be closed and even deleted after <see cref="T:System.Reflection.PortableExecutable.PEReader"/> is constructed.
<see cref="T:System.Reflection.PortableExecutable.PEReader"/> closes the stream automatically by the time the constructor returns unless <see cref="F:System.Reflection.PortableExecutable.PEStreamOptions.LeaveOpen"/> is specified.
</remarks>
</member>
<member name="F:System.Reflection.PortableExecutable.PEStreamOptions.PrefetchEntireImage">
<summary>
Reads the entire image into memory right away.
</summary>
<remarks>
<see cref="T:System.Reflection.PortableExecutable.PEReader"/> closes the stream automatically by the time the constructor returns unless <see cref="F:System.Reflection.PortableExecutable.PEStreamOptions.LeaveOpen"/> is specified.
</remarks>
</member>
<member name="P:System.Reflection.PortableExecutable.SectionHeader.Name">
<summary>
The name of the section.
</summary>
</member>
<member name="P:System.Reflection.PortableExecutable.SectionHeader.VirtualSize">
<summary>
The total size of the section when loaded into memory.
If this value is greater than <see cref="P:System.Reflection.PortableExecutable.SectionHeader.SizeOfRawData"/>, the section is zero-padded.
This field is valid only for PE images and should be set to zero for object files.
</summary>
</member>
<member name="P:System.Reflection.PortableExecutable.SectionHeader.VirtualAddress">
<summary>
For PE images, the address of the first byte of the section relative to the image base when the
section is loaded into memory. For object files, this field is the address of the first byte before
relocation is applied; for simplicity, compilers should set this to zero. Otherwise,
it is an arbitrary value that is subtracted from offsets during relocation.
</summary>
</member>
<member name="P:System.Reflection.PortableExecutable.SectionHeader.SizeOfRawData">
<summary>
The size of the section (for object files) or the size of the initialized data on disk (for image files).
For PE images, this must be a multiple of <see cref="P:System.Reflection.PortableExecutable.PEHeader.FileAlignment"/>.
If this is less than <see cref="P:System.Reflection.PortableExecutable.SectionHeader.VirtualSize"/>, the remainder of the section is zero-filled.
Because the <see cref="P:System.Reflection.PortableExecutable.SectionHeader.SizeOfRawData"/> field is rounded but the <see cref="P:System.Reflection.PortableExecutable.SectionHeader.VirtualSize"/> field is not,
it is possible for <see cref="P:System.Reflection.PortableExecutable.SectionHeader.SizeOfRawData"/> to be greater than <see cref="P:System.Reflection.PortableExecutable.SectionHeader.VirtualSize"/> as well.
When a section contains only uninitialized data, this field should be zero.
</summary>
</member>
<member name="P:System.Reflection.PortableExecutable.SectionHeader.PointerToRawData">
<summary>
The file pointer to the first page of the section within the COFF file.
For PE images, this must be a multiple of <see cref="P:System.Reflection.PortableExecutable.PEHeader.FileAlignment"/>.
For object files, the value should be aligned on a 4 byte boundary for best performance.
When a section contains only uninitialized data, this field should be zero.
</summary>
</member>
<member name="P:System.Reflection.PortableExecutable.SectionHeader.PointerToRelocations">
<summary>
The file pointer to the beginning of relocation entries for the section.
This is set to zero for PE images or if there are no relocations.
</summary>
</member>
<member name="P:System.Reflection.PortableExecutable.SectionHeader.PointerToLineNumbers">
<summary>
The file pointer to the beginning of line-number entries for the section.
This is set to zero if there are no COFF line numbers.
This value should be zero for an image because COFF debugging information is deprecated.
</summary>
</member>
<member name="P:System.Reflection.PortableExecutable.SectionHeader.NumberOfRelocations">
<summary>
The number of relocation entries for the section. This is set to zero for PE images.
</summary>
</member>
<member name="P:System.Reflection.PortableExecutable.SectionHeader.NumberOfLineNumbers">
<summary>
The number of line-number entries for the section.
This value should be zero for an image because COFF debugging information is deprecated.
</summary>
</member>
<member name="P:System.Reflection.PortableExecutable.SectionHeader.SectionCharacteristics">
<summary>
The flags that describe the characteristics of the section.
</summary>
</member>
<member name="F:System.Reflection.MethodSemanticsAttributes.Setter">
<summary>
Used to modify the value of the property.
CLS-compliant setters are named with set_ prefix.
</summary>
</member>
<member name="F:System.Reflection.MethodSemanticsAttributes.Getter">
<summary>
Used to read the value of the property.
CLS-compliant getters are named with get_ prefix.
</summary>
</member>
<member name="F:System.Reflection.MethodSemanticsAttributes.Other">
<summary>
Other method for property (not getter or setter) or event (not adder, remover, or raiser).
</summary>
</member>
<member name="F:System.Reflection.MethodSemanticsAttributes.Adder">
<summary>
Used to add a handler for an event.
Corresponds to the AddOn flag in the Ecma 335 CLI specification.
CLS-compliant adders are named with add_ prefix.
</summary>
</member>
<member name="F:System.Reflection.MethodSemanticsAttributes.Remover">
<summary>
Used to remove a handler for an event.
Corresponds to the RemoveOn flag in the Ecma 335 CLI specification.
CLS-compliant removers are named with remove_ prefix.
</summary>
</member>
<member name="F:System.Reflection.MethodSemanticsAttributes.Raiser">
<summary>
Used to indicate that an event has occurred.
Corresponds to the Fire flag in the Ecma 335 CLI specification.
CLS-compliant raisers are named with raise_ prefix.
</summary>
</member>
<member name="T:System.Reflection.DeclarativeSecurityAction">
<summary>
Specifies the security actions that can be performed using declarative security.
</summary>
</member>
<member name="F:System.Reflection.DeclarativeSecurityAction.None">
<summary>
No declarative security action.
</summary>
</member>
<member name="F:System.Reflection.DeclarativeSecurityAction.Demand">
<summary>
Check that all callers in the call chain have been granted specified permission,
</summary>
</member>
<member name="F:System.Reflection.DeclarativeSecurityAction.Assert">
<summary>
The calling code can access the resource identified by the current permission object, even if callers higher in the stack have not been granted permission to access the resource.
</summary>
</member>
<member name="F:System.Reflection.DeclarativeSecurityAction.Deny">
<summary>
Without further checks refuse Demand for the specified permission.
</summary>
</member>
<member name="F:System.Reflection.DeclarativeSecurityAction.PermitOnly">
<summary>
Without further checks, refuse Demand for all permissions other than those specified.
</summary>
</member>
<member name="F:System.Reflection.DeclarativeSecurityAction.LinkDemand">
<summary>
Check that the immediate caller has been granted the specified permission;
</summary>
</member>
<member name="F:System.Reflection.DeclarativeSecurityAction.InheritanceDemand">
<summary>
The derived class inheriting the class or overriding a method is required to have been granted the specified permission.
</summary>
</member>
<member name="F:System.Reflection.DeclarativeSecurityAction.RequestMinimum">
<summary>
The request for the minimum permissions required for code to run. This action can only be used within the scope of the assembly.
</summary>
</member>
<member name="F:System.Reflection.DeclarativeSecurityAction.RequestOptional">
<summary>
The request for additional permissions that are optional (not required to run). This request implicitly refuses all other permissions not specifically requested. This action can only be used within the scope of the assembly.
</summary>
</member>
<member name="F:System.Reflection.DeclarativeSecurityAction.RequestRefuse">
<summary>
The request that permissions that might be misused will not be granted to the calling code. This action can only be used within the scope of the assembly.
</summary>
</member>
<member name="F:System.Reflection.ManifestResourceAttributes.Public">
<summary>
The Resource is exported from the Assembly
</summary>
</member>
<member name="F:System.Reflection.ManifestResourceAttributes.Private">
<summary>
The Resource is not exported from the Assembly
</summary>
</member>
<member name="F:System.Reflection.ManifestResourceAttributes.VisibilityMask">
<summary>
Masks just the visibility-related attributes.
</summary>
</member>
<member name="T:System.Reflection.AssemblyHashAlgorithm">
<summary>
Specifies all the hash algorithms used for hashing assembly files and for generating the strong name.
</summary>
</member>
<member name="F:System.Reflection.AssemblyHashAlgorithm.None">
<summary>
A mask indicating that there is no hash algorithm. If you specify None for a multi-module assembly, the common language runtime defaults to the SHA1 algorithm, since multi-module assemblies need to generate a hash.
</summary>
</member>
<member name="F:System.Reflection.AssemblyHashAlgorithm.MD5">
<summary>
Retrieves the MD5 message-digest algorithm. MD5 was developed by Rivest in 1991. It is basically MD4 with safety-belts and while it is slightly slower than MD4, it helps provide more security. The algorithm consists of four distinct rounds, which has a slightly different design from that of MD4. Message-digest size, as well as padding requirements, remain the same.
</summary>
</member>
<member name="F:System.Reflection.AssemblyHashAlgorithm.Sha1">
<summary>
Retrieves a revision of the Secure Hash Algorithm that corrects an unpublished flaw in SHA.
</summary>
</member>
<member name="F:System.Reflection.AssemblyHashAlgorithm.Sha256">
<summary>
Retrieves a version of the Secure Hash Algorithm with a hash size of 256 bits.
</summary>
</member>
<member name="F:System.Reflection.AssemblyHashAlgorithm.Sha384">
<summary>
Retrieves a version of the Secure Hash Algorithm with a hash size of 384 bits.
</summary>
</member>
<member name="F:System.Reflection.AssemblyHashAlgorithm.Sha512">
<summary>
Retrieves a version of the Secure Hash Algorithm with a hash size of 512 bits.
</summary>
</member>
<member name="F:System.Reflection.AssemblyFlags.PublicKey">
<summary>
The assembly reference holds the full (unhashed) public key.
Not applicable on assembly definition.
</summary>
</member>
<member name="F:System.Reflection.AssemblyFlags.Retargetable">
<summary>
The implementation of the referenced assembly used at runtime is not expected to match the version seen at compile time.
</summary>
</member>
<member name="F:System.Reflection.AssemblyFlags.WindowsRuntime">
<summary>
The assembly contains Windows Runtime code.
</summary>
</member>
<member name="F:System.Reflection.AssemblyFlags.ContentTypeMask">
<summary>
Content type mask. Masked bits correspond to values of <see cref="T:System.Reflection.AssemblyContentType"/>.
</summary>
</member>
<member name="F:System.Reflection.AssemblyFlags.DisableJitCompileOptimizer">
<summary>
Specifies that just-in-time (JIT) compiler optimization is disabled for the assembly.
</summary>
</member>
<member name="F:System.Reflection.AssemblyFlags.EnableJitCompileTracking">
<summary>
Specifies that just-in-time (JIT) compiler tracking is enabled for the assembly.
</summary>
</member>
</members>
</doc>