jt
2021-06-10 5d0d028456874576560552f5a5c4e8b801786f11
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
<?xml version="1.0"?>
<doc>
    <assembly>
        <name>Microsoft.Diagnostics.Tracing.EventSource</name>
    </assembly>
    <members>
        <member name="T:Microsoft.Diagnostics.Tracing.ActivityTracker">
             <summary>
             Tracks activities.  This is meant to be a singleton (accessed by the ActivityTracer.Instance static property)
              
             Logically this is simply holds the m_current variable that holds the async local that holds the current ActivityInfo
             An ActivityInfo is represents a activity (which knows its creator and thus knows its path). 
            
             Most of the magic is in the async local (it gets copied to new tasks)
             
             On every start event call OnStart 
             
                 Guid activityID;
                 Guid relatedActivityID;
                 if (OnStart(activityName, out activityID, out relatedActivityID, ForceStop, options))
                     // Log Start event with activityID and relatedActivityID
                 
             On every stop event call OnStop
             
                 Guid activityID;
                 if (OnStop(activityName, ref activityID  ForceStop))
                     // Stop event with activityID
                        
             On any normal event log the event with activityTracker.CurrentActivityId
             </summary>
        </member>
        <member name="M:Microsoft.Diagnostics.Tracing.ActivityTracker.OnStart(System.String,System.String,System.Int32,System.Guid@,System.Guid@,Microsoft.Diagnostics.Tracing.EventActivityOptions)">
            <summary>
            Called on work item begins.  The activity name = providerName + activityName without 'Start' suffix.
            It updates CurrentActivityId to track.   
            
            It returns true if the Start should be logged, otherwise (if it is illegal recursion) it return false. 
            
            The start event should use as its activity ID the CurrentActivityId AFTER calling this routine and its
            RelatedActivityID the CurrentActivityId BEFORE calling this routine (the creator).  
            
            If activity tracing is not on, then activityId and relatedActivityId are not set
            </summary>
        </member>
        <member name="M:Microsoft.Diagnostics.Tracing.ActivityTracker.OnStop(System.String,System.String,System.Int32,System.Guid@)">
             <summary>
             Called when a work item stops.  The activity name = providerName + activityName without 'Stop' suffix.
             It updates m_current variable to track this fact.   The Stop event associated with stop should log the ActivityID associated with the event.
            
             If activity tracing is not on, then activityId and relatedActivityId are not set
             </summary>
        </member>
        <member name="M:Microsoft.Diagnostics.Tracing.ActivityTracker.Enable">
            <summary>
            Turns on activity tracking.    It is sticky, once on it stays on (race issues otherwise)
            </summary>
        </member>
        <member name="M:Microsoft.Diagnostics.Tracing.ActivityTracker.FindActiveActivity(System.String,Microsoft.Diagnostics.Tracing.ActivityTracker.ActivityInfo)">
            <summary>
            Searched for a active (nonstopped) activity with the given name.  Returns null if not found.  
            </summary>
        </member>
        <member name="M:Microsoft.Diagnostics.Tracing.ActivityTracker.NormalizeActivityName(System.String,System.String,System.Int32)">
            <summary>
            Strip out "Start" or "End" suffix from activity name and add providerName prefix.
            If 'task'  it does not end in Start or Stop and Task is non-zero use that as the name of the activity
            </summary>
        </member>
        <member name="F:Microsoft.Diagnostics.Tracing.ActivityTracker.m_current">
            <summary>
            Async local variables have the properly that the are automatically copied whenever a task is created and used
            while that task is running.   Thus m_current 'flows' to any task that is caused by the current thread that
            last set it.   
            
            This variable points a a linked list that represents all Activities that have started but have not stopped.  
            </summary>
        </member>
        <member name="P:Microsoft.Diagnostics.Tracing.ActivityTracker.Instance">
            <summary>
            An activity tracker is a singleton, this is how you get the one and only instance.
            </summary>
        </member>
        <member name="P:Microsoft.Diagnostics.Tracing.ActivityTracker.CurrentActivityId">
            <summary>
            The current activity ID.  Use this to log normal events.  
            </summary>
        </member>
        <member name="T:Microsoft.Diagnostics.Tracing.ActivityTracker.ActivityInfo">
            <summary>
            An ActivityInfo represents a particular activity.   It is almost read-only.   The only
            fields that change after creation are
               m_lastChildID - used to generate unique IDs for the children activities and for the most part can be ignored.
               m_stopped - indicates that this activity is dead 
            This read-only-ness is important because an activity's  m_creator chain forms the 
            'Path of creation' for the activity (which is also its unique ID) but is also used as
            the 'list of live parents' which indicate of those ancestors, which are alive (if they
            are not marked dead they are alive).   
            </summary>
        </member>
        <member name="M:Microsoft.Diagnostics.Tracing.ActivityTracker.ActivityInfo.CreateActivityPathGuid(System.Guid@,System.Int32@)">
             <summary>
             Logically every activity Path (see Path()) that describes the activities that caused this 
             (rooted in an activity that predates activity tracking.  
            
             We wish to encode this path in the Guid to the extent that we can.  Many of the paths have
             many small numbers in them and we take advantage of this in the encoding to output as long
             a path in the GUID as possible.   
             
             Because of the possibility of GUID collision, we only use 96 of the 128 bits of the GUID
             for encoding the path.  The last 32 bits are a simple checksum (and random number) that 
             identifies this as using the convention defined here.   
            
             It returns both the GUID which has the path as well as the offset that points just beyond
             the end of the activity (so it can be appended to).  Note that if the end is in a nibble
             (it uses nibbles instead of bytes as the unit of encoding, then it will point at the unfinished
             byte (since the top nibble can't be zero you can determine if this is true by seeing if 
             this byte is nonZero.   This offset is needed to efficiently create the ID for child activities. 
             </summary>
        </member>
        <member name="M:Microsoft.Diagnostics.Tracing.ActivityTracker.ActivityInfo.CreateOverflowGuid(System.Guid*)">
            <summary>
            If we can't fit the activity Path into the GUID we come here.   What we do is simply
            generate a 4 byte number (s_nextOverflowId).  Then look for an ancestor that has  
            sufficient space for this ID.   By doing this, we preserve the fact that this activity
            is a child (of unknown depth) from that ancestor.
            </summary>
        </member>
        <member name="M:Microsoft.Diagnostics.Tracing.ActivityTracker.ActivityInfo.AddIdToGuid(System.Guid*,System.Int32,System.UInt32,System.Boolean)">
            Add the activity id 'id' to the output Guid 'outPtr' starting at the offset 'whereToAddId'
            Thus if this number is 6 that is where 'id' will be added.    This will return 13 (12
            is the maximum number of bytes that fit in a GUID) if the path did not fit.  
            If 'overflow' is true, then the number is encoded as an 'overflow number (which has a
            special (longer prefix) that indicates that this ID is allocated differently 
        </member>
        <member name="M:Microsoft.Diagnostics.Tracing.ActivityTracker.ActivityInfo.WriteNibble(System.Byte*@,System.Byte*,System.UInt32)">
            <summary>
            Write a single Nible 'value' (must be 0-15) to the byte buffer represented by *ptr.  
            Will not go past 'endPtr'.  Also it assumes that we never write 0 so we can detect
            whether a nibble has already been written to ptr  because it will be nonzero.   
            Thus if it is non-zero it adds to the current byte, otherwise it advances and writes
            the new byte (in the high bits) of the next byte.  
            </summary>
        </member>
        <member name="T:Microsoft.Diagnostics.Tracing.ActivityTracker.ActivityInfo.NumberListCodes">
            <summary>
            The encoding for a list of numbers used to make Activity  GUIDs.   Basically
            we operate on nibbles (which are nice because they show up as hex digits).  The
            list is ended with a end nibble (0) and depending on the nibble value (Below)
            the value is either encoded into nibble itself or it can spill over into the
            bytes that follow.   
            </summary>
        </member>
        <member name="T:Microsoft.Diagnostics.Tracing.TplEtwProvider">
            <summary>
            This is supplied by the framework.   It is has the semantics that the value is copied to any new Tasks that is created
            by the current task.   Thus all causally related code gets this value.    Note that reads and writes to this VARIABLE 
            (not what it points it) to this does not need to be protected by locks because it is inherently thread local (you always
            only get your thread local copy which means that you never have races.  
            </summary>
            
        </member>
        <member name="T:Microsoft.Diagnostics.Tracing.EventSource">
            <summary>
            This class is meant to be inherited by a user-defined event source in order to define a managed
            ETW provider.   Please See DESIGN NOTES above for the internal architecture.  
            The minimal definition of an EventSource simply specifies a number of ETW event methods that
            call one of the EventSource.WriteEvent overloads, <see cref="M:Microsoft.Diagnostics.Tracing.EventSource.WriteEventCore(System.Int32,System.Int32,Microsoft.Diagnostics.Tracing.EventSource.EventData*)"/>, 
            or <see cref="M:Microsoft.Diagnostics.Tracing.EventSource.WriteEventWithRelatedActivityIdCore(System.Int32,System.Guid*,System.Int32,Microsoft.Diagnostics.Tracing.EventSource.EventData*)"/> to log them. This functionality 
            is sufficient for many users.
            <para>
            To achieve more control over the ETW provider manifest exposed by the event source type, the 
            [<see cref="T:Microsoft.Diagnostics.Tracing.EventAttribute"/>] attributes can be specified for the ETW event methods.
            </para><para>
            For very advanced EventSources, it is possible to intercept the commands being given to the
            eventSource and change what filtering is done (see EventListener.EnableEvents and 
            <see cref="M:Microsoft.Diagnostics.Tracing.EventListener.DisableEvents(Microsoft.Diagnostics.Tracing.EventSource)"/>) or cause actions to be performed by the eventSource, 
            e.g. dumping a data structure (see EventSource.SendCommand and
            <see cref="M:Microsoft.Diagnostics.Tracing.EventSource.OnEventCommand(Microsoft.Diagnostics.Tracing.EventCommandEventArgs)"/>).
            </para><para>
            The eventSources can be turned on with Windows ETW controllers (e.g. logman), immediately. 
            It is also possible to control and intercept the data dispatcher programmatically.  See 
            <see cref="T:Microsoft.Diagnostics.Tracing.EventListener"/> for more.
            </para>
            </summary>
            <remarks>
            This is a minimal definition for a custom event source:
            <code>
            [EventSource(Name="Samples-Demos-Minimal")]
            sealed class MinimalEventSource : EventSource
            {
                public static MinimalEventSource Log = new MinimalEventSource();
                public void Load(long ImageBase, string Name) { WriteEvent(1, ImageBase, Name); }
                public void Unload(long ImageBase) { WriteEvent(2, ImageBase); }
                private MinimalEventSource() {}
            }
            </code>
            </remarks>
        </member>
        <member name="M:Microsoft.Diagnostics.Tracing.EventSource.IsEnabled">
            <summary>
            Returns true if the eventSource has been enabled at all. This is the prefered test
            to be performed before a relatively expensive EventSource operation.
            </summary>
        </member>
        <member name="M:Microsoft.Diagnostics.Tracing.EventSource.IsEnabled(Microsoft.Diagnostics.Tracing.EventLevel,Microsoft.Diagnostics.Tracing.EventKeywords)">
            <summary>
            Returns true if events with greater than or equal 'level' and have one of 'keywords' set are enabled. 
            
            Note that the result of this function is only an approximation on whether a particular
            event is active or not. It is only meant to be used as way of avoiding expensive
            computation for logging when logging is not on, therefore it sometimes returns false
            positives (but is always accurate when returning false).  EventSources are free to 
            have additional filtering.    
            </summary>
        </member>
        <member name="M:Microsoft.Diagnostics.Tracing.EventSource.IsEnabled(Microsoft.Diagnostics.Tracing.EventLevel,Microsoft.Diagnostics.Tracing.EventKeywords,Microsoft.Diagnostics.Tracing.EventChannel)">
            <summary>
            Returns true if events with greater than or equal 'level' and have one of 'keywords' set are enabled, or
            if 'keywords' specifies a channel bit for a channel that is enabled.
            
            Note that the result of this function only an approximation on whether a particular
            event is active or not. It is only meant to be used as way of avoiding expensive
            computation for logging when logging is not on, therefore it sometimes returns false
            positives (but is always accurate when returning false).  EventSources are free to 
            have additional filtering.    
            </summary>
        </member>
        <member name="M:Microsoft.Diagnostics.Tracing.EventSource.GetGuid(System.Type)">
            <summary>
            Returns the GUID that uniquely identifies the eventSource defined by 'eventSourceType'.  
            This API allows you to compute this without actually creating an instance of the EventSource.   
            It only needs to reflect over the type.  
            </summary>
        </member>
        <member name="M:Microsoft.Diagnostics.Tracing.EventSource.GetName(System.Type)">
            <summary>
            Returns the official ETW Provider name for the eventSource defined by 'eventSourceType'.  
            This API allows you to compute this without actually creating an instance of the EventSource.   
            It only needs to reflect over the type.  
            </summary>
        </member>
        <member name="M:Microsoft.Diagnostics.Tracing.EventSource.GenerateManifest(System.Type,System.String)">
            <summary>
            Returns a string of the XML manifest associated with the eventSourceType. The scheme for this XML is
            documented at in EventManifest Schema http://msdn.microsoft.com/en-us/library/aa384043(VS.85).aspx.
            This is the preferred way of generating a manifest to be embedded in the ETW stream as it is fast and
            the fact that it only includes localized entries for the current UI culture is an acceptable tradeoff.
            </summary>
            <param name="eventSourceType">The type of the event source class for which the manifest is generated</param>
            <param name="assemblyPathToIncludeInManifest">The manifest XML fragment contains the string name of the DLL name in
            which it is embedded.  This parameter specifies what name will be used</param>
            <returns>The XML data string</returns>
        </member>
        <member name="M:Microsoft.Diagnostics.Tracing.EventSource.GenerateManifest(System.Type,System.String,Microsoft.Diagnostics.Tracing.EventManifestOptions)">
            <summary>
            Returns a string of the XML manifest associated with the eventSourceType. The scheme for this XML is
            documented at in EventManifest Schema http://msdn.microsoft.com/en-us/library/aa384043(VS.85).aspx.
            Pass EventManifestOptions.AllCultures when generating a manifest to be registered on the machine. This
            ensures that the entries in the event log will be "optimally" localized.
            </summary>
            <param name="eventSourceType">The type of the event source class for which the manifest is generated</param>
            <param name="assemblyPathToIncludeInManifest">The manifest XML fragment contains the string name of the DLL name in
            which it is embedded.  This parameter specifies what name will be used</param>
            <param name="flags">The flags to customize manifest generation. If flags has bit OnlyIfNeededForRegistration specified
            this returns null when the eventSourceType does not require explicit registration</param>
            <returns>The XML data string or null</returns>
        </member>
        <member name="M:Microsoft.Diagnostics.Tracing.EventSource.GetSources">
            <summary>
            returns a list (IEnumerable) of all sources in the appdomain).  EventListeners typically need this.  
            </summary>
            <returns></returns>
        </member>
        <member name="M:Microsoft.Diagnostics.Tracing.EventSource.SendCommand(Microsoft.Diagnostics.Tracing.EventSource,Microsoft.Diagnostics.Tracing.EventCommand,System.Collections.Generic.IDictionary{System.String,System.String})">
            <summary>
            Send a command to a particular EventSource identified by 'eventSource'.
            Calling this routine simply forwards the command to the EventSource.OnEventCommand
            callback.  What the EventSource does with the command and its arguments are from 
            that point EventSource-specific.  
            </summary>
            <param name="eventSource">The instance of EventSource to send the command to</param>
            <param name="command">A positive user-defined EventCommand, or EventCommand.SendManifest</param>
            <param name="commandArguments">A set of (name-argument, value-argument) pairs associated with the command</param>
        </member>
        <member name="M:Microsoft.Diagnostics.Tracing.EventSource.SetCurrentThreadActivityId(System.Guid)">
            <summary>
            When a thread starts work that is on behalf of 'something else' (typically another 
            thread or network request) it should mark the thread as working on that other work.
            This API marks the current thread as working on activity 'activityID'. This API
            should be used when the caller knows the thread's current activity (the one being
            overwritten) has completed. Otherwise, callers should prefer the overload that
            return the oldActivityThatWillContinue (below).
            
            All events created with the EventSource on this thread are also tagged with the 
            activity ID of the thread. 
            
            It is common, and good practice after setting the thread to an activity to log an event
            with a 'start' opcode to indicate that precise time/thread where the new activity 
            started.
            </summary>
            <param name="activityId">A Guid that represents the new activity with which to mark 
            the current thread</param>
        </member>
        <member name="M:Microsoft.Diagnostics.Tracing.EventSource.SetCurrentThreadActivityId(System.Guid,System.Guid@)">
            <summary>
            When a thread starts work that is on behalf of 'something else' (typically another 
            thread or network request) it should mark the thread as working on that other work.
            This API marks the current thread as working on activity 'activityID'. It returns 
            whatever activity the thread was previously marked with. There is a convention that
            callers can assume that callees restore this activity mark before the callee returns. 
            To encourage this this API returns the old activity, so that it can be restored later.
            
            All events created with the EventSource on this thread are also tagged with the 
            activity ID of the thread. 
            
            It is common, and good practice after setting the thread to an activity to log an event
            with a 'start' opcode to indicate that precise time/thread where the new activity 
            started.
            </summary>
            <param name="activityId">A Guid that represents the new activity with which to mark 
            the current thread</param>
            <param name="oldActivityThatWillContinue">The Guid that represents the current activity  
            which will continue at some point in the future, on the current thread</param>
        </member>
        <member name="M:Microsoft.Diagnostics.Tracing.EventSource.GetTrait(System.String)">
            <summary>
            EventSources can have arbitrary string key-value pairs associated with them called Traits.  
            These traits are not interpreted by the EventSource but may be interpreted by EventListeners
            (e.g. like the built in ETW listener).   These traits are specififed at EventSource 
            construction time and can be retrieved by using this GetTrait API.  
            </summary>
            <param name="key">The key to look up in the set of key-value pairs passed to the EventSource constructor</param>
            <returns>The value string associated iwth key.  Will return null if there is no such key.</returns>
        </member>
        <member name="M:Microsoft.Diagnostics.Tracing.EventSource.ToString">
            <summary>
            Displays the name and GUID for the eventSource for debugging purposes.  
            </summary>
        </member>
        <member name="M:Microsoft.Diagnostics.Tracing.EventSource.#ctor">
            <summary>
            This is the constructor that most users will use to create their eventSource.   It takes 
            no parameters.  The ETW provider name and GUID of the EventSource are determined by the EventSource 
            custom attribute (so you can determine these things declaratively).   If the GUID for the eventSource
            is not specified in the EventSourceAttribute (recommended), it is Generated by hashing the name.
            If the ETW provider name of the EventSource is not given, the name of the EventSource class is used as
            the ETW provider name.
            </summary>
        </member>
        <member name="M:Microsoft.Diagnostics.Tracing.EventSource.#ctor(System.Boolean)">
            <summary>
            By default calling the 'WriteEvent' methods do NOT throw on errors (they silently discard the event).  
            This is because in most cases users assume logging is not 'precious' and do NOT wish to have logging failures
            crash the program. However for those applications where logging is 'precious' and if it fails the caller
            wishes to react, setting 'throwOnEventWriteErrors' will cause an exception to be thrown if WriteEvent
            fails. Note the fact that EventWrite succeeds does not necessarily mean that the event reached its destination
            only that operation of writing it did not fail. These EventSources will not generate self-describing ETW events.
            
            For compatibility only use the EventSourceSettings.ThrowOnEventWriteErrors flag instead.  
            </summary>
        </member>
        <member name="M:Microsoft.Diagnostics.Tracing.EventSource.#ctor(Microsoft.Diagnostics.Tracing.EventSourceSettings)">
            <summary>
            Construct an EventSource with additional non-default settings (see EventSourceSettings for more)  
            </summary>
        </member>
        <member name="M:Microsoft.Diagnostics.Tracing.EventSource.#ctor(Microsoft.Diagnostics.Tracing.EventSourceSettings,System.String[])">
            <summary>
            Construct an EventSource with additional non-default settings.  
            
            Also specify a list of key-value pairs called traits (you must pass an even number of strings).   
            The first string is the key and the second is the value.   These are not interpreted by EventSource
            itself but may be interprated the listeners.  Can be fetched with GetTrait(string).   
            </summary>
            <param name="settings">See EventSourceSettings for more.</param>
            <param name="traits">A collection of key-value strings (must be an even number).</param>
        </member>
        <member name="M:Microsoft.Diagnostics.Tracing.EventSource.OnEventCommand(Microsoft.Diagnostics.Tracing.EventCommandEventArgs)">
            <summary>
            This method is called when the eventSource is updated by the controller.  
            </summary>
        </member>
        <member name="M:Microsoft.Diagnostics.Tracing.EventSource.WriteEventCore(System.Int32,System.Int32,Microsoft.Diagnostics.Tracing.EventSource.EventData*)">
            <summary>
            This routine allows you to create efficient WriteEvent helpers, however the code that you use to
            do this, while straightforward, is unsafe.
            </summary>
            <remarks>
            <code>
               protected unsafe void WriteEvent(int eventId, string arg1, long arg2)
               {
                   if (IsEnabled())
                   {
                       if (arg2 == null) arg2 = "";
                       fixed (char* string2Bytes = arg2)
                       {
                           EventSource.EventData* descrs = stackalloc EventSource.EventData[2];
                           descrs[0].DataPointer = (IntPtr)(&amp;arg1);
                           descrs[0].Size = 8;
                           descrs[1].DataPointer = (IntPtr)string2Bytes;
                           descrs[1].Size = ((arg2.Length + 1) * 2);
                           WriteEventCore(eventId, 2, descrs);
                       }
                   }
               }
            </code>
            </remarks>
        </member>
        <member name="M:Microsoft.Diagnostics.Tracing.EventSource.WriteEventWithRelatedActivityIdCore(System.Int32,System.Guid*,System.Int32,Microsoft.Diagnostics.Tracing.EventSource.EventData*)">
            <summary>
            This routine allows you to create efficient WriteEventWithRelatedActivityId helpers, however the code 
            that you use to do this, while straightforward, is unsafe. The only difference from
            <see cref="M:Microsoft.Diagnostics.Tracing.EventSource.WriteEventCore(System.Int32,System.Int32,Microsoft.Diagnostics.Tracing.EventSource.EventData*)"/> is that you pass the relatedActivityId from caller through to this API
            </summary>
            <remarks>
            <code>
               protected unsafe void WriteEventWithRelatedActivityId(int eventId, Guid relatedActivityId, string arg1, long arg2)
               {
                   if (IsEnabled())
                   {
                       if (arg2 == null) arg2 = "";
                       fixed (char* string2Bytes = arg2)
                       {
                           EventSource.EventData* descrs = stackalloc EventSource.EventData[2];
                           descrs[0].DataPointer = (IntPtr)(&amp;arg1);
                           descrs[0].Size = 8;
                           descrs[1].DataPointer = (IntPtr)string2Bytes;
                           descrs[1].Size = ((arg2.Length + 1) * 2);
                           WriteEventWithRelatedActivityIdCore(eventId, relatedActivityId, 2, descrs);
                       }
                   }
               }
            </code>
            </remarks>
        </member>
        <member name="M:Microsoft.Diagnostics.Tracing.EventSource.WriteEvent(System.Int32,System.Object[])">
            <summary>
            This is the varargs helper for writing an event. It does create an array and box all the arguments so it is
            relatively inefficient and should only be used for relatively rare events (e.g. less than 100 / sec). If your
            rates are faster than that you should use <see cref="M:Microsoft.Diagnostics.Tracing.EventSource.WriteEventCore(System.Int32,System.Int32,Microsoft.Diagnostics.Tracing.EventSource.EventData*)"/> to create fast helpers for your particular 
            method signature. Even if you use this for rare events, this call should be guarded by an <see cref="M:Microsoft.Diagnostics.Tracing.EventSource.IsEnabled"/> 
            check so that the varargs call is not made when the EventSource is not active.  
            </summary>
        </member>
        <member name="M:Microsoft.Diagnostics.Tracing.EventSource.WriteEventWithRelatedActivityId(System.Int32,System.Guid,System.Object[])">
            <summary>
            This is the varargs helper for writing an event which also specifies a related activity. It is completely analogous
            to corresponding WriteEvent (they share implementation). It does create an array and box all the arguments so it is
            relatively inefficient and should only be used for relatively rare events (e.g. less than 100 / sec).  If your
            rates are faster than that you should use <see cref="M:Microsoft.Diagnostics.Tracing.EventSource.WriteEventWithRelatedActivityIdCore(System.Int32,System.Guid*,System.Int32,Microsoft.Diagnostics.Tracing.EventSource.EventData*)"/> to create fast helpers for your 
            particular method signature. Even if you use this for rare events, this call should be guarded by an <see cref="M:Microsoft.Diagnostics.Tracing.EventSource.IsEnabled"/>
            check so that the varargs call is not made when the EventSource is not active.
            </summary>
        </member>
        <member name="M:Microsoft.Diagnostics.Tracing.EventSource.Dispose">
            <summary>
            Disposes of an EventSource.
            </summary>
        </member>
        <member name="M:Microsoft.Diagnostics.Tracing.EventSource.Dispose(System.Boolean)">
            <summary>
            Disposes of an EventSource.
            </summary>
            <remarks>
            Called from Dispose() with disposing=true, and from the finalizer (~EventSource) with disposing=false.
            Guidelines:
            1. We may be called more than once: do nothing after the first call.
            2. Avoid throwing exceptions if disposing is false, i.e. if we're being finalized.
            </remarks>
            <param name="disposing">True if called from Dispose(), false if called from the finalizer.</param>
        </member>
        <member name="M:Microsoft.Diagnostics.Tracing.EventSource.Finalize">
            <summary>
            Finalizer for EventSource
            </summary>
        </member>
        <member name="M:Microsoft.Diagnostics.Tracing.EventSource.Initialize(System.Guid,System.String,System.String[])">
            <summary>
            This method is responsible for the common initialization path from our constructors. It must
            not leak any exceptions (otherwise, since most EventSource classes define a static member, 
            "Log", such an exception would become a cached exception for the initialization of the static
            member, and any future access to the "Log" would throw the cached exception).
            </summary>
        </member>
        <member name="M:Microsoft.Diagnostics.Tracing.EventSource.LogEventArgsMismatches(System.Reflection.ParameterInfo[],System.Object[])">
            <summary>
            We expect that the arguments to the Event method and the arguments to WriteEvent match. This function 
            checks that they in fact match and logs a warning to the debugger if they don't.
            </summary>
            <param name="infos"></param>
            <param name="args"></param>
        </member>
        <member name="M:Microsoft.Diagnostics.Tracing.EventSource.WriteStringToAllListeners(System.String,System.String)">
            <summary>
            Since this is a means of reporting errors (see ReportoutOfBandMessage) any failure encountered 
            while writing the message to any one of the listeners will be silently ignored.
            </summary>
        </member>
        <member name="M:Microsoft.Diagnostics.Tracing.EventSource.IsEnabledByDefault(System.Int32,System.Boolean,Microsoft.Diagnostics.Tracing.EventLevel,Microsoft.Diagnostics.Tracing.EventKeywords)">
            <summary>
            Returns true if 'eventNum' is enabled if you only consider the level and matchAnyKeyword filters.
            It is possible that eventSources turn off the event based on additional filtering criteria.  
            </summary>
        </member>
        <member name="M:Microsoft.Diagnostics.Tracing.EventSource.DoCommand(Microsoft.Diagnostics.Tracing.EventCommandEventArgs)">
            <summary>
            We want the eventSource to be fully initialized when we do commands because that way we can send 
            error messages and other logging directly to the event stream.   Unfortunately we can get callbacks
            when we are not fully initialized.  In that case we store them in 'commandArgs' and do them later. 
            This helper actually does all actual command logic. 
            </summary>
        </member>
        <member name="M:Microsoft.Diagnostics.Tracing.EventSource.EnableEventForDispatcher(Microsoft.Diagnostics.Tracing.EventDispatcher,System.Int32,System.Boolean)">
            <summary>
            If 'value is 'true' then set the eventSource so that 'dispatcher' will receive event with the eventId
            of 'eventId.  If value is 'false' disable the event for that dispatcher.   If 'eventId' is out of
            range return false, otherwise true.  
            </summary>
        </member>
        <member name="M:Microsoft.Diagnostics.Tracing.EventSource.AnyEventEnabled">
            <summary>
            Returns true if any event at all is on.  
            </summary>
        </member>
        <member name="M:Microsoft.Diagnostics.Tracing.EventSource.AttributeTypeNamesMatch(System.Type,System.Type)">
            <summary>
            Evaluates if two related "EventSource"-domain types should be considered the same
            </summary>
            <param name="attributeType">The attribute type in the load context - it's associated with the running 
            EventSource type. This type may be different fromt he base type of the user-defined EventSource.</param>
            <param name="reflectedAttributeType">The attribute type in the reflection context - it's associated with
            the user-defined EventSource, and is in the same assembly as the eventSourceType passed to 
            </param>
            <returns>True - if the types should be considered equivalent, False - otherwise</returns>
        </member>
        <member name="M:Microsoft.Diagnostics.Tracing.EventSource.GetHelperCallFirstArg(System.Reflection.MethodInfo)">
            <summary>
            This method looks at the IL and tries to pattern match against the standard
            'boilerplate' event body 
            <code>
                { if (Enabled()) WriteEvent(#, ...) } 
            </code>
            If the pattern matches, it returns the literal number passed as the first parameter to
            the WriteEvent.  This is used to find common user errors (mismatching this
            number with the EventAttribute ID).  It is only used for validation.   
            </summary>
            <param name="method">The method to probe.</param>
            <returns>The literal value or -1 if the value could not be determined. </returns>
        </member>
        <member name="M:Microsoft.Diagnostics.Tracing.EventSource.ReportOutOfBandMessage(System.String,System.Boolean)">
            <summary>
            Sends an error message to the debugger (outputDebugString), as well as the EventListeners 
            It will do this even if the EventSource is not enabled.  
            TODO remove flush parameter it is not used.  
            </summary>
        </member>
        <member name="M:Microsoft.Diagnostics.Tracing.EventSource.#ctor(System.String)">
            <summary>
            Construct an EventSource with a given name for non-contract based events (e.g. those using the Write() API).
            </summary>
            <param name="eventSourceName">
            The name of the event source. Must not be null.
            </param>
        </member>
        <member name="M:Microsoft.Diagnostics.Tracing.EventSource.#ctor(System.String,Microsoft.Diagnostics.Tracing.EventSourceSettings)">
            <summary>
            Construct an EventSource with a given name for non-contract based events (e.g. those using the Write() API).
            </summary>
            <param name="eventSourceName">
            The name of the event source. Must not be null.
            </param>
            <param name="config">
            Configuration options for the EventSource as a whole. 
            </param>
        </member>
        <member name="M:Microsoft.Diagnostics.Tracing.EventSource.#ctor(System.String,Microsoft.Diagnostics.Tracing.EventSourceSettings,System.String[])">
            <summary>
            Construct an EventSource with a given name for non-contract based events (e.g. those using the Write() API).
            
            Also specify a list of key-value pairs called traits (you must pass an even number of strings).   
            The first string is the key and the second is the value.   These are not interpreted by EventSource
            itself but may be interprated the listeners.  Can be fetched with GetTrait(string).   
            </summary>
            <param name="eventSourceName">
            The name of the event source. Must not be null.
            </param>
            <param name="config">
            Configuration options for the EventSource as a whole. 
            </param>
            <param name="traits">A collection of key-value strings (must be an even number).</param>
        </member>
        <member name="M:Microsoft.Diagnostics.Tracing.EventSource.Write(System.String)">
            <summary>
            Writes an event with no fields and default options.
            (Native API: EventWriteTransfer)
            </summary>
            <param name="eventName">The name of the event. Must not be null.</param>
        </member>
        <member name="M:Microsoft.Diagnostics.Tracing.EventSource.Write(System.String,Microsoft.Diagnostics.Tracing.EventSourceOptions)">
            <summary>
            Writes an event with no fields.
            (Native API: EventWriteTransfer)
            </summary>
            <param name="eventName">The name of the event. Must not be null.</param>
            <param name="options">
            Options for the event, such as the level, keywords, and opcode. Unset
            options will be set to default values.
            </param>
        </member>
        <member name="M:Microsoft.Diagnostics.Tracing.EventSource.Write``1(System.String,``0)">
            <summary>
            Writes an event.
            (Native API: EventWriteTransfer)
            </summary>
            <typeparam name="T">
            The type that defines the event and its payload. This must be an
            anonymous type or a type with an [EventData] attribute.
            </typeparam>
            <param name="eventName">
            The name for the event. If null, the event name is automatically
            determined based on T, either from the Name property of T's EventData
            attribute or from typeof(T).Name.
            </param>
            <param name="data">
            The object containing the event payload data. The type T must be
            an anonymous type or a type with an [EventData] attribute. The
            public instance properties of data will be written recursively to
            create the fields of the event.
            </param>
        </member>
        <member name="M:Microsoft.Diagnostics.Tracing.EventSource.Write``1(System.String,Microsoft.Diagnostics.Tracing.EventSourceOptions,``0)">
            <summary>
            Writes an event.
            (Native API: EventWriteTransfer)
            </summary>
            <typeparam name="T">
            The type that defines the event and its payload. This must be an
            anonymous type or a type with an [EventData] attribute.
            </typeparam>
            <param name="eventName">
            The name for the event. If null, the event name is automatically
            determined based on T, either from the Name property of T's EventData
            attribute or from typeof(T).Name.
            </param>
            <param name="options">
            Options for the event, such as the level, keywords, and opcode. Unset
            options will be set to default values.
            </param>
            <param name="data">
            The object containing the event payload data. The type T must be
            an anonymous type or a type with an [EventData] attribute. The
            public instance properties of data will be written recursively to
            create the fields of the event.
            </param>
        </member>
        <member name="M:Microsoft.Diagnostics.Tracing.EventSource.Write``1(System.String,Microsoft.Diagnostics.Tracing.EventSourceOptions@,``0@)">
            <summary>
            Writes an event.
            This overload is for use with extension methods that wish to efficiently
            forward the options or data parameter without performing an extra copy.
            (Native API: EventWriteTransfer)
            </summary>
            <typeparam name="T">
            The type that defines the event and its payload. This must be an
            anonymous type or a type with an [EventData] attribute.
            </typeparam>
            <param name="eventName">
            The name for the event. If null, the event name is automatically
            determined based on T, either from the Name property of T's EventData
            attribute or from typeof(T).Name.
            </param>
            <param name="options">
            Options for the event, such as the level, keywords, and opcode. Unset
            options will be set to default values.
            </param>
            <param name="data">
            The object containing the event payload data. The type T must be
            an anonymous type or a type with an [EventData] attribute. The
            public instance properties of data will be written recursively to
            create the fields of the event.
            </param>
        </member>
        <member name="M:Microsoft.Diagnostics.Tracing.EventSource.Write``1(System.String,Microsoft.Diagnostics.Tracing.EventSourceOptions@,System.Guid@,System.Guid@,``0@)">
            <summary>
            Writes an event.
            This overload is meant for clients that need to manipuate the activityId
            and related ActivityId for the event.  
            </summary>
            <typeparam name="T">
            The type that defines the event and its payload. This must be an
            anonymous type or a type with an [EventData] attribute.
            </typeparam>
            <param name="eventName">
            The name for the event. If null, the event name is automatically
            determined based on T, either from the Name property of T's EventData
            attribute or from typeof(T).Name.
            </param>
            <param name="options">
            Options for the event, such as the level, keywords, and opcode. Unset
            options will be set to default values.
            </param>
            <param name="activityId">
            The GUID of the activity associated with this event.
            </param>
            <param name="relatedActivityId">
            The GUID of another activity that is related to this activity, or Guid.Empty
            if there is no related activity. Most commonly, the Start operation of a
            new activity specifies a parent activity as its related activity.
            </param>
            <param name="data">
            The object containing the event payload data. The type T must be
            an anonymous type or a type with an [EventData] attribute. The
            public instance properties of data will be written recursively to
            create the fields of the event.
            </param>
        </member>
        <member name="M:Microsoft.Diagnostics.Tracing.EventSource.WriteMultiMerge(System.String,Microsoft.Diagnostics.Tracing.EventSourceOptions@,Microsoft.Diagnostics.Tracing.TraceLoggingEventTypes,System.Guid*,System.Guid*,System.Object[])">
            <summary>
            Writes an extended event, where the values of the event are the
            combined properties of any number of values. This method is
            intended for use in advanced logging scenarios that support a
            dynamic set of event context providers.
            This method does a quick check on whether this event is enabled.
            </summary>
            <param name="eventName">
            The name for the event. If null, the name from eventTypes is used.
            (Note that providing the event name via the name parameter is slightly
            less efficient than using the name from eventTypes.)
            </param>
            <param name="options">
            Optional overrides for the event, such as the level, keyword, opcode,
            activityId, and relatedActivityId. Any settings not specified by options
            are obtained from eventTypes.
            </param>
            <param name="eventTypes">
            Information about the event and the types of the values in the event.
            Must not be null. Note that the eventTypes object should be created once and
            saved. It should not be recreated for each event.
            </param>
            <param name="activityID">
            A pointer to the activity ID GUID to log 
            </param>
            <param name="childActivityID">
            A pointer to the child activity ID to log (can be null) </param>
            <param name="values">
            The values to include in the event. Must not be null. The number and types of
            the values must match the number and types of the fields described by the
            eventTypes parameter.
            </param>
        </member>
        <member name="M:Microsoft.Diagnostics.Tracing.EventSource.WriteMultiMergeInner(System.String,Microsoft.Diagnostics.Tracing.EventSourceOptions@,Microsoft.Diagnostics.Tracing.TraceLoggingEventTypes,System.Guid*,System.Guid*,System.Object[])">
            <summary>
            Writes an extended event, where the values of the event are the
            combined properties of any number of values. This method is
            intended for use in advanced logging scenarios that support a
            dynamic set of event context providers.
            Attention: This API does not check whether the event is enabled or not. 
            Please use WriteMultiMerge to avoid spending CPU cycles for events that are 
            not enabled.
            </summary>
            <param name="eventName">
            The name for the event. If null, the name from eventTypes is used.
            (Note that providing the event name via the name parameter is slightly
            less efficient than using the name from eventTypes.)
            </param>
            <param name="options">
            Optional overrides for the event, such as the level, keyword, opcode,
            activityId, and relatedActivityId. Any settings not specified by options
            are obtained from eventTypes.
            </param>
            <param name="eventTypes">
            Information about the event and the types of the values in the event.
            Must not be null. Note that the eventTypes object should be created once and
            saved. It should not be recreated for each event.
            </param>
            <param name="activityID">
            A pointer to the activity ID GUID to log 
            </param>
            <param name="childActivityID">
            A pointer to the child activity ID to log (can be null)
            </param>
            <param name="values">
            The values to include in the event. Must not be null. The number and types of
            the values must match the number and types of the fields described by the
            eventTypes parameter.
            </param>
        </member>
        <member name="M:Microsoft.Diagnostics.Tracing.EventSource.WriteMultiMerge(System.String,Microsoft.Diagnostics.Tracing.EventSourceOptions@,Microsoft.Diagnostics.Tracing.TraceLoggingEventTypes,System.Guid*,System.Guid*,Microsoft.Diagnostics.Tracing.EventSource.EventData*)">
            <summary>
            Writes an extended event, where the values of the event have already
            been serialized in "data".
            </summary>
            <param name="eventName">
            The name for the event. If null, the name from eventTypes is used.
            (Note that providing the event name via the name parameter is slightly
            less efficient than using the name from eventTypes.)
            </param>
            <param name="options">
            Optional overrides for the event, such as the level, keyword, opcode,
            activityId, and relatedActivityId. Any settings not specified by options
            are obtained from eventTypes.
            </param>
            <param name="eventTypes">
            Information about the event and the types of the values in the event.
            Must not be null. Note that the eventTypes object should be created once and
            saved. It should not be recreated for each event.
            </param>
            <param name="activityID">
            A pointer to the activity ID GUID to log 
            </param>
            <param name="childActivityID">
            A pointer to the child activity ID to log (can be null)
            </param> 
            <param name="data">
            The previously serialized values to include in the event. Must not be null.
            The number and types of the values must match the number and types of the 
            fields described by the eventTypes parameter.
            </param>
        </member>
        <member name="M:Microsoft.Diagnostics.Tracing.EventSource.HexDigit(System.Char)">
            <summary>
            Returns a value 0-15 if 'c' is a hexadecimal digit.   If  it throws an argument exception.  
            </summary>
        </member>
        <member name="P:Microsoft.Diagnostics.Tracing.EventSource.Name">
            <summary>
            The human-friendly name of the eventSource.  It defaults to the simple name of the class
            </summary>
        </member>
        <member name="P:Microsoft.Diagnostics.Tracing.EventSource.Guid">
            <summary>
            Every eventSource is assigned a GUID to uniquely identify it to the system. 
            </summary>
        </member>
        <member name="P:Microsoft.Diagnostics.Tracing.EventSource.Settings">
            <summary>
            Returns the settings for the event source instance
            </summary>
        </member>
        <member name="P:Microsoft.Diagnostics.Tracing.EventSource.CurrentThreadActivityId">
            <summary>
            Retrieves the ETW activity ID associated with the current thread.
            </summary>
        </member>
        <member name="P:Microsoft.Diagnostics.Tracing.EventSource.ConstructionException">
            <summary>
            Because
            
                1) Logging is often optional and thus should not generate fatal errors (exceptions)
                2) EventSources are often initialized in class constructors (which propagate exceptions poorly)
                
            The event source constructor does not throw exceptions.  Instead we remember any exception that 
            was generated (it is also logged to Trace.WriteLine).
            </summary>
        </member>
        <member name="E:Microsoft.Diagnostics.Tracing.EventSource.EventCommandExecuted">
            <summary>
            Fires when a Command (e.g. Enable) comes from a an EventListener.  
            </summary>
        </member>
        <member name="T:Microsoft.Diagnostics.Tracing.EventSource.EventData">
            <summary>
            Used to construct the data structure to be passed to the native ETW APIs - EventWrite and EventWriteTransfer.
            </summary>
        </member>
        <member name="M:Microsoft.Diagnostics.Tracing.EventSource.EventData.SetMetadata(System.Byte*,System.Int32,System.Int32)">
            <summary>
            Initializes the members of this EventData object to point at a previously-pinned
            tracelogging-compatible metadata blob.
            </summary>
            <param name="pointer">Pinned tracelogging-compatible metadata blob.</param>
            <param name="size">The size of the metadata blob.</param>
            <param name="reserved">Value for reserved: 2 for per-provider metadata, 1 for per-event metadata</param>
        </member>
        <member name="P:Microsoft.Diagnostics.Tracing.EventSource.EventData.DataPointer">
            <summary>
            Address where the one argument lives (if this points to managed memory you must ensure the
            managed object is pinned.
            </summary>
        </member>
        <member name="P:Microsoft.Diagnostics.Tracing.EventSource.EventData.Size">
            <summary>
            Size of the argument referenced by DataPointer
            </summary>
        </member>
        <member name="T:Microsoft.Diagnostics.Tracing.EventSource.Sha1ForNonSecretPurposes">
            <summary>
            Implements the SHA1 hashing algorithm. Note that this
            implementation is for hashing public information. Do not
            use this code to hash private data, as this implementation does
            not take any steps to avoid information disclosure.
            </summary>
        </member>
        <member name="M:Microsoft.Diagnostics.Tracing.EventSource.Sha1ForNonSecretPurposes.Start">
            <summary>
            Call Start() to initialize the hash object.
            </summary>
        </member>
        <member name="M:Microsoft.Diagnostics.Tracing.EventSource.Sha1ForNonSecretPurposes.Append(System.Byte)">
            <summary>
            Adds an input byte to the hash.
            </summary>
            <param name="input">Data to include in the hash.</param>
        </member>
        <member name="M:Microsoft.Diagnostics.Tracing.EventSource.Sha1ForNonSecretPurposes.Append(System.Byte[])">
            <summary>
            Adds input bytes to the hash.
            </summary>
            <param name="input">
            Data to include in the hash. Must not be null.
            </param>
        </member>
        <member name="M:Microsoft.Diagnostics.Tracing.EventSource.Sha1ForNonSecretPurposes.Finish(System.Byte[])">
            <summary>
            Retrieves the hash value.
            Note that after calling this function, the hash object should
            be considered uninitialized. Subsequent calls to Append or
            Finish will produce useless results. Call Start() to
            reinitialize.
            </summary>
            <param name="output">
            Buffer to receive the hash value. Must not be null.
            Up to 20 bytes of hash will be written to the output buffer.
            If the buffer is smaller than 20 bytes, the remaining hash
            bytes will be lost. If the buffer is larger than 20 bytes, the
            rest of the buffer is left unmodified.
            </param>
        </member>
        <member name="M:Microsoft.Diagnostics.Tracing.EventSource.Sha1ForNonSecretPurposes.Drain">
            <summary>
            Called when this.pos reaches 64.
            </summary>
        </member>
        <member name="T:Microsoft.Diagnostics.Tracing.EventSource.OverideEventProvider">
            <summary>
            This class lets us hook the 'OnEventCommand' from the eventSource.  
            </summary>
        </member>
        <member name="T:Microsoft.Diagnostics.Tracing.EventProvider">
            <summary>
            Only here because System.Diagnostics.EventProvider needs one more extensibility hook (when it gets a 
            controller callback)
            </summary>
        </member>
        <member name="M:Microsoft.Diagnostics.Tracing.EventProvider.Register(System.Guid)">
            <summary>
            This method registers the controlGuid of this class with ETW. We need to be running on
            Vista or above. If not a PlatformNotSupported exception will be thrown. If for some 
            reason the ETW Register call failed a NotSupported exception will be thrown. 
            </summary>
        </member>
        <member name="M:Microsoft.Diagnostics.Tracing.EventProvider.Close">
            <summary>
            This method deregisters the controlGuid of this class with ETW.
            
            </summary>
        </member>
        <member name="M:Microsoft.Diagnostics.Tracing.EventProvider.Deregister">
            <summary>
            This method un-registers from ETW.
            </summary>
        </member>
        <member name="M:Microsoft.Diagnostics.Tracing.EventProvider.GetSessions">
             <summary>
             Determines the ETW sessions that have been added and/or removed to the set of
             sessions interested in the current provider. It does so by (1) enumerating over all
             ETW sessions that enabled 'this.m_Guid' for the current process ID, and (2)
             comparing the current list with a list it cached on the previous invocation.
            
             The return value is a list of tuples, where the SessionInfo specifies the
             ETW session that was added or remove, and the bool specifies whether the
             session was added or whether it was removed from the set.
             </summary>
        </member>
        <member name="M:Microsoft.Diagnostics.Tracing.EventProvider.GetSessionInfoCallback(System.Int32,System.Int64,System.Collections.Generic.List{Microsoft.Diagnostics.Tracing.EventProvider.SessionInfo}@)">
            <summary>
            This method is the callback used by GetSessions() when it calls into GetSessionInfo(). 
            It updates a List{SessionInfo} based on the etwSessionId and matchAllKeywords that 
            GetSessionInfo() passes in.
            </summary>
        </member>
        <member name="M:Microsoft.Diagnostics.Tracing.EventProvider.GetSessionInfo(System.Action{System.Int32,System.Int64})">
            <summary>
            This method enumerates over all active ETW sessions that have enabled 'this.m_Guid' 
            for the current process ID, calling 'action' for each session, and passing it the
            ETW session and the 'AllKeywords' the session enabled for the current provider.
            </summary>
        </member>
        <member name="M:Microsoft.Diagnostics.Tracing.EventProvider.IndexOfSessionInList(System.Collections.Generic.List{Microsoft.Diagnostics.Tracing.EventProvider.SessionInfo},System.Int32)">
            <summary>
            Returns the index of the SesisonInfo from 'sessions' that has the specified 'etwSessionId'
            or -1 if the value is not present.
            </summary>
        </member>
        <member name="M:Microsoft.Diagnostics.Tracing.EventProvider.GetDataFromController(System.Int32,Microsoft.Win32.UnsafeNativeMethods.ManifestEtw.EVENT_FILTER_DESCRIPTOR*,Microsoft.Diagnostics.Tracing.ControllerCommand@,System.Byte[]@,System.Int32@)">
            <summary>
            Gets any data to be passed from the controller to the provider.  It starts with what is passed
            into the callback, but unfortunately this data is only present for when the provider is active
            at the time the controller issues the command.  To allow for providers to activate after the
            controller issued a command, we also check the registry and use that to get the data.  The function
            returns an array of bytes representing the data, the index into that byte array where the data
            starts, and the command being issued associated with that data.  
            </summary>
        </member>
        <member name="M:Microsoft.Diagnostics.Tracing.EventProvider.IsEnabled">
            <summary>
            IsEnabled, method used to test if provider is enabled
            </summary>
        </member>
        <member name="M:Microsoft.Diagnostics.Tracing.EventProvider.IsEnabled(System.Byte,System.Int64)">
            <summary>
            IsEnabled, method used to test if event is enabled
            </summary>
            <param name="level">
            Level  to test
            </param>
            <param name="keywords">
            Keyword  to test
            </param>
        </member>
        <member name="M:Microsoft.Diagnostics.Tracing.EventProvider.WriteEvent(Microsoft.Diagnostics.Tracing.EventDescriptor@,System.Guid*,System.Guid*,System.Object[])">
            <summary>
            WriteEvent, method to write a parameters with event schema properties
            </summary>
            <param name="eventDescriptor">
            Event Descriptor for this event. 
            </param>
            <param name="activityID">
            A pointer to the activity ID GUID to log 
            </param>
            <param name="childActivityID">
            childActivityID is marked as 'related' to the current activity ID. 
            </param>
            <param name="eventPayload">
            Payload for the ETW event. 
            </param>
        </member>
        <member name="M:Microsoft.Diagnostics.Tracing.EventProvider.WriteEvent(Microsoft.Diagnostics.Tracing.EventDescriptor@,System.Guid*,System.Guid*,System.Int32,System.IntPtr)">
            <summary>
            WriteEvent, method to be used by generated code on a derived class
            </summary>
            <param name="eventDescriptor">
            Event Descriptor for this event. 
            </param>
            <param name="activityID">
            A pointer to the activity ID to log 
            </param>
            <param name="childActivityID">
            If this event is generating a child activity (WriteEventTransfer related activity) this is child activity
            This can be null for events that do not generate a child activity.  
            </param>
            <param name="dataCount">
            number of event descriptors 
            </param>
            <param name="data">
            pointer  do the event data
            </param>
        </member>
        <member name="T:Microsoft.Diagnostics.Tracing.EventProvider.SessionInfo">
            <summary>
            A struct characterizing ETW sessions (identified by the etwSessionId) as
            activity-tracing-aware or legacy. A session that's activity-tracing-aware
            has specified one non-zero bit in the reserved range 44-47 in the 
            'allKeywords' value it passed in for a specific EventProvider.
            </summary>
        </member>
        <member name="T:Microsoft.Diagnostics.Tracing.EventSource.EventMetadata">
            <summary>
            Used to hold all the static information about an event.  This includes everything in the event
            descriptor as well as some stuff we added specifically for EventSource. see the
            code:m_eventData for where we use this.  
            </summary>
        </member>
        <member name="T:Microsoft.Diagnostics.Tracing.EventActivityOptions">
            <summary>
            EventActivityOptions flags allow to specify different activity related characteristics.
            </summary>
        </member>
        <member name="F:Microsoft.Diagnostics.Tracing.EventActivityOptions.None">
            <summary>
            No special options are added to the event.
            </summary>
        </member>
        <member name="F:Microsoft.Diagnostics.Tracing.EventActivityOptions.Disable">
            <summary>
            Disable Implicit Activity Tracking
            </summary>
        </member>
        <member name="F:Microsoft.Diagnostics.Tracing.EventActivityOptions.Recursive">
            <summary>
            Allow activity event to call itself (directly or indirectly)
            </summary>
        </member>
        <member name="F:Microsoft.Diagnostics.Tracing.EventActivityOptions.Detachable">
            <summary>
            Allows event activity to live beyond its parent.
            </summary>
        </member>
        <member name="T:Microsoft.Diagnostics.Tracing.EventCounter">
            <summary>
            Provides the ability to collect statistics through EventSource
            </summary>
        </member>
        <member name="M:Microsoft.Diagnostics.Tracing.EventCounter.#ctor(System.String,Microsoft.Diagnostics.Tracing.EventSource)">
            <summary>
            Initializes a new instance of the <see cref="T:Microsoft.Diagnostics.Tracing.EventCounter"/> class.
            </summary>
            <param name="name">The name.</param>
            <param name="eventSource">The event source.</param>
        </member>
        <member name="M:Microsoft.Diagnostics.Tracing.EventCounter.WriteMetric(System.Single)">
            <summary>
            Writes the metric.
            </summary>
            <param name="value">The value.</param>
        </member>
        <member name="T:Microsoft.Diagnostics.Tracing.TraceLoggingTypeInfo`1">
            <summary>
            TraceLogging: used when implementing a custom TraceLoggingTypeInfo.
            Implementations of this type provide the behaviors that TraceLogging
            uses to turn objects into event data. TraceLogging provides default
            implementations of this type, but custom implementations can be used
            when the default TraceLogging implementation is insufficient.
            </summary>
            <typeparam name="DataType">
            The type of object that is handled by this implementation.
            </typeparam>
        </member>
        <member name="T:Microsoft.Diagnostics.Tracing.TraceLoggingTypeInfo">
            <summary>
            TraceLogging: used when implementing a custom TraceLoggingTypeInfo.
            Non-generic base class for TraceLoggingTypeInfo&lt;DataType>. Do not derive
            from this class. Instead, derive from TraceLoggingTypeInfo&lt;DataType>.
            </summary>
        </member>
        <member name="M:Microsoft.Diagnostics.Tracing.TraceLoggingTypeInfo.WriteMetadata(Microsoft.Diagnostics.Tracing.TraceLoggingMetadataCollector,System.String,Microsoft.Diagnostics.Tracing.EventFieldFormat)">
            <summary>
            When overridden by a derived class, writes the metadata (schema) for
            this type. Note that the sequence of operations in WriteMetadata should be
            essentially identical to the sequence of operations in
            WriteData/WriteObjectData. Otherwise, the metadata and data will not match,
            which may cause trouble when decoding the event.
            </summary>
            <param name="collector">
            The object that collects metadata for this object's type. Metadata is written
            by calling methods on the collector object. Note that if the type contains
            sub-objects, the implementation of this method may need to call the
            WriteMetadata method for the type of the sub-object, e.g. by calling
            TraceLoggingTypeInfo&lt;SubType&gt;.Instance.WriteMetadata(...).
            </param>
            <param name="name">
            The name of the property that contains an object of this type, or null if this
            object is being written as a top-level object of an event. Typical usage
            is to pass this value to collector.AddGroup.
            </param>
            <param name="format">
            The format attribute for the field that contains an object of this type.
            </param>
        </member>
        <member name="M:Microsoft.Diagnostics.Tracing.TraceLoggingTypeInfo.WriteObjectData(Microsoft.Diagnostics.Tracing.TraceLoggingDataCollector,System.Object)">
            <summary>
            Refer to TraceLoggingTypeInfo.WriteObjectData for information about this
            method.
            </summary>
            <param name="collector">
            Refer to TraceLoggingTypeInfo.WriteObjectData for information about this
            method.
            </param>
            <param name="value">
            Refer to TraceLoggingTypeInfo.WriteObjectData for information about this
            method.
            </param>
        </member>
        <member name="M:Microsoft.Diagnostics.Tracing.TraceLoggingTypeInfo.GetData(System.Object)">
            <summary>
            Fetches the event parameter data for internal serialization. 
            </summary>
            <param name="value"></param>
            <returns></returns>
        </member>
        <member name="P:Microsoft.Diagnostics.Tracing.TraceLoggingTypeInfo.Name">
            <summary>
            Gets the name to use for the event if this type is the top-level type,
            or the name to use for an implicitly-named field.
            Never null.
            </summary>
        </member>
        <member name="P:Microsoft.Diagnostics.Tracing.TraceLoggingTypeInfo.Level">
            <summary>
            Gets the event level associated with this type. Any value in the range 0..255
            is an associated event level. Any value outside the range 0..255 is invalid and
            indicates that this type has no associated event level.
            </summary>
        </member>
        <member name="P:Microsoft.Diagnostics.Tracing.TraceLoggingTypeInfo.Opcode">
            <summary>
            Gets the event opcode associated with this type. Any value in the range 0..255
            is an associated event opcode. Any value outside the range 0..255 is invalid and
            indicates that this type has no associated event opcode.
            </summary>
        </member>
        <member name="P:Microsoft.Diagnostics.Tracing.TraceLoggingTypeInfo.Keywords">
            <summary>
            Gets the keyword(s) associated with this type.
            </summary>
        </member>
        <member name="P:Microsoft.Diagnostics.Tracing.TraceLoggingTypeInfo.Tags">
            <summary>
            Gets the event tags associated with this type.
            </summary>
        </member>
        <member name="M:Microsoft.Diagnostics.Tracing.TraceLoggingTypeInfo`1.#ctor">
            <summary>
            Initializes a new instance of the TraceLoggingTypeInfo class with
            default settings. Uses typeof(DataType).Name for EventName and FieldName.
            Marks Level and Opcode as unset. Sets Keywords and Traits to 0.
            </summary>
        </member>
        <member name="M:Microsoft.Diagnostics.Tracing.TraceLoggingTypeInfo`1.#ctor(System.String,Microsoft.Diagnostics.Tracing.EventLevel,Microsoft.Diagnostics.Tracing.EventOpcode,Microsoft.Diagnostics.Tracing.EventKeywords,Microsoft.Diagnostics.Tracing.EventTags)">
            <summary>
            Initializes a new instance of the TraceLoggingTypeInfo class, using
            the specified values for the EventName, Level, Opcode, Keywords,
            FieldName, and Traits properties.
            </summary>
            <param name="name">
            The value for the Name property. Must not contain '\0' characters.
            Must not be null.
            </param>
            <param name="level">
            The value for the Level property, or -1 to mark Level as unset.
            </param>
            <param name="opcode">
            The value for the Opcode property, or -1 to mark Opcode as unset.
            </param>
            <param name="keywords">
            The value for the Keywords property.
            </param>
            <param name="tags">
            The value for the Tags property.
            </param>
        </member>
        <member name="M:Microsoft.Diagnostics.Tracing.TraceLoggingTypeInfo`1.WriteData(Microsoft.Diagnostics.Tracing.TraceLoggingDataCollector,`0@)">
            <summary>
            When overridden by a derived class, writes the data (fields) for an instance
            of DataType. Note that the sequence of operations in WriteData should be
            essentially identical to the sequence of operations in WriteMetadata. Otherwise,
            the metadata and data will not match, which may cause trouble when decoding the
            event.
            </summary>
            <param name="collector">
            The object that collects the data for the instance. Data is written by calling
            methods on the collector object. Note that if the type contains sub-objects,
            the implementation of this method may need to call the WriteData method
            for the sub-object, e.g. by calling
            TraceLoggingTypeInfo&lt;SubType&gt;.Instance.WriteData(...).
            </param>
            <param name="value">
            The value for which data is to be written.
            </param>
        </member>
        <member name="M:Microsoft.Diagnostics.Tracing.TraceLoggingTypeInfo`1.WriteObjectData(Microsoft.Diagnostics.Tracing.TraceLoggingDataCollector,System.Object)">
            <summary>
            When overridden in a derived class, writes the data (fields) for an instance
            of DataType. The default implementation of WriteObjectData calls
            WriteData(collector, (DataType)value). Normally, you will override WriteData
            and not WriteObjectData. However, if your implementation of WriteData has to
            cast the value to object, it may be more efficient to reverse this calling
            pattern, i.e. to implement WriteObjectData, and then implement WriteData as a
            call to WriteObjectData.
            </summary>
            <param name="collector">
            The object that collects the data for the instance. Data is written by calling
            methods on the collector object. Note that if the type contains sub-objects,
            the implementation of this method may need to call the WriteData method
            for the sub-object, e.g. by calling
            TraceLoggingTypeInfo&lt;SubType&gt;.Instance.WriteData(...).
            </param>
            <param name="value">
            The value for which data is to be written. Note that this value may be null
            (even for value types) if the property from which the value was read is
            missing or null.
            </param>
        </member>
        <member name="P:Microsoft.Diagnostics.Tracing.TraceLoggingTypeInfo`1.Instance">
            <summary>
            Gets the type info that will be used for handling instances of
            DataType. If the instance has not already been set, this will
            call TrySetInstance(automaticSerializer) to set one, where
            automaticSerializer is the value returned from CreateDefault(),
            or a do-nothing serializer if CreateDefault() fails.
            </summary>
        </member>
        <member name="T:Microsoft.Diagnostics.Tracing.ConcurrentSet`2">
            <summary>
            TraceLogging: A very simple lock-free add-only dictionary.
            Warning: this is a copy-by-value type. Copying performs a snapshot.
            Accessing a readonly field always makes a copy of the field, so the
            GetOrAdd method will not work as expected if called on a readonly field.
            </summary>
            <typeparam name="KeyType">
            The type of the key, used for TryGet.
            </typeparam>
            <typeparam name="ItemType">
            The type of the item, used for GetOrAdd.
            </typeparam>
        </member>
        <member name="T:Microsoft.Diagnostics.Tracing.ConcurrentSetItem`2">
            <summary>
            TraceLogging: Abstract base class that must be inherited by items in a
            ConcurrentSet.
            </summary>
            <typeparam name="KeyType">Type of the set's key.</typeparam>
            <typeparam name="ItemType">Type of the derived class.</typeparam>
        </member>
        <member name="T:Microsoft.Diagnostics.Tracing.DataCollector">
            <summary>
            TraceLogging: This is the implementation of the DataCollector
            functionality. To enable safe access to the DataCollector from
            untrusted code, there is one thread-local instance of this structure
            per thread. The instance must be Enabled before any data is written to
            it. The instance must be Finished before the data is passed to
            EventWrite. The instance must be Disabled before the arrays referenced
            by the pointers are freed or unpinned.
            </summary>
        </member>
        <member name="M:Microsoft.Diagnostics.Tracing.DataCollector.Finish">
            <summary>
            Completes the list of scalars. Finish must be called before the data
            descriptor array is passed to EventWrite.
            </summary>
            <returns>
            A pointer to the next unused data descriptor, or datasEnd if they were
            all used. (Descriptors may be unused if a string or array was null.)
            </returns>
        </member>
        <member name="M:Microsoft.Diagnostics.Tracing.DataCollector.BeginBufferedArray">
            <summary>
            Marks the start of a non-blittable array or enumerable.
            </summary>
            <returns>Bookmark to be passed to EndBufferedArray.</returns>
        </member>
        <member name="M:Microsoft.Diagnostics.Tracing.DataCollector.EndBufferedArray(System.Int32,System.Int32)">
            <summary>
            Marks the end of a non-blittable array or enumerable.
            </summary>
            <param name="bookmark">The value returned by BeginBufferedArray.</param>
            <param name="count">The number of items in the array.</param>
        </member>
        <member name="M:Microsoft.Diagnostics.Tracing.DataCollector.BeginBuffered">
            <summary>
            Marks the start of dynamically-buffered data.
            </summary>
        </member>
        <member name="M:Microsoft.Diagnostics.Tracing.DataCollector.EndBuffered">
            <summary>
            Marks the end of dynamically-buffered data.
            </summary>
        </member>
        <member name="T:Microsoft.Diagnostics.Tracing.EmptyStruct">
            <summary>
            TraceLogging: Empty struct indicating no payload data.
            </summary>
        </member>
        <member name="T:Microsoft.Diagnostics.Tracing.EnumHelper`1">
            <summary>
            Provides support for casting enums to their underlying type
            from within generic context.
            </summary>
            <typeparam name="UnderlyingType">
            The underlying type of the enum.
            </typeparam>
        </member>
        <member name="T:Microsoft.Diagnostics.Tracing.EventPayload">
            <summary>
            EventPayload class holds the list of parameters and their corresponding values for user defined types passed to 
            EventSource APIs.
            Preserving the order of the elements as they were found inside user defined types is the most important characteristic of this class.
            </summary>
        </member>
        <member name="T:Microsoft.Diagnostics.Tracing.SimpleEventTypes`1">
            <summary>
            TraceLogging: Contains the metadata needed to emit an event, optimized
            for events with one top-level compile-time-typed payload object.
            </summary>
            <typeparam name="T">
            Type of the top-level payload object. Should be EmptyStruct if the
            event has no payload.
            </typeparam>
        </member>
        <member name="T:Microsoft.Diagnostics.Tracing.TraceLoggingEventTypes">
            <summary>
            TraceLogging: Used when calling EventSource.WriteMultiMerge.
            Stores the type information to use when writing the event fields.
            </summary>
        </member>
        <member name="M:Microsoft.Diagnostics.Tracing.TraceLoggingEventTypes.#ctor(System.String,Microsoft.Diagnostics.Tracing.EventTags,System.Type[])">
            <summary>
            Initializes a new instance of TraceLoggingEventTypes corresponding
            to the name, flags, and types provided. Always uses the default
            TypeInfo for each Type.
            </summary>
            <param name="name">
            The name to use when the name parameter passed to
            EventSource.Write is null. This value must not be null.
            </param>
            <param name="tags">
            Tags to add to the event if the tags are not set via options.
            </param>
            <param name="types">
            The types of the fields in the event. This value must not be null.
            </param>
        </member>
        <member name="M:Microsoft.Diagnostics.Tracing.TraceLoggingEventTypes.#ctor(System.String,Microsoft.Diagnostics.Tracing.EventTags,Microsoft.Diagnostics.Tracing.TraceLoggingTypeInfo[])">
            <summary>
            Returns a new instance of TraceLoggingEventInfo corresponding to the name,
            flags, and typeInfos provided.
            </summary>
            <param name="name">
            The name to use when the name parameter passed to
            EventSource.Write is null. This value must not be null.
            </param>
            <param name="tags">
            Tags to add to the event if the tags are not set via options.
            </param>
            <param name="typeInfos">
            The types of the fields in the event. This value must not be null.
            </param>
            <returns>
            An instance of TraceLoggingEventInfo with DefaultName set to the specified name
            and with the specified typeInfos.
            </returns>
        </member>
        <member name="P:Microsoft.Diagnostics.Tracing.TraceLoggingEventTypes.Name">
            <summary>
            Gets the default name that will be used for events with this descriptor.
            </summary>
        </member>
        <member name="P:Microsoft.Diagnostics.Tracing.TraceLoggingEventTypes.Level">
            <summary>
            Gets the default level that will be used for events with this descriptor.
            </summary>
        </member>
        <member name="P:Microsoft.Diagnostics.Tracing.TraceLoggingEventTypes.Opcode">
            <summary>
            Gets the default opcode that will be used for events with this descriptor.
            </summary>
        </member>
        <member name="P:Microsoft.Diagnostics.Tracing.TraceLoggingEventTypes.Keywords">
            <summary>
            Gets the default set of keywords that will added to events with this descriptor.
            </summary>
        </member>
        <member name="P:Microsoft.Diagnostics.Tracing.TraceLoggingEventTypes.Tags">
            <summary>
            Gets the default tags that will be added events with this descriptor.
            </summary>
        </member>
        <member name="T:Microsoft.Diagnostics.Tracing.EventSourceSettings">
            <summary>
            Enables specifying event source configuration options to be used in the EventSource constructor.
            </summary>
        </member>
        <member name="F:Microsoft.Diagnostics.Tracing.EventSourceSettings.Default">
            <summary>
            This specifies none of the special configuration options should be enabled.
            </summary>
        </member>
        <member name="F:Microsoft.Diagnostics.Tracing.EventSourceSettings.ThrowOnEventWriteErrors">
            <summary>
            Normally an EventSource NEVER throws; setting this option will tell it to throw when it encounters errors.  
            </summary>
        </member>
        <member name="F:Microsoft.Diagnostics.Tracing.EventSourceSettings.EtwManifestEventFormat">
            <summary>
            Setting this option is a directive to the ETW listener should use manifest-based format when
            firing events. This is the default option when defining a type derived from EventSource 
            (using the protected EventSource constructors).
            Only one of EtwManifestEventFormat or EtwSelfDescribingEventFormat should be specified
            </summary>
        </member>
        <member name="F:Microsoft.Diagnostics.Tracing.EventSourceSettings.EtwSelfDescribingEventFormat">
            <summary>
            Setting this option is a directive to the ETW listener should use self-describing event format
            when firing events. This is the default option when creating a new instance of the EventSource
            type (using the public EventSource constructors).  
            Only one of EtwManifestEventFormat or EtwSelfDescribingEventFormat should be specified
            </summary>
        </member>
        <member name="T:Microsoft.Diagnostics.Tracing.EventListener">
            <summary>
            An EventListener represents a target for the events generated by EventSources (that is subclasses
            of <see cref="T:Microsoft.Diagnostics.Tracing.EventSource"/>), in the current appdomain. When a new EventListener is created
            it is logically attached to all eventSources in that appdomain. When the EventListener is Disposed, then
            it is disconnected from the event eventSources. Note that there is a internal list of STRONG references
            to EventListeners, which means that relying on the lack of references to EventListeners to clean up
            EventListeners will NOT work. You must call EventListener.Dispose explicitly when a dispatcher is no
            longer needed.
            <para>
            Once created, EventListeners can enable or disable on a per-eventSource basis using verbosity levels
            (<see cref="T:Microsoft.Diagnostics.Tracing.EventLevel"/>) and bitfields (<see cref="T:Microsoft.Diagnostics.Tracing.EventKeywords"/>) to further restrict the set of 
            events to be sent to the dispatcher. The dispatcher can also send arbitrary commands to a particular 
            eventSource using the 'SendCommand' method. The meaning of the commands are eventSource specific.
            </para><para>
            The Null Guid (that is (new Guid()) has special meaning as a wildcard for 'all current eventSources in
            the appdomain'. Thus it is relatively easy to turn on all events in the appdomain if desired.
            </para><para>
            It is possible for there to be many EventListener's defined in a single appdomain. Each dispatcher is
            logically independent of the other listeners. Thus when one dispatcher enables or disables events, it
            affects only that dispatcher (other listeners get the events they asked for). It is possible that
            commands sent with 'SendCommand' would do a semantic operation that would affect the other listeners
            (like doing a GC, or flushing data ...), but this is the exception rather than the rule.
            </para><para>
            Thus the model is that each EventSource keeps a list of EventListeners that it is sending events
            to. Associated with each EventSource-dispatcher pair is a set of filtering criteria that determine for
            that eventSource what events that dispatcher will receive.
            </para><para>
            Listeners receive the events on their 'OnEventWritten' method. Thus subclasses of EventListener must
            override this method to do something useful with the data.
            </para><para>
            In addition, when new eventSources are created, the 'OnEventSourceCreate' method is called. The
            invariant associated with this callback is that every eventSource gets exactly one
            'OnEventSourceCreate' call for ever eventSource that can potentially send it log messages. In
            particular when a EventListener is created, typically a series of OnEventSourceCreate' calls are
            made to notify the new dispatcher of all the eventSources that existed before the EventListener was
            created.
            </para>
            </summary>
        </member>
        <member name="M:Microsoft.Diagnostics.Tracing.EventListener.#ctor">
            <summary>
            Create a new EventListener in which all events start off turned off (use EnableEvents to turn
            them on).  
            </summary>
        </member>
        <member name="M:Microsoft.Diagnostics.Tracing.EventListener.Dispose">
            <summary>
            Dispose should be called when the EventListener no longer desires 'OnEvent*' callbacks. Because
            there is an internal list of strong references to all EventListeners, calling 'Dispose' directly
            is the only way to actually make the listen die. Thus it is important that users of EventListener
            call Dispose when they are done with their logging.
            </summary>
        </member>
        <member name="M:Microsoft.Diagnostics.Tracing.EventListener.EnableEvents(Microsoft.Diagnostics.Tracing.EventSource,Microsoft.Diagnostics.Tracing.EventLevel)">
             <summary>
             Enable all events from the eventSource identified by 'eventSource' to the current 
             dispatcher that have a verbosity level of 'level' or lower.
               
             This call can have the effect of REDUCING the number of events sent to the 
             dispatcher if 'level' indicates a less verbose level than was previously enabled.
             
             This call never has an effect on other EventListeners.
            
             </summary>
        </member>
        <member name="M:Microsoft.Diagnostics.Tracing.EventListener.EnableEvents(Microsoft.Diagnostics.Tracing.EventSource,Microsoft.Diagnostics.Tracing.EventLevel,Microsoft.Diagnostics.Tracing.EventKeywords)">
            <summary>
            Enable all events from the eventSource identified by 'eventSource' to the current
            dispatcher that have a verbosity level of 'level' or lower and have a event keyword
            matching any of the bits in 'matchAnyKeyword'.
            
            This call can have the effect of REDUCING the number of events sent to the 
            dispatcher if 'level' indicates a less verbose level than was previously enabled or
            if 'matchAnyKeyword' has fewer keywords set than where previously set.
            
            This call never has an effect on other EventListeners.
            </summary>
        </member>
        <member name="M:Microsoft.Diagnostics.Tracing.EventListener.EnableEvents(Microsoft.Diagnostics.Tracing.EventSource,Microsoft.Diagnostics.Tracing.EventLevel,Microsoft.Diagnostics.Tracing.EventKeywords,System.Collections.Generic.IDictionary{System.String,System.String})">
            <summary>
            Enable all events from the eventSource identified by 'eventSource' to the current
            dispatcher that have a verbosity level of 'level' or lower and have a event keyword
            matching any of the bits in 'matchAnyKeyword' as well as any (eventSource specific)
            effect passing additional 'key-value' arguments 'arguments' might have.  
            
            This call can have the effect of REDUCING the number of events sent to the 
            dispatcher if 'level' indicates a less verbose level than was previously enabled or
            if 'matchAnyKeyword' has fewer keywords set than where previously set.
            
            This call never has an effect on other EventListeners.
            </summary>       
        </member>
        <member name="M:Microsoft.Diagnostics.Tracing.EventListener.DisableEvents(Microsoft.Diagnostics.Tracing.EventSource)">
            <summary>
            Disables all events coming from eventSource identified by 'eventSource'.  
            
            This call never has an effect on other EventListeners.      
            </summary>
        </member>
        <member name="M:Microsoft.Diagnostics.Tracing.EventListener.EventSourceIndex(Microsoft.Diagnostics.Tracing.EventSource)">
            <summary>
            EventSourceIndex is small non-negative integer (suitable for indexing in an array)
            identifying EventSource. It is unique per-appdomain. Some EventListeners might find
            it useful to store additional information about each eventSource connected to it,
            and EventSourceIndex allows this extra information to be efficiently stored in a
            (growable) array (eg List(T)).
            </summary>
        </member>
        <member name="M:Microsoft.Diagnostics.Tracing.EventListener.OnEventSourceCreated(Microsoft.Diagnostics.Tracing.EventSource)">
            <summary>
            This method is called whenever a new eventSource is 'attached' to the dispatcher.
            This can happen for all existing EventSources when the EventListener is created
            as well as for any EventSources that come into existence after the EventListener
            has been created.
            
            These 'catch up' events are called during the construction of the EventListener.
            Subclasses need to be prepared for that.
            
            In a multi-threaded environment, it is possible that 'OnEventWritten' callbacks
            for a particular eventSource to occur BEFORE the OnEventSourceCreated is issued.
            </summary>
            <param name="eventSource"></param>
        </member>
        <member name="M:Microsoft.Diagnostics.Tracing.EventListener.OnEventWritten(Microsoft.Diagnostics.Tracing.EventWrittenEventArgs)">
            <summary>
            This method is called whenever an event has been written by a EventSource for which 
            the EventListener has enabled events.  
            </summary>
            <param name="eventData"></param>
        </member>
        <member name="M:Microsoft.Diagnostics.Tracing.EventListener.AddEventSource(Microsoft.Diagnostics.Tracing.EventSource)">
            <summary>
            This routine adds newEventSource to the global list of eventSources, it also assigns the
            ID to the eventSource (which is simply the ordinal in the global list).
            
            EventSources currently do not pro-actively remove themselves from this list. Instead
            when eventSources's are GCed, the weak handle in this list naturally gets nulled, and
            we will reuse the slot. Today this list never shrinks (but we do reuse entries
            that are in the list). This seems OK since the expectation is that EventSources
            tend to live for the lifetime of the appdomain anyway (they tend to be used in
            global variables).
            </summary>
            <param name="newEventSource"></param>
        </member>
        <member name="M:Microsoft.Diagnostics.Tracing.EventListener.RemoveReferencesToListenerInEventSources(Microsoft.Diagnostics.Tracing.EventListener)">
            <summary>
            Helper used in code:Dispose that removes any references to 'listenerToRemove' in any of the
            eventSources in the appdomain.  
            
            The EventListenersLock must be held before calling this routine. 
            </summary>
        </member>
        <member name="M:Microsoft.Diagnostics.Tracing.EventListener.Validate">
            <summary>
            Checks internal consistency of EventSources/Listeners. 
            </summary>
        </member>
        <member name="F:Microsoft.Diagnostics.Tracing.EventListener.s_Listeners">
            <summary>
            The list of all listeners in the appdomain.  Listeners must be explicitly disposed to remove themselves 
            from this list.   Note that EventSources point to their listener but NOT the reverse.  
            </summary>
        </member>
        <member name="F:Microsoft.Diagnostics.Tracing.EventListener.s_EventSources">
            <summary>
            The list of all active eventSources in the appdomain.  Note that eventSources do NOT 
            remove themselves from this list this is a weak list and the GC that removes them may
            not have happened yet.  Thus it can contain event sources that are dead (thus you have 
            to filter those out.  
            </summary>
        </member>
        <member name="F:Microsoft.Diagnostics.Tracing.EventListener.s_CreatingListener">
            <summary>
            Used to disallow reentrancy.  
            </summary>
        </member>
        <member name="F:Microsoft.Diagnostics.Tracing.EventListener.s_EventSourceShutdownRegistered">
            <summary>
            Used to register AD/Process shutdown callbacks.
            </summary>
        </member>
        <member name="E:Microsoft.Diagnostics.Tracing.EventListener.EventSourceCreated">
            <summary>
            This event is raised whenever a new eventSource is 'attached' to the dispatcher.
            This can happen for all existing EventSources when the EventListener is created
            as well as for any EventSources that come into existence after the EventListener
            has been created.
            
            These 'catch up' events are called during the construction of the EventListener.
            Subclasses need to be prepared for that.
            
            In a multi-threaded environment, it is possible that 'EventSourceEventWrittenCallback' 
            events for a particular eventSource to occur BEFORE the EventSourceCreatedCallback is issued.
            </summary>
        </member>
        <member name="E:Microsoft.Diagnostics.Tracing.EventListener.EventWritten">
            <summary>
            This event is raised whenever an event has been written by a EventSource for which 
            the EventListener has enabled events.  
            </summary>
        </member>
        <member name="P:Microsoft.Diagnostics.Tracing.EventListener.EventListenersLock">
            <summary>
            Gets a global lock that is intended to protect the code:s_Listeners linked list and the
            code:s_EventSources WeakReference list.  (We happen to use the s_EventSources list as
            the lock object)
            </summary>
        </member>
        <member name="T:Microsoft.Diagnostics.Tracing.EventCommandEventArgs">
            <summary>
            Passed to the code:EventSource.OnEventCommand callback
            </summary>
        </member>
        <member name="M:Microsoft.Diagnostics.Tracing.EventCommandEventArgs.EnableEvent(System.Int32)">
            <summary>
            Enables the event that has the specified identifier.
            </summary>
            <param name="eventId">Event ID of event to be enabled</param>
            <returns>true if eventId is in range</returns>
        </member>
        <member name="M:Microsoft.Diagnostics.Tracing.EventCommandEventArgs.DisableEvent(System.Int32)">
            <summary>
            Disables the event that have the specified identifier.
            </summary>
            <param name="eventId">Event ID of event to be disabled</param>
            <returns>true if eventId is in range</returns>
        </member>
        <member name="P:Microsoft.Diagnostics.Tracing.EventCommandEventArgs.Command">
            <summary>
            Gets the command for the callback.
            </summary>
        </member>
        <member name="P:Microsoft.Diagnostics.Tracing.EventCommandEventArgs.Arguments">
            <summary>
            Gets the arguments for the callback.
            </summary>
        </member>
        <member name="T:Microsoft.Diagnostics.Tracing.EventSourceCreatedEventArgs">
            <summary>
            EventSourceCreatedEventArgs is passed to <see cref="E:Microsoft.Diagnostics.Tracing.EventListener.EventSourceCreated"/>
            </summary>
        </member>
        <member name="P:Microsoft.Diagnostics.Tracing.EventSourceCreatedEventArgs.EventSource">
            <summary>
            The EventSource that is attaching to the listener.
            </summary>
        </member>
        <member name="T:Microsoft.Diagnostics.Tracing.EventWrittenEventArgs">
            <summary>
            EventWrittenEventArgs is passed to the user-provided override for
            <see cref="M:Microsoft.Diagnostics.Tracing.EventListener.OnEventWritten(Microsoft.Diagnostics.Tracing.EventWrittenEventArgs)"/> when an event is fired.
            </summary>
        </member>
        <member name="P:Microsoft.Diagnostics.Tracing.EventWrittenEventArgs.EventName">
            <summary>
            The name of the event.   
            </summary>
        </member>
        <member name="P:Microsoft.Diagnostics.Tracing.EventWrittenEventArgs.EventId">
            <summary>
            Gets the event ID for the event that was written.
            </summary>
        </member>
        <member name="P:Microsoft.Diagnostics.Tracing.EventWrittenEventArgs.ActivityId">
            <summary>
            Gets the activity ID for the thread on which the event was written.
            </summary>
        </member>
        <member name="P:Microsoft.Diagnostics.Tracing.EventWrittenEventArgs.RelatedActivityId">
            <summary>
            Gets the related activity ID if one was specified when the event was written.
            </summary>
        </member>
        <member name="P:Microsoft.Diagnostics.Tracing.EventWrittenEventArgs.Payload">
            <summary>
            Gets the payload for the event.
            </summary>
        </member>
        <member name="P:Microsoft.Diagnostics.Tracing.EventWrittenEventArgs.PayloadNames">
            <summary>
            Gets the payload argument names.
            </summary>
        </member>
        <member name="P:Microsoft.Diagnostics.Tracing.EventWrittenEventArgs.EventSource">
            <summary>
            Gets the event source object.
            </summary>
        </member>
        <member name="P:Microsoft.Diagnostics.Tracing.EventWrittenEventArgs.Keywords">
            <summary>
            Gets the keywords for the event.
            </summary>
        </member>
        <member name="P:Microsoft.Diagnostics.Tracing.EventWrittenEventArgs.Opcode">
            <summary>
            Gets the operation code for the event.
            </summary>
        </member>
        <member name="P:Microsoft.Diagnostics.Tracing.EventWrittenEventArgs.Task">
            <summary>
            Gets the task for the event.
            </summary>
        </member>
        <member name="P:Microsoft.Diagnostics.Tracing.EventWrittenEventArgs.Tags">
            <summary>
            Any provider/user defined options associated with the event.  
            </summary>
        </member>
        <member name="P:Microsoft.Diagnostics.Tracing.EventWrittenEventArgs.Message">
            <summary>
            Gets the message for the event.
            </summary>
        </member>
        <member name="P:Microsoft.Diagnostics.Tracing.EventWrittenEventArgs.Channel">
            <summary>
            Gets the channel for the event.
            </summary>
        </member>
        <member name="P:Microsoft.Diagnostics.Tracing.EventWrittenEventArgs.Version">
            <summary>
            Gets the version of the event.
            </summary>
        </member>
        <member name="P:Microsoft.Diagnostics.Tracing.EventWrittenEventArgs.Level">
            <summary>
            Gets the level for the event.
            </summary>
        </member>
        <member name="T:Microsoft.Diagnostics.Tracing.EventSourceAttribute">
            <summary>
            Allows customizing defaults and specifying localization support for the event source class to which it is applied. 
            </summary>
        </member>
        <member name="P:Microsoft.Diagnostics.Tracing.EventSourceAttribute.Name">
            <summary>
            Overrides the ETW name of the event source (which defaults to the class name)
            </summary>
        </member>
        <member name="P:Microsoft.Diagnostics.Tracing.EventSourceAttribute.Guid">
            <summary>
            Overrides the default (calculated) Guid of an EventSource type. Explicitly defining a GUID is discouraged, 
            except when upgrading existing ETW providers to using event sources.
            </summary>
        </member>
        <member name="P:Microsoft.Diagnostics.Tracing.EventSourceAttribute.LocalizationResources">
            <summary>
            <para>
            EventSources support localization of events. The names used for events, opcodes, tasks, keywords and maps 
            can be localized to several languages if desired. This works by creating a ResX style string table 
            (by simply adding a 'Resource File' to your project). This resource file is given a name e.g. 
            'DefaultNameSpace.ResourceFileName' which can be passed to the ResourceManager constructor to read the 
            resources. This name is the value of the LocalizationResources property. 
            </para><para>
            If LocalizationResources property is non-null, then EventSource will look up the localized strings for events by 
            using the following resource naming scheme
            </para>
                <para>* event_EVENTNAME</para>
                <para>* task_TASKNAME</para>
                <para>* keyword_KEYWORDNAME</para>
                <para>* map_MAPNAME</para>
            <para>
            where the capitalized name is the name of the event, task, keyword, or map value that should be localized.   
            Note that the localized string for an event corresponds to the Message string, and can have {0} values 
            which represent the payload values.  
            </para>
            </summary>
        </member>
        <member name="T:Microsoft.Diagnostics.Tracing.EventAttribute">
            <summary>
            Any instance methods in a class that subclasses <see cref="T:Microsoft.Diagnostics.Tracing.EventSource"/> and that return void are
            assumed by default to be methods that generate an ETW event. Enough information can be deduced from the
            name of the method and its signature to generate basic schema information for the event. The
            <see cref="T:Microsoft.Diagnostics.Tracing.EventAttribute"/> class allows you to specify additional event schema information for an event if
            desired.
            </summary>
        </member>
        <member name="M:Microsoft.Diagnostics.Tracing.EventAttribute.#ctor(System.Int32)">
            <summary>Construct an EventAttribute with specified eventId</summary>
            <param name="eventId">ID of the ETW event (an integer between 1 and 65535)</param>
        </member>
        <member name="P:Microsoft.Diagnostics.Tracing.EventAttribute.EventId">
            <summary>Event's ID</summary>
        </member>
        <member name="P:Microsoft.Diagnostics.Tracing.EventAttribute.Level">
            <summary>Event's severity level: indicates the severity or verbosity of the event</summary>
        </member>
        <member name="P:Microsoft.Diagnostics.Tracing.EventAttribute.Keywords">
            <summary>Event's keywords: allows classification of events by "categories"</summary>
        </member>
        <member name="P:Microsoft.Diagnostics.Tracing.EventAttribute.Opcode">
            <summary>Event's operation code: allows defining operations, generally used with Tasks</summary>
        </member>
        <member name="P:Microsoft.Diagnostics.Tracing.EventAttribute.Task">
            <summary>Event's task: allows logical grouping of events</summary>
        </member>
        <member name="P:Microsoft.Diagnostics.Tracing.EventAttribute.Channel">
            <summary>Event's channel: defines an event log as an additional destination for the event</summary>
        </member>
        <member name="P:Microsoft.Diagnostics.Tracing.EventAttribute.Version">
            <summary>Event's version</summary>
        </member>
        <member name="P:Microsoft.Diagnostics.Tracing.EventAttribute.Message">
            <summary>
            This can be specified to enable formatting and localization of the event's payload. You can 
            use standard .NET substitution operators (eg {1}) in the string and they will be replaced 
            with the 'ToString()' of the corresponding part of the  event payload.   
            </summary>
        </member>
        <member name="P:Microsoft.Diagnostics.Tracing.EventAttribute.Tags">
            <summary>
            User defined options associated with the event.  These do not have meaning to the EventSource but
            are passed through to listeners which given them semantics.  
            </summary>
        </member>
        <member name="P:Microsoft.Diagnostics.Tracing.EventAttribute.ActivityOptions">
            <summary>
            Allows fine control over the Activity IDs generated by start and stop events
            </summary>
        </member>
        <member name="T:Microsoft.Diagnostics.Tracing.NonEventAttribute">
            <summary>
            By default all instance methods in a class that subclasses code:EventSource that and return
            void are assumed to be methods that generate an event. This default can be overridden by specifying
            the code:NonEventAttribute
            </summary>
        </member>
        <member name="M:Microsoft.Diagnostics.Tracing.NonEventAttribute.#ctor">
            <summary>
            Constructs a default NonEventAttribute
            </summary>
        </member>
        <member name="T:Microsoft.Diagnostics.Tracing.EventChannelAttribute">
            <summary>
            EventChannelAttribute allows customizing channels supported by an EventSource. This attribute must be
            applied to an member of type EventChannel defined in a Channels class nested in the EventSource class:
            <code>
                public static class Channels
                {
                    [Channel(Enabled = true, EventChannelType = EventChannelType.Admin)]
                    public const EventChannel Admin = (EventChannel)16;
                
                    [Channel(Enabled = false, EventChannelType = EventChannelType.Operational)]
                    public const EventChannel Operational = (EventChannel)17;
                }
            </code>
            </summary>
        </member>
        <member name="P:Microsoft.Diagnostics.Tracing.EventChannelAttribute.Enabled">
            <summary>
            Specified whether the channel is enabled by default
            </summary>
        </member>
        <member name="P:Microsoft.Diagnostics.Tracing.EventChannelAttribute.EventChannelType">
            <summary>
            Legal values are in EventChannelType
            </summary>
        </member>
        <member name="T:Microsoft.Diagnostics.Tracing.EventChannelType">
            <summary>
            Allowed channel types
            </summary>
        </member>
        <member name="F:Microsoft.Diagnostics.Tracing.EventChannelType.Admin">
            <summary>The admin channel</summary>
        </member>
        <member name="F:Microsoft.Diagnostics.Tracing.EventChannelType.Operational">
            <summary>The operational channel</summary>
        </member>
        <member name="F:Microsoft.Diagnostics.Tracing.EventChannelType.Analytic">
            <summary>The Analytic channel</summary>
        </member>
        <member name="F:Microsoft.Diagnostics.Tracing.EventChannelType.Debug">
            <summary>The debug channel</summary>
        </member>
        <member name="T:Microsoft.Diagnostics.Tracing.EventCommand">
            <summary>
            Describes the pre-defined command (EventCommandEventArgs.Command property) that is passed to the OnEventCommand callback.
            </summary>
        </member>
        <member name="F:Microsoft.Diagnostics.Tracing.EventCommand.Update">
            <summary>
            Update EventSource state
            </summary>
        </member>
        <member name="F:Microsoft.Diagnostics.Tracing.EventCommand.SendManifest">
            <summary>
            Request EventSource to generate and send its manifest
            </summary>
        </member>
        <member name="F:Microsoft.Diagnostics.Tracing.EventCommand.Enable">
            <summary>
            Enable event
            </summary>
        </member>
        <member name="F:Microsoft.Diagnostics.Tracing.EventCommand.Disable">
            <summary>
            Disable event
            </summary>
        </member>
        <member name="T:Microsoft.Diagnostics.Tracing.SessionMask">
            <summary>
            A SessionMask represents a set of (at most MAX) sessions as a bit mask. The perEventSourceSessionId
            is the index in the SessionMask of the bit that will be set. These can translate to
            EventSource's reserved keywords bits using the provided ToEventKeywords() and
            FromEventKeywords() methods.
            </summary>
        </member>
        <member name="T:Microsoft.Diagnostics.Tracing.EventDispatcher">
            <summary>
            code:EventDispatchers are a simple 'helper' structure that holds the filtering state
            (m_EventEnabled) for a particular EventSource X EventListener tuple
            
            Thus a single EventListener may have many EventDispatchers (one for every EventSource 
            that that EventListener has activate) and a Single EventSource may also have many
            event Dispatchers (one for every EventListener that has activated it). 
            
            Logically a particular EventDispatcher belongs to exactly one EventSource and exactly  
            one EventListener (alhtough EventDispatcher does not 'remember' the EventSource it is
            associated with. 
            </summary>
        </member>
        <member name="T:Microsoft.Diagnostics.Tracing.EventManifestOptions">
            <summary>
            Flags that can be used with EventSource.GenerateManifest to control how the ETW manifest for the EventSource is
            generated.
            </summary>
        </member>
        <member name="F:Microsoft.Diagnostics.Tracing.EventManifestOptions.None">
            <summary>
            Only the resources associated with current UI culture are included in the  manifest
            </summary>
        </member>
        <member name="F:Microsoft.Diagnostics.Tracing.EventManifestOptions.Strict">
            <summary>
            Throw exceptions for any inconsistency encountered
            </summary>
        </member>
        <member name="F:Microsoft.Diagnostics.Tracing.EventManifestOptions.AllCultures">
            <summary>
            Generate a "resources" node under "localization" for every satellite assembly provided
            </summary>
        </member>
        <member name="F:Microsoft.Diagnostics.Tracing.EventManifestOptions.OnlyIfNeededForRegistration">
            <summary>
            Generate the manifest only if the event source needs to be registered on the machine,
            otherwise return null (but still perform validation if Strict is specified)
            </summary>
        </member>
        <member name="F:Microsoft.Diagnostics.Tracing.EventManifestOptions.AllowEventSourceOverride">
            <summary>
            When generating the manifest do *not* enforce the rule that the current EventSource class
            must be the base class for the user-defined type passed in. This allows validation of .net
            event sources using the new validation code
            </summary>
        </member>
        <member name="T:Microsoft.Diagnostics.Tracing.ManifestBuilder">
            <summary>
            ManifestBuilder is designed to isolate the details of the message of the event from the
            rest of EventSource.  This one happens to create XML. 
            </summary>
        </member>
        <member name="M:Microsoft.Diagnostics.Tracing.ManifestBuilder.#ctor(System.String,System.Guid,System.String,System.Resources.ResourceManager,Microsoft.Diagnostics.Tracing.EventManifestOptions)">
            <summary>
            Build a manifest for 'providerName' with the given GUID, which will be packaged into 'dllName'.
            'resources, is a resource manager.  If specified all messages are localized using that manager.  
            </summary>
        </member>
        <member name="M:Microsoft.Diagnostics.Tracing.ManifestBuilder.AddChannel(System.String,System.Int32,Microsoft.Diagnostics.Tracing.EventChannelAttribute)">
            <summary>
            Add a channel.  channelAttribute can be null
            </summary>
        </member>
        <member name="M:Microsoft.Diagnostics.Tracing.ManifestBuilder.ManifestError(System.String,System.Boolean)">
            <summary>
            When validating an event source it adds the error to the error collection.
            When not validating it throws an exception if runtimeCritical is "true".
            Otherwise the error is ignored.
            </summary>
            <param name="msg"></param>
            <param name="runtimeCritical"></param>
        </member>
        <member name="M:Microsoft.Diagnostics.Tracing.ManifestBuilder.GetSupportedCultures(System.Resources.ResourceManager)">
            <summary>
            There's no API to enumerate all languages an assembly is localized into, so instead
            we enumerate through all the "known" cultures and attempt to load a corresponding satellite 
            assembly
            </summary>
            <param name="resources"></param>
            <returns></returns>
        </member>
        <member name="T:Microsoft.Diagnostics.Tracing.ManifestEnvelope">
            <summary>
            Used to send the m_rawManifest into the event dispatcher as a series of events.  
            </summary>
        </member>
        <member name="T:Microsoft.Diagnostics.Tracing.EventSourceException">
            <summary>
            Exception that is thrown when an error occurs during EventSource operation.
            </summary>
        </member>
        <member name="M:Microsoft.Diagnostics.Tracing.EventSourceException.#ctor">
            <summary>
            Initializes a new instance of the EventSourceException class.
            </summary>
        </member>
        <member name="M:Microsoft.Diagnostics.Tracing.EventSourceException.#ctor(System.String)">
            <summary>
            Initializes a new instance of the EventSourceException class with a specified error message.
            </summary>
        </member>
        <member name="M:Microsoft.Diagnostics.Tracing.EventSourceException.#ctor(System.String,System.Exception)">
            <summary>
            Initializes a new instance of the EventSourceException class with a specified error message 
            and a reference to the inner exception that is the cause of this exception.
            </summary>
        </member>
        <member name="M:Microsoft.Diagnostics.Tracing.EventSourceException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
            <summary>
            Initializes a new instance of the EventSourceException class with serialized data.
            </summary>
        </member>
        <member name="T:Microsoft.Diagnostics.Tracing.FieldMetadata">
            <summary>
            TraceLogging: Contains the information needed to generate tracelogging
            metadata for an event field.
            </summary>
        </member>
        <member name="F:Microsoft.Diagnostics.Tracing.FieldMetadata.name">
            <summary>
            Name of the field
            </summary>
        </member>
        <member name="F:Microsoft.Diagnostics.Tracing.FieldMetadata.nameSize">
            <summary>
            The number of bytes in the UTF8 Encoding of 'name' INCLUDING a null terminator.  
            </summary>
        </member>
        <member name="F:Microsoft.Diagnostics.Tracing.FieldMetadata.fixedCount">
            <summary>
            ETW supports fixed sized arrays. If inType has the InTypeFixedCountFlag then this is the
            statically known count for the array. It is also used to encode the number of bytes of
            custom meta-data if InTypeCustomCountFlag set.
            </summary>
        </member>
        <member name="M:Microsoft.Diagnostics.Tracing.FieldMetadata.#ctor(System.String,Microsoft.Diagnostics.Tracing.TraceLoggingDataType,Microsoft.Diagnostics.Tracing.EventFieldTags,System.Boolean)">
            <summary>
            Scalar or variable-length array.
            </summary>
        </member>
        <member name="M:Microsoft.Diagnostics.Tracing.FieldMetadata.#ctor(System.String,Microsoft.Diagnostics.Tracing.TraceLoggingDataType,Microsoft.Diagnostics.Tracing.EventFieldTags,System.UInt16)">
            <summary>
            Fixed-length array.
            </summary>
        </member>
        <member name="M:Microsoft.Diagnostics.Tracing.FieldMetadata.#ctor(System.String,Microsoft.Diagnostics.Tracing.TraceLoggingDataType,Microsoft.Diagnostics.Tracing.EventFieldTags,System.Byte[])">
            <summary>
            Custom serializer
            </summary>
        </member>
        <member name="M:Microsoft.Diagnostics.Tracing.FieldMetadata.Encode(System.Int32@,System.Byte[])">
            <summary>
            This is the main routine for FieldMetaData.  Basically it will serialize the data in
            this structure as TraceLogging style meta-data into the array 'metaArray' starting at
            'pos' (pos is updated to reflect the bytes written).  
            
            Note that 'metaData' can be null, in which case it only updates 'pos'.  This is useful
            for a 'two pass' approach where you figure out how big to make the array, and then you
            fill it in.   
            </summary>
        </member>
        <member name="T:Microsoft.Diagnostics.Tracing.InvokeTypeInfo`1">
            <summary>
            TraceLogging: An implementation of TraceLoggingTypeInfo that works
            for arbitrary types. It writes all public instance properties of
            the type. Implemented using Delegate.CreateDelegate(property.Getter).
            </summary>
            <typeparam name="ContainerType">
            Type from which to read values.
            </typeparam>
        </member>
        <member name="T:Microsoft.Diagnostics.Tracing.NameInfo">
            <summary>
            TraceLogging: Stores the metadata and event identifier corresponding
            to a tracelogging event type+name+tags combination.
            </summary>
        </member>
        <member name="M:Microsoft.Diagnostics.Tracing.NameInfo.ReserveEventIDsBelow(System.Int32)">
            <summary>
            Insure that eventIds strictly less than 'eventId' will not be
            used by the SelfDescribing events.   
            </summary>
        </member>
        <member name="T:Microsoft.Diagnostics.Tracing.PropertyAccessor`1">
            <summary>
            TraceLogging: Each PropertyAccessor instance encapsulates the information
            needed to read a particular property from an instance of ContainerType
            and write the value to a DataCollector. Used by InvokeTypeInfo.
            </summary>
            <typeparam name="ContainerType">
            The type of the object from which properties are read.
            </typeparam>
        </member>
        <member name="T:Microsoft.Diagnostics.Tracing.NonGenericProperytWriter`1">
            <summary>
            The type specific version of the property writers uses generics in a way 
            that Project N can't handle at the moment.   To avoid this we simply 
            use reflection completely.  
            </summary>
        </member>
        <member name="T:Microsoft.Diagnostics.Tracing.StructPropertyWriter`2">
            <summary>
            Implementation of PropertyAccessor for use when ContainerType is a
            value type.
            </summary>
            <typeparam name="ContainerType">The type of the object from which properties are read.</typeparam>
            <typeparam name="ValueType">Type of the property being read.</typeparam>
        </member>
        <member name="T:Microsoft.Diagnostics.Tracing.ClassPropertyWriter`2">
            <summary>
            Implementation of PropertyAccessor for use when ContainerType is a
            reference type.
            </summary>
            <typeparam name="ContainerType">The type of the object from which properties are read.</typeparam>
            <typeparam name="ValueType">Type of the property being read.</typeparam>
        </member>
        <member name="T:Microsoft.Diagnostics.Tracing.PropertyAnalysis">
            <summary>
            TraceLogging: stores the per-property information obtained by
            reflecting over a type.
            </summary>
        </member>
        <member name="T:Microsoft.Diagnostics.Tracing.NullTypeInfo`1">
            <summary>
            TraceLogging: Type handler for empty or unsupported types.
            </summary>
            <typeparam name="DataType">The type to handle.</typeparam>
        </member>
        <member name="T:Microsoft.Diagnostics.Tracing.BooleanTypeInfo">
            <summary>
            TraceLogging: Type handler for Boolean.
            </summary>
        </member>
        <member name="T:Microsoft.Diagnostics.Tracing.ByteTypeInfo">
            <summary>
            TraceLogging: Type handler for Byte.
            </summary>
        </member>
        <member name="T:Microsoft.Diagnostics.Tracing.SByteTypeInfo">
            <summary>
            TraceLogging: Type handler for SByte.
            </summary>
        </member>
        <member name="T:Microsoft.Diagnostics.Tracing.Int16TypeInfo">
            <summary>
            TraceLogging: Type handler for Int16.
            </summary>
        </member>
        <member name="T:Microsoft.Diagnostics.Tracing.UInt16TypeInfo">
            <summary>
            TraceLogging: Type handler for UInt16.
            </summary>
        </member>
        <member name="T:Microsoft.Diagnostics.Tracing.Int32TypeInfo">
            <summary>
            TraceLogging: Type handler for Int32.
            </summary>
        </member>
        <member name="T:Microsoft.Diagnostics.Tracing.UInt32TypeInfo">
            <summary>
            TraceLogging: Type handler for UInt32.
            </summary>
        </member>
        <member name="T:Microsoft.Diagnostics.Tracing.Int64TypeInfo">
            <summary>
            TraceLogging: Type handler for Int64.
            </summary>
        </member>
        <member name="T:Microsoft.Diagnostics.Tracing.UInt64TypeInfo">
            <summary>
            TraceLogging: Type handler for UInt64.
            </summary>
        </member>
        <member name="T:Microsoft.Diagnostics.Tracing.IntPtrTypeInfo">
            <summary>
            TraceLogging: Type handler for IntPtr.
            </summary>
        </member>
        <member name="T:Microsoft.Diagnostics.Tracing.UIntPtrTypeInfo">
            <summary>
            TraceLogging: Type handler for UIntPtr.
            </summary>
        </member>
        <member name="T:Microsoft.Diagnostics.Tracing.DoubleTypeInfo">
            <summary>
            TraceLogging: Type handler for Double.
            </summary>
        </member>
        <member name="T:Microsoft.Diagnostics.Tracing.SingleTypeInfo">
            <summary>
            TraceLogging: Type handler for Single.
            </summary>
        </member>
        <member name="T:Microsoft.Diagnostics.Tracing.CharTypeInfo">
            <summary>
            TraceLogging: Type handler for Char.
            </summary>
        </member>
        <member name="T:Microsoft.Diagnostics.Tracing.BooleanArrayTypeInfo">
            <summary>
            TraceLogging: Type handler for Boolean[].
            </summary>
        </member>
        <member name="T:Microsoft.Diagnostics.Tracing.ByteArrayTypeInfo">
            <summary>
            TraceLogging: Type handler for Byte[].
            </summary>
        </member>
        <member name="T:Microsoft.Diagnostics.Tracing.SByteArrayTypeInfo">
            <summary>
            TraceLogging: Type handler for SByte[].
            </summary>
        </member>
        <member name="T:Microsoft.Diagnostics.Tracing.Int16ArrayTypeInfo">
            <summary>
            TraceLogging: Type handler for Int16[].
            </summary>
        </member>
        <member name="T:Microsoft.Diagnostics.Tracing.UInt16ArrayTypeInfo">
            <summary>
            TraceLogging: Type handler for UInt16[].
            </summary>
        </member>
        <member name="T:Microsoft.Diagnostics.Tracing.Int32ArrayTypeInfo">
            <summary>
            TraceLogging: Type handler for Int32[].
            </summary>
        </member>
        <member name="T:Microsoft.Diagnostics.Tracing.UInt32ArrayTypeInfo">
            <summary>
            TraceLogging: Type handler for UInt32[].
            </summary>
        </member>
        <member name="T:Microsoft.Diagnostics.Tracing.Int64ArrayTypeInfo">
            <summary>
            TraceLogging: Type handler for Int64[].
            </summary>
        </member>
        <member name="T:Microsoft.Diagnostics.Tracing.UInt64ArrayTypeInfo">
            <summary>
            TraceLogging: Type handler for UInt64[].
            </summary>
        </member>
        <member name="T:Microsoft.Diagnostics.Tracing.IntPtrArrayTypeInfo">
            <summary>
            TraceLogging: Type handler for IntPtr[].
            </summary>
        </member>
        <member name="T:Microsoft.Diagnostics.Tracing.UIntPtrArrayTypeInfo">
            <summary>
            TraceLogging: Type handler for UIntPtr[].
            </summary>
        </member>
        <member name="T:Microsoft.Diagnostics.Tracing.CharArrayTypeInfo">
            <summary>
            TraceLogging: Type handler for Char[].
            </summary>
        </member>
        <member name="T:Microsoft.Diagnostics.Tracing.DoubleArrayTypeInfo">
            <summary>
            TraceLogging: Type handler for Double[].
            </summary>
        </member>
        <member name="T:Microsoft.Diagnostics.Tracing.SingleArrayTypeInfo">
            <summary>
            TraceLogging: Type handler for Single[].
            </summary>
        </member>
        <member name="T:Microsoft.Diagnostics.Tracing.StringTypeInfo">
            <summary>
            TraceLogging: Type handler for String.
            </summary>
        </member>
        <member name="T:Microsoft.Diagnostics.Tracing.GuidTypeInfo">
            <summary>
            TraceLogging: Type handler for Guid.
            </summary>
        </member>
        <member name="T:Microsoft.Diagnostics.Tracing.GuidArrayTypeInfo">
            <summary>
            TraceLogging: Type handler for Guid[].
            </summary>
        </member>
        <member name="T:Microsoft.Diagnostics.Tracing.DateTimeTypeInfo">
            <summary>
            TraceLogging: Type handler for DateTime.
            </summary>
        </member>
        <member name="T:Microsoft.Diagnostics.Tracing.DateTimeOffsetTypeInfo">
            <summary>
            TraceLogging: Type handler for DateTimeOffset.
            </summary>
        </member>
        <member name="T:Microsoft.Diagnostics.Tracing.TimeSpanTypeInfo">
            <summary>
            TraceLogging: Type handler for TimeSpan.
            </summary>
        </member>
        <member name="T:Microsoft.Diagnostics.Tracing.DecimalTypeInfo">
            <summary>
            TraceLogging: Type handler for Decimal. (Note: not full-fidelity, exposed as Double.)
            </summary>
        </member>
        <member name="T:Microsoft.Diagnostics.Tracing.KeyValuePairTypeInfo`2">
            <summary>
            TraceLogging: Type handler for KeyValuePair.
            </summary>
            <typeparam name="K">Type of the KeyValuePair's Key property.</typeparam>
            <typeparam name="V">Type of the KeyValuePair's Value property.</typeparam>
        </member>
        <member name="T:Microsoft.Diagnostics.Tracing.NullableTypeInfo`1">
            <summary>
            TraceLogging: Type handler for Nullable.
            </summary>
            <typeparam name="T">Type of the Nullable's Value property.</typeparam>
        </member>
        <member name="T:Microsoft.Diagnostics.Tracing.Statics">
            <summary>
            TraceLogging: Constants and utility functions.
            </summary>
        </member>
        <member name="M:Microsoft.Diagnostics.Tracing.Statics.MetadataForString(System.String,System.Int32,System.Int32,System.Int32)">
            <summary>
            A complete metadata chunk can be expressed as:
            length16 + prefix + null-terminated-utf8-name + suffix + additionalData.
            We assume that excludedData will be provided by some other means,
            but that its size is known. This function returns a blob containing
            length16 + prefix + name + suffix, with prefix and suffix initialized
            to 0's. The length16 value is initialized to the length of the returned
            blob plus additionalSize, so that the concatenation of the returned blob
            plus a blob of size additionalSize constitutes a valid metadata blob.
            </summary>
            <param name="name">
            The name to include in the blob.
            </param>
            <param name="prefixSize">
            Amount of space to reserve before name. For provider or field blobs, this
            should be 0. For event blobs, this is used for the tags field and will vary
            from 1 to 4, depending on how large the tags field needs to be.
            </param>
            <param name="suffixSize">
            Amount of space to reserve after name. For example, a provider blob with no
            traits would reserve 0 extra bytes, but a provider blob with a single GroupId
            field would reserve 19 extra bytes.
            </param>
            <param name="additionalSize">
            Amount of additional data in another blob. This value will be counted in the
            blob's length field, but will not be included in the returned byte[] object.
            The complete blob would then be the concatenation of the returned byte[] object
            with another byte[] object of length additionalSize.
            </param>
            <returns>
            A byte[] object with the length and name fields set, with room reserved for
            prefix and suffix. If additionalSize was 0, the byte[] object is a complete
            blob. Otherwise, another byte[] of size additionalSize must be concatenated
            with this one to form a complete blob.
            </returns>
        </member>
        <member name="M:Microsoft.Diagnostics.Tracing.Statics.EncodeTags(System.Int32,System.Int32@,System.Byte[])">
            <summary>
            Serialize the low 28 bits of the tags value into the metadata stream,
            starting at the index given by pos. Updates pos. Writes 1 to 4 bytes,
            depending on the value of the tags variable. Usable for event tags and
            field tags.
            
            Note that 'metadata' can be null, in which case it only updates 'pos'.
            This is useful for a two pass approach where you figure out how big to
            make the array, and then you fill it in.   
            </summary>
        </member>
        <member name="M:Microsoft.Diagnostics.Tracing.Statics.Format8(Microsoft.Diagnostics.Tracing.EventFieldFormat,Microsoft.Diagnostics.Tracing.TraceLoggingDataType)">
            <summary>
            Adjusts the native type based on format.
            - If format is default, return native.
            - If format is recognized, return the canonical type for that format.
            - Otherwise remove existing format from native and apply the requested format.
            </summary>
        </member>
        <member name="M:Microsoft.Diagnostics.Tracing.Statics.Format16(Microsoft.Diagnostics.Tracing.EventFieldFormat,Microsoft.Diagnostics.Tracing.TraceLoggingDataType)">
            <summary>
            Adjusts the native type based on format.
            - If format is default, return native.
            - If format is recognized, return the canonical type for that format.
            - Otherwise remove existing format from native and apply the requested format.
            </summary>
        </member>
        <member name="M:Microsoft.Diagnostics.Tracing.Statics.Format32(Microsoft.Diagnostics.Tracing.EventFieldFormat,Microsoft.Diagnostics.Tracing.TraceLoggingDataType)">
            <summary>
            Adjusts the native type based on format.
            - If format is default, return native.
            - If format is recognized, return the canonical type for that format.
            - Otherwise remove existing format from native and apply the requested format.
            </summary>
        </member>
        <member name="M:Microsoft.Diagnostics.Tracing.Statics.Format64(Microsoft.Diagnostics.Tracing.EventFieldFormat,Microsoft.Diagnostics.Tracing.TraceLoggingDataType)">
            <summary>
            Adjusts the native type based on format.
            - If format is default, return native.
            - If format is recognized, return the canonical type for that format.
            - Otherwise remove existing format from native and apply the requested format.
            </summary>
        </member>
        <member name="M:Microsoft.Diagnostics.Tracing.Statics.FormatPtr(Microsoft.Diagnostics.Tracing.EventFieldFormat,Microsoft.Diagnostics.Tracing.TraceLoggingDataType)">
            <summary>
            Adjusts the native type based on format.
            - If format is default, return native.
            - If format is recognized, return the canonical type for that format.
            - Otherwise remove existing format from native and apply the requested format.
            </summary>
        </member>
        <member name="T:Microsoft.Diagnostics.Tracing.EventSourceActivity">
            <summary>
            Provides support for EventSource activities by marking the start and
            end of a particular operation.
            </summary>
        </member>
        <member name="M:Microsoft.Diagnostics.Tracing.EventSourceActivity.#ctor(Microsoft.Diagnostics.Tracing.EventSource)">
            <summary>
            Initializes a new instance of the EventSourceActivity class that
            is attached to the specified event source. The new activity will
            not be attached to any related (parent) activity.
            The activity is created in the Initialized state.
            </summary>
            <param name="eventSource">
            The event source to which the activity information is written.
            </param>
        </member>
        <member name="M:Microsoft.Diagnostics.Tracing.EventSourceActivity.op_Implicit(Microsoft.Diagnostics.Tracing.EventSource)~Microsoft.Diagnostics.Tracing.EventSourceActivity">
            <summary>
            You can make an activity out of just an EventSource.  
            </summary>
        </member>
        <member name="M:Microsoft.Diagnostics.Tracing.EventSourceActivity.Start``1(System.String,Microsoft.Diagnostics.Tracing.EventSourceOptions,``0)">
            <summary>
            Writes a Start event with the specified name and data.   If the start event is not active (because the provider 
            is not on or keyword-level indiates the event is off, then the returned activity is simply the 'this' poitner 
            and it is effectively like the Start d
            
            A new activityID GUID is generated and the returned
            EventSourceActivity remembers this activity and will mark every event (including the start stop and any writes)
            with this activityID.   In addition the Start activity will log a 'relatedActivityID' that was the activity
            ID before the start event.   This way event processors can form a linked list of all the activities that
            caused this one (directly or indirectly).  
            </summary>
            <param name="eventName">
            The name to use for the event.   It is strongly suggested that this name end in 'Start' (e.g. DownloadStart).  
            If you do this, then the Stop() method will automatically replace the 'Start' suffix with a 'Stop' suffix.  
            </param>
            <param name="options">Allow options (keywords, level) to be set for the write associated with this start 
            These will also be used for the stop event.</param>
            <param name="data">The data to include in the event.</param>
        </member>
        <member name="M:Microsoft.Diagnostics.Tracing.EventSourceActivity.Start(System.String)">
            <summary>
            Shortcut version see Start(string eventName, EventSourceOptions options, T data) Options is empty (no keywords 
            and level==Info) Data payload is empty.  
            </summary>
        </member>
        <member name="M:Microsoft.Diagnostics.Tracing.EventSourceActivity.Start(System.String,Microsoft.Diagnostics.Tracing.EventSourceOptions)">
            <summary>
            Shortcut version see Start(string eventName, EventSourceOptions options, T data).  Data payload is empty. 
            </summary>
        </member>
        <member name="M:Microsoft.Diagnostics.Tracing.EventSourceActivity.Start``1(System.String,``0)">
            <summary>
            Shortcut version see Start(string eventName, EventSourceOptions options, T data) Options is empty (no keywords 
            and level==Info) 
            </summary>
        </member>
        <member name="M:Microsoft.Diagnostics.Tracing.EventSourceActivity.Stop``1(``0)">
            <summary>
            Writes a Stop event with the specified data, and sets the activity
            to the Stopped state.  The name is determined by the eventName used in Start.
            If that Start event name is suffixed with 'Start' that is removed, and regardless
            'Stop' is appended to the result to form the Stop event name.  
            May only be called when the activity is in the Started state.
            </summary>
            <param name="data">The data to include in the event.</param>
        </member>
        <member name="M:Microsoft.Diagnostics.Tracing.EventSourceActivity.Stop``1(System.String)">
            <summary>
            Used if you wish to use the non-default stop name (which is the start name with Start replace with 'Stop')
            This can be useful to indicate unusual ways of stoping (but it is still STRONGLY recommeded that
            you start with the same prefix used for the start event and you end with the 'Stop' suffix.   
            </summary>
        </member>
        <member name="M:Microsoft.Diagnostics.Tracing.EventSourceActivity.Stop``1(System.String,``0)">
            <summary>
            Used if you wish to use the non-default stop name (which is the start name with Start replace with 'Stop')
            This can be useful to indicate unusual ways of stoping (but it is still STRONGLY recommeded that
            you start with the same prefix used for the start event and you end with the 'Stop' suffix.   
            </summary>
        </member>
        <member name="M:Microsoft.Diagnostics.Tracing.EventSourceActivity.Write``1(System.String,Microsoft.Diagnostics.Tracing.EventSourceOptions,``0)">
            <summary>
            Writes an event associated with this activity to the eventSource associted with this activity.  
            May only be called when the activity is in the Started state.
            </summary>
            <param name="eventName">
            The name to use for the event. If null, the name is determined from
            data's type.
            </param>
            <param name="options">
            The options to use for the event.
            </param>
            <param name="data">The data to include in the event.</param>
        </member>
        <member name="M:Microsoft.Diagnostics.Tracing.EventSourceActivity.Write``1(System.String,``0)">
            <summary>
            Writes an event associated with this activity.
            May only be called when the activity is in the Started state.
            </summary>
            <param name="eventName">
            The name to use for the event. If null, the name is determined from
            data's type.
            </param>
            <param name="data">The data to include in the event.</param>
        </member>
        <member name="M:Microsoft.Diagnostics.Tracing.EventSourceActivity.Write(System.String,Microsoft.Diagnostics.Tracing.EventSourceOptions)">
            <summary>
            Writes a trivial event associated with this activity.
            May only be called when the activity is in the Started state.
            </summary>
            <param name="eventName">
            The name to use for the event. Must not be null.
            </param>
            <param name="options">
            The options to use for the event.
            </param>
        </member>
        <member name="M:Microsoft.Diagnostics.Tracing.EventSourceActivity.Write(System.String)">
            <summary>
            Writes a trivial event associated with this activity.
            May only be called when the activity is in the Started state.
            </summary>
            <param name="eventName">
            The name to use for the event. Must not be null.
            </param>
        </member>
        <member name="M:Microsoft.Diagnostics.Tracing.EventSourceActivity.Write``1(Microsoft.Diagnostics.Tracing.EventSource,System.String,Microsoft.Diagnostics.Tracing.EventSourceOptions,``0)">
            <summary>
            Writes an event to a arbitrary eventSource stamped with the activity ID of this activity.   
            </summary>
        </member>
        <member name="M:Microsoft.Diagnostics.Tracing.EventSourceActivity.Dispose">
            <summary>
            Releases any unmanaged resources associated with this object.
            If the activity is in the Started state, calls Stop().
            </summary>
        </member>
        <member name="P:Microsoft.Diagnostics.Tracing.EventSourceActivity.EventSource">
            <summary>
            Gets the event source to which this activity writes events.
            </summary>
        </member>
        <member name="P:Microsoft.Diagnostics.Tracing.EventSourceActivity.Id">
            <summary>
            Gets this activity's unique identifier, or the default Guid if the
            event source was disabled when the activity was initialized.
            </summary>
        </member>
        <member name="P:Microsoft.Diagnostics.Tracing.EventSourceActivity.StartEventWasFired">
            <summary>
            If eventName is non-null then we logged a start event 
            </summary>
        </member>
        <member name="T:Microsoft.Diagnostics.Tracing.TraceLoggingDataCollector">
            <summary>
            TraceLogging: Used when implementing a custom TraceLoggingTypeInfo.
            The instance of this type is provided to the TypeInfo.WriteData method.
            All operations are forwarded to the current thread's DataCollector.
            Note that this abstraction would allow us to expose the custom
            serialization system to partially-trusted code. If we end up not
            making custom serialization public, or if we only expose it to
            full-trust code, this abstraction is unnecessary (though it probably
            doesn't hurt anything).
            </summary>
        </member>
        <member name="M:Microsoft.Diagnostics.Tracing.TraceLoggingDataCollector.BeginBufferedArray">
            <summary>
            Marks the start of a non-blittable array or enumerable.
            </summary>
            <returns>Bookmark to be passed to EndBufferedArray.</returns>
        </member>
        <member name="M:Microsoft.Diagnostics.Tracing.TraceLoggingDataCollector.EndBufferedArray(System.Int32,System.Int32)">
            <summary>
            Marks the end of a non-blittable array or enumerable.
            </summary>
            <param name="bookmark">The value returned by BeginBufferedArray.</param>
            <param name="count">The number of items in the array.</param>
        </member>
        <member name="M:Microsoft.Diagnostics.Tracing.TraceLoggingDataCollector.AddGroup">
            <summary>
            Adds the start of a group to the event.
            This has no effect on the event payload, but is provided to allow
            WriteMetadata and WriteData implementations to have similar
            sequences of calls, allowing for easier verification of correctness.
            </summary>
        </member>
        <member name="M:Microsoft.Diagnostics.Tracing.TraceLoggingDataCollector.AddScalar(System.Boolean)">
            <summary>
            Adds a Boolean value to the event payload.
            </summary>
            <param name="value">Value to be added.</param>
        </member>
        <member name="M:Microsoft.Diagnostics.Tracing.TraceLoggingDataCollector.AddScalar(System.SByte)">
            <summary>
            Adds an SByte value to the event payload.
            </summary>
            <param name="value">Value to be added.</param>
        </member>
        <member name="M:Microsoft.Diagnostics.Tracing.TraceLoggingDataCollector.AddScalar(System.Byte)">
            <summary>
            Adds a Byte value to the event payload.
            </summary>
            <param name="value">Value to be added.</param>
        </member>
        <member name="M:Microsoft.Diagnostics.Tracing.TraceLoggingDataCollector.AddScalar(System.Int16)">
            <summary>
            Adds an Int16 value to the event payload.
            </summary>
            <param name="value">Value to be added.</param>
        </member>
        <member name="M:Microsoft.Diagnostics.Tracing.TraceLoggingDataCollector.AddScalar(System.UInt16)">
            <summary>
            Adds a UInt16 value to the event payload.
            </summary>
            <param name="value">Value to be added.</param>
        </member>
        <member name="M:Microsoft.Diagnostics.Tracing.TraceLoggingDataCollector.AddScalar(System.Int32)">
            <summary>
            Adds an Int32 value to the event payload.
            </summary>
            <param name="value">Value to be added.</param>
        </member>
        <member name="M:Microsoft.Diagnostics.Tracing.TraceLoggingDataCollector.AddScalar(System.UInt32)">
            <summary>
            Adds a UInt32 value to the event payload.
            </summary>
            <param name="value">Value to be added.</param>
        </member>
        <member name="M:Microsoft.Diagnostics.Tracing.TraceLoggingDataCollector.AddScalar(System.Int64)">
            <summary>
            Adds an Int64 value to the event payload.
            </summary>
            <param name="value">Value to be added.</param>
        </member>
        <member name="M:Microsoft.Diagnostics.Tracing.TraceLoggingDataCollector.AddScalar(System.UInt64)">
            <summary>
            Adds a UInt64 value to the event payload.
            </summary>
            <param name="value">Value to be added.</param>
        </member>
        <member name="M:Microsoft.Diagnostics.Tracing.TraceLoggingDataCollector.AddScalar(System.IntPtr)">
            <summary>
            Adds an IntPtr value to the event payload.
            </summary>
            <param name="value">Value to be added.</param>
        </member>
        <member name="M:Microsoft.Diagnostics.Tracing.TraceLoggingDataCollector.AddScalar(System.UIntPtr)">
            <summary>
            Adds a UIntPtr value to the event payload.
            </summary>
            <param name="value">Value to be added.</param>
        </member>
        <member name="M:Microsoft.Diagnostics.Tracing.TraceLoggingDataCollector.AddScalar(System.Single)">
            <summary>
            Adds a Single value to the event payload.
            </summary>
            <param name="value">Value to be added.</param>
        </member>
        <member name="M:Microsoft.Diagnostics.Tracing.TraceLoggingDataCollector.AddScalar(System.Double)">
            <summary>
            Adds a Double value to the event payload.
            </summary>
            <param name="value">Value to be added.</param>
        </member>
        <member name="M:Microsoft.Diagnostics.Tracing.TraceLoggingDataCollector.AddScalar(System.Char)">
            <summary>
            Adds a Char value to the event payload.
            </summary>
            <param name="value">Value to be added.</param>
        </member>
        <member name="M:Microsoft.Diagnostics.Tracing.TraceLoggingDataCollector.AddScalar(System.Guid)">
            <summary>
            Adds a Guid value to the event payload.
            </summary>
            <param name="value">Value to be added.</param>
        </member>
        <member name="M:Microsoft.Diagnostics.Tracing.TraceLoggingDataCollector.AddBinary(System.String)">
            <summary>
            Adds a counted String value to the event payload.
            </summary>
            <param name="value">
            Value to be added. A null value is treated as a zero-length string.
            </param>
        </member>
        <member name="M:Microsoft.Diagnostics.Tracing.TraceLoggingDataCollector.AddBinary(System.Byte[])">
            <summary>
            Adds an array of Byte values to the event payload.
            </summary>
            <param name="value">
            Value to be added. A null value is treated as a zero-length array.
            </param>
        </member>
        <member name="M:Microsoft.Diagnostics.Tracing.TraceLoggingDataCollector.AddArray(System.Boolean[])">
            <summary>
            Adds an array of Boolean values to the event payload.
            </summary>
            <param name="value">
            Value to be added. A null value is treated as a zero-length array.
            </param>
        </member>
        <member name="M:Microsoft.Diagnostics.Tracing.TraceLoggingDataCollector.AddArray(System.SByte[])">
            <summary>
            Adds an array of SByte values to the event payload.
            </summary>
            <param name="value">
            Value to be added. A null value is treated as a zero-length array.
            </param>
        </member>
        <member name="M:Microsoft.Diagnostics.Tracing.TraceLoggingDataCollector.AddArray(System.Int16[])">
            <summary>
            Adds an array of Int16 values to the event payload.
            </summary>
            <param name="value">
            Value to be added. A null value is treated as a zero-length array.
            </param>
        </member>
        <member name="M:Microsoft.Diagnostics.Tracing.TraceLoggingDataCollector.AddArray(System.UInt16[])">
            <summary>
            Adds an array of UInt16 values to the event payload.
            </summary>
            <param name="value">
            Value to be added. A null value is treated as a zero-length array.
            </param>
        </member>
        <member name="M:Microsoft.Diagnostics.Tracing.TraceLoggingDataCollector.AddArray(System.Int32[])">
            <summary>
            Adds an array of Int32 values to the event payload.
            </summary>
            <param name="value">
            Value to be added. A null value is treated as a zero-length array.
            </param>
        </member>
        <member name="M:Microsoft.Diagnostics.Tracing.TraceLoggingDataCollector.AddArray(System.UInt32[])">
            <summary>
            Adds an array of UInt32 values to the event payload.
            </summary>
            <param name="value">
            Value to be added. A null value is treated as a zero-length array.
            </param>
        </member>
        <member name="M:Microsoft.Diagnostics.Tracing.TraceLoggingDataCollector.AddArray(System.Int64[])">
            <summary>
            Adds an array of Int64 values to the event payload.
            </summary>
            <param name="value">
            Value to be added. A null value is treated as a zero-length array.
            </param>
        </member>
        <member name="M:Microsoft.Diagnostics.Tracing.TraceLoggingDataCollector.AddArray(System.UInt64[])">
            <summary>
            Adds an array of UInt64 values to the event payload.
            </summary>
            <param name="value">
            Value to be added. A null value is treated as a zero-length array.
            </param>
        </member>
        <member name="M:Microsoft.Diagnostics.Tracing.TraceLoggingDataCollector.AddArray(System.IntPtr[])">
            <summary>
            Adds an array of IntPtr values to the event payload.
            </summary>
            <param name="value">
            Value to be added. A null value is treated as a zero-length array.
            </param>
        </member>
        <member name="M:Microsoft.Diagnostics.Tracing.TraceLoggingDataCollector.AddArray(System.UIntPtr[])">
            <summary>
            Adds an array of UIntPtr values to the event payload.
            </summary>
            <param name="value">
            Value to be added. A null value is treated as a zero-length array.
            </param>
        </member>
        <member name="M:Microsoft.Diagnostics.Tracing.TraceLoggingDataCollector.AddArray(System.Single[])">
            <summary>
            Adds an array of Single values to the event payload.
            </summary>
            <param name="value">
            Value to be added. A null value is treated as a zero-length array.
            </param>
        </member>
        <member name="M:Microsoft.Diagnostics.Tracing.TraceLoggingDataCollector.AddArray(System.Double[])">
            <summary>
            Adds an array of Double values to the event payload.
            </summary>
            <param name="value">
            Value to be added. A null value is treated as a zero-length array.
            </param>
        </member>
        <member name="M:Microsoft.Diagnostics.Tracing.TraceLoggingDataCollector.AddArray(System.Char[])">
            <summary>
            Adds an array of Char values to the event payload.
            </summary>
            <param name="value">
            Value to be added. A null value is treated as a zero-length array.
            </param>
        </member>
        <member name="M:Microsoft.Diagnostics.Tracing.TraceLoggingDataCollector.AddArray(System.Guid[])">
            <summary>
            Adds an array of Guid values to the event payload.
            </summary>
            <param name="value">
            Value to be added. A null value is treated as a zero-length array.
            </param>
        </member>
        <member name="M:Microsoft.Diagnostics.Tracing.TraceLoggingDataCollector.AddCustom(System.Byte[])">
            <summary>
            Adds an array of Byte values to the event payload.
            </summary>
            <param name="value">
            Value to be added. A null value is treated as a zero-length array.
            </param>
        </member>
        <member name="T:Microsoft.Diagnostics.Tracing.TraceLoggingDataType">
            <summary>
            TraceLogging: Used when implementing a custom TraceLoggingTypeInfo.
            These are passed to metadataCollector.Add to specify the low-level
            type of a field in the event payload. Note that a "formatted"
            TraceLoggingDataType consists of a core TraceLoggingDataType value
            (a TraceLoggingDataType with a value less than 32) plus an OutType.
            Any combination of TraceLoggingDataType + OutType is valid, but not
            all are useful. In particular, combinations not explicitly listed
            below are unlikely to be recognized by decoders, and will typically
            be decoded as the corresponding core type (i.e. the decoder will
            mask off any unrecognized OutType value).
            </summary>
        </member>
        <member name="F:Microsoft.Diagnostics.Tracing.TraceLoggingDataType.Nil">
            <summary>
            Core type.
            Data type with no value (0-length payload).
            NOTE: arrays of Nil are illegal.
            NOTE: a fixed-length array of Nil is interpreted by the decoder as
            a struct (obsolete but retained for backwards-compatibility).
            </summary>
        </member>
        <member name="F:Microsoft.Diagnostics.Tracing.TraceLoggingDataType.Utf16String">
            <summary>
            Core type.
            Encoding assumes null-terminated Char16 string.
            Decoding treats as UTF-16LE string.
            NOTE: arrays of Utf16String will not be supported until M3.
            </summary>
        </member>
        <member name="F:Microsoft.Diagnostics.Tracing.TraceLoggingDataType.MbcsString">
            <summary>
            Core type.
            Encoding assumes null-terminated Char8 string.
            Decoding treats as MBCS string.
            NOTE: arrays of MbcsString will not be supported until M3.
            </summary>
        </member>
        <member name="F:Microsoft.Diagnostics.Tracing.TraceLoggingDataType.Int8">
            <summary>
            Core type.
            Encoding assumes 8-bit value.
            Decoding treats as signed integer.
            </summary>
        </member>
        <member name="F:Microsoft.Diagnostics.Tracing.TraceLoggingDataType.UInt8">
            <summary>
            Core type.
            Encoding assumes 8-bit value.
            Decoding treats as unsigned integer.
            </summary>
        </member>
        <member name="F:Microsoft.Diagnostics.Tracing.TraceLoggingDataType.Int16">
            <summary>
            Core type.
            Encoding assumes 16-bit value.
            Decoding treats as signed integer.
            </summary>
        </member>
        <member name="F:Microsoft.Diagnostics.Tracing.TraceLoggingDataType.UInt16">
            <summary>
            Core type.
            Encoding assumes 16-bit value.
            Decoding treats as unsigned integer.
            </summary>
        </member>
        <member name="F:Microsoft.Diagnostics.Tracing.TraceLoggingDataType.Int32">
            <summary>
            Core type.
            Encoding assumes 32-bit value.
            Decoding treats as signed integer.
            </summary>
        </member>
        <member name="F:Microsoft.Diagnostics.Tracing.TraceLoggingDataType.UInt32">
            <summary>
            Core type.
            Encoding assumes 32-bit value.
            Decoding treats as unsigned integer.
            </summary>
        </member>
        <member name="F:Microsoft.Diagnostics.Tracing.TraceLoggingDataType.Int64">
            <summary>
            Core type.
            Encoding assumes 64-bit value.
            Decoding treats as signed integer.
            </summary>
        </member>
        <member name="F:Microsoft.Diagnostics.Tracing.TraceLoggingDataType.UInt64">
            <summary>
            Core type.
            Encoding assumes 64-bit value.
            Decoding treats as unsigned integer.
            </summary>
        </member>
        <member name="F:Microsoft.Diagnostics.Tracing.TraceLoggingDataType.Float">
            <summary>
            Core type.
            Encoding assumes 32-bit value.
            Decoding treats as Float.
            </summary>
        </member>
        <member name="F:Microsoft.Diagnostics.Tracing.TraceLoggingDataType.Double">
            <summary>
            Core type.
            Encoding assumes 64-bit value.
            Decoding treats as Double.
            </summary>
        </member>
        <member name="F:Microsoft.Diagnostics.Tracing.TraceLoggingDataType.Boolean32">
            <summary>
            Core type.
            Encoding assumes 32-bit value.
            Decoding treats as Boolean.
            </summary>
        </member>
        <member name="F:Microsoft.Diagnostics.Tracing.TraceLoggingDataType.Binary">
            <summary>
            Core type.
            Encoding assumes 16-bit bytecount followed by binary data.
            Decoding treats as binary data.
            NOTE: arrays of Binary will not be supported until M3.
            </summary>
        </member>
        <member name="F:Microsoft.Diagnostics.Tracing.TraceLoggingDataType.Guid">
            <summary>
            Core type.
            Encoding assumes 16-byte value.
            Decoding treats as GUID.
            </summary>
        </member>
        <member name="F:Microsoft.Diagnostics.Tracing.TraceLoggingDataType.FileTime">
            <summary>
            Core type.
            Encoding assumes 64-bit value.
            Decoding treats as FILETIME.
            </summary>
        </member>
        <member name="F:Microsoft.Diagnostics.Tracing.TraceLoggingDataType.SystemTime">
            <summary>
            Core type.
            Encoding assumes 16-byte value.
            Decoding treats as SYSTEMTIME.
            </summary>
        </member>
        <member name="F:Microsoft.Diagnostics.Tracing.TraceLoggingDataType.HexInt32">
            <summary>
            Core type.
            Encoding assumes 32-bit value.
            Decoding treats as hexadecimal unsigned integer.
            </summary>
        </member>
        <member name="F:Microsoft.Diagnostics.Tracing.TraceLoggingDataType.HexInt64">
            <summary>
            Core type.
            Encoding assumes 64-bit value.
            Decoding treats as hexadecimal unsigned integer.
            </summary>
        </member>
        <member name="F:Microsoft.Diagnostics.Tracing.TraceLoggingDataType.CountedUtf16String">
            <summary>
            Core type.
            Encoding assumes 16-bit bytecount followed by Char16 data.
            Decoding treats as UTF-16LE string.
            </summary>
        </member>
        <member name="F:Microsoft.Diagnostics.Tracing.TraceLoggingDataType.CountedMbcsString">
            <summary>
            Core type.
            Encoding assumes 16-bit bytecount followed by Char8 data.
            Decoding treats as MBCS string.
            </summary>
        </member>
        <member name="F:Microsoft.Diagnostics.Tracing.TraceLoggingDataType.Struct">
            <summary>
            Core type.
            Special case: Struct indicates that this field plus the the
            subsequent N logical fields are to be considered as one logical
            field (i.e. a nested structure). The OutType is used to encode N.
            The maximum value for N is 127. This field has no payload by
            itself, but logically contains the payload of the following N
            fields. It is legal to have an array of Struct.
            </summary>
        </member>
        <member name="F:Microsoft.Diagnostics.Tracing.TraceLoggingDataType.Char16">
            <summary>
            Formatted type.
            Encoding assumes 16-bit value.
            Decoding treats as UTF-16LE character.
            </summary>
        </member>
        <member name="F:Microsoft.Diagnostics.Tracing.TraceLoggingDataType.Char8">
            <summary>
            Formatted type.
            Encoding assumes 8-bit value.
            Decoding treats as character.
            </summary>
        </member>
        <member name="F:Microsoft.Diagnostics.Tracing.TraceLoggingDataType.Boolean8">
            <summary>
            Formatted type.
            Encoding assumes 8-bit value.
            Decoding treats as Boolean.
            </summary>
        </member>
        <member name="F:Microsoft.Diagnostics.Tracing.TraceLoggingDataType.HexInt8">
            <summary>
            Formatted type.
            Encoding assumes 8-bit value.
            Decoding treats as hexadecimal unsigned integer.
            </summary>
        </member>
        <member name="F:Microsoft.Diagnostics.Tracing.TraceLoggingDataType.HexInt16">
            <summary>
            Formatted type.
            Encoding assumes 16-bit value.
            Decoding treats as hexadecimal unsigned integer.
            </summary>
        </member>
        <member name="F:Microsoft.Diagnostics.Tracing.TraceLoggingDataType.Utf16Xml">
            <summary>
            Formatted type.
            Encoding assumes null-terminated Char16 string.
            Decoding treats as UTF-16LE XML string.
            NOTE: arrays of Utf16Xml will not be supported until M3.
            </summary>
        </member>
        <member name="F:Microsoft.Diagnostics.Tracing.TraceLoggingDataType.MbcsXml">
            <summary>
            Formatted type.
            Encoding assumes null-terminated Char8 string.
            Decoding treats as MBCS XML string.
            NOTE: arrays of MbcsXml will not be supported until M3.
            </summary>
        </member>
        <member name="F:Microsoft.Diagnostics.Tracing.TraceLoggingDataType.CountedUtf16Xml">
            <summary>
            Formatted type.
            Encoding assumes 16-bit bytecount followed by Char16 data.
            Decoding treats as UTF-16LE XML.
            </summary>
        </member>
        <member name="F:Microsoft.Diagnostics.Tracing.TraceLoggingDataType.CountedMbcsXml">
            <summary>
            Formatted type.
            Encoding assumes 16-bit bytecount followed by Char8 data.
            Decoding treats as MBCS XML.
            </summary>
        </member>
        <member name="F:Microsoft.Diagnostics.Tracing.TraceLoggingDataType.Utf16Json">
            <summary>
            Formatted type.
            Encoding assumes null-terminated Char16 string.
            Decoding treats as UTF-16LE JSON string.
            NOTE: arrays of Utf16Json will not be supported until M3.
            </summary>
        </member>
        <member name="F:Microsoft.Diagnostics.Tracing.TraceLoggingDataType.MbcsJson">
            <summary>
            Formatted type.
            Encoding assumes null-terminated Char8 string.
            Decoding treats as MBCS JSON string.
            NOTE: arrays of MbcsJson will not be supported until M3.
            </summary>
        </member>
        <member name="F:Microsoft.Diagnostics.Tracing.TraceLoggingDataType.CountedUtf16Json">
            <summary>
            Formatted type.
            Encoding assumes 16-bit bytecount followed by Char16 data.
            Decoding treats as UTF-16LE JSON.
            </summary>
        </member>
        <member name="F:Microsoft.Diagnostics.Tracing.TraceLoggingDataType.CountedMbcsJson">
            <summary>
            Formatted type.
            Encoding assumes 16-bit bytecount followed by Char8 data.
            Decoding treats as MBCS JSON.
            </summary>
        </member>
        <member name="F:Microsoft.Diagnostics.Tracing.TraceLoggingDataType.HResult">
            <summary>
            Formatted type.
            Encoding assumes 32-bit value.
            Decoding treats as HRESULT.
            </summary>
        </member>
        <member name="T:Microsoft.Diagnostics.Tracing.EventDataAttribute">
            <summary>
            Used when authoring types that will be passed to EventSource.Write.
            EventSource.Write&lt;T> only works when T is either an anonymous type
            or a type with an [EventData] attribute. In addition, the properties
            of T must be supported property types. Supported property types include
            simple built-in types (int, string, Guid, DateTime, DateTimeOffset,
            KeyValuePair, etc.), anonymous types that only contain supported types,
            types with an [EventData] attribute, arrays of the above, and IEnumerable
            of the above.
            </summary>
        </member>
        <member name="P:Microsoft.Diagnostics.Tracing.EventDataAttribute.Name">
            <summary>
            Gets or sets the name to use if this type is used for an
            implicitly-named event or an implicitly-named property.
            
            Example 1:
            
                EventSource.Write(null, new T()); // implicitly-named event
                
            The name of the event will be determined as follows:
            
            if (T has an EventData attribute and attribute.Name != null)
                eventName = attribute.Name;
            else
                eventName = typeof(T).Name;
                
            Example 2:
            
                EventSource.Write(name, new { _1 = new T() }); // implicitly-named field
                
            The name of the field will be determined as follows:
            
            if (T has an EventData attribute and attribute.Name != null)
                fieldName = attribute.Name;
            else
                fieldName = typeof(T).Name;
            </summary>
        </member>
        <member name="P:Microsoft.Diagnostics.Tracing.EventDataAttribute.Level">
            <summary>
            Gets or sets the level to use for the event.
            Invalid levels (outside the range 0..255) are treated as unset.
            Note that the Level attribute can bubble-up, i.e. if a type contains
            a sub-object (a field or property), and the sub-object's type has a
            TraceLoggingEvent attribute, the Level from the sub-object's attribute
            can affect the event's level.
            
            Example: for EventSource.Write(name, options, data), the level of the
            event will be determined as follows:
            
            if (options.Level has been set)
                eventLevel = options.Level;
            else if (data.GetType() has a TraceLoggingEvent attribute and attribute.Level has been set)
                eventLevel = attribute.Level;
            else if (a field/property contained in data has a TraceLoggingEvent attribute and attribute.Level has been set)
                eventLevel = attribute.Level;
            else
                eventLevel = EventLevel.LogAlways;
            </summary>
        </member>
        <member name="P:Microsoft.Diagnostics.Tracing.EventDataAttribute.Opcode">
            <summary>
            Gets or sets the opcode to use for the event.
            Invalid opcodes (outside the range 0..255) are treated as unset.
            Note that the Opcode attribute can bubble-up, i.e. if a type contains
            a sub-object (a field or property), and the sub-object's type has a
            TraceLoggingEvent attribute, the Opcode from the sub-object's attribute
            can affect the event's opcode.
            
            Example: for EventSource.Write(name, options, data), the opcode of the
            event will be determined as follows:
            
            if (options.Opcode has been set)
                eventOpcode = options.Opcode;
            else if (data.GetType() has a TraceLoggingEvent attribute and attribute.Opcode has been set)
                eventOpcode = attribute.Opcode;
            else if (a field/property contained in data has a TraceLoggingEvent attribute and attribute.Opcode has been set)
                eventOpcode = attribute.Opcode;
            else
                eventOpcode = EventOpcode.Info;
            </summary>
        </member>
        <member name="P:Microsoft.Diagnostics.Tracing.EventDataAttribute.Keywords">
            <summary>
            Gets or sets the keywords to use for the event.
            Note that the Keywords attribute can bubble-up, i.e. if a type contains
            a sub-object (a field or property), and the sub-object's type has a
            TraceLoggingEvent attribute, the Keywords from the sub-object's attribute
            can affect the event's keywords.
            
            Example: for EventSource.Write(name, options, data), the keywords of the
            event will be determined as follows:
            
            eventKeywords = options.Keywords;
            if (data.GetType() has a TraceLoggingEvent attribute)
                eventKeywords |= attribute.Keywords;
            if (a field/property contained in data has a TraceLoggingEvent attribute)
                eventKeywords |= attribute.Keywords;
            </summary>
        </member>
        <member name="P:Microsoft.Diagnostics.Tracing.EventDataAttribute.Tags">
            <summary>
            Gets or sets the flags for an event. These flags are ignored by ETW,
            but can have meaning to the event consumer.
            </summary>
        </member>
        <member name="T:Microsoft.Diagnostics.Tracing.EventTags">
            <summary>
            Tags are flags that are not interpreted by EventSource but are passed along
            to the EventListener. The EventListener determines the semantics of the flags.
            </summary>
        </member>
        <member name="F:Microsoft.Diagnostics.Tracing.EventTags.None">
            <summary>
            No special traits are added to the event.
            </summary>
        </member>
        <member name="T:Microsoft.Diagnostics.Tracing.EventFieldTags">
            <summary>
            Tags are flags that are not interpreted by EventSource but are passed along
            to the EventListener. The EventListener determines the semantics of the flags.
            </summary>
        </member>
        <member name="F:Microsoft.Diagnostics.Tracing.EventFieldTags.None">
            <summary>
            No special traits are added to the field.
            </summary>
        </member>
        <member name="T:Microsoft.Diagnostics.Tracing.EventFieldAttribute">
            <summary>
            TraceLogging: used when authoring types that will be passed to EventSource.Write.
            Controls how a field or property is handled when it is written as a
            field in a TraceLogging event. Apply this attribute to a field or
            property if the default handling is not correct. (Apply the
            TraceLoggingIgnore attribute if the property should not be
            included as a field in the event.)
            The default for Name is null, which means that the name of the
            underlying field or property will be used as the event field's name.
            The default for PiiTag is 0, which means that the event field does not
            contain personally-identifiable information.
            </summary>
        </member>
        <member name="P:Microsoft.Diagnostics.Tracing.EventFieldAttribute.Tags">
            <summary>
            User defined options for the field. These are not interpreted by the EventSource
            but are available to the Listener. See EventFieldSettings for details
            </summary>
        </member>
        <member name="P:Microsoft.Diagnostics.Tracing.EventFieldAttribute.Name">
            <summary>
            Gets or sets the name to use for the field. This defaults to null.
            If null, the name of the corresponding property will be used
            as the event field's name.
            TODO REMOVE
            </summary>
        </member>
        <member name="P:Microsoft.Diagnostics.Tracing.EventFieldAttribute.Format">
            <summary>
            Gets or sets a field formatting hint.
            </summary>
        </member>
        <member name="T:Microsoft.Diagnostics.Tracing.EventFieldFormat">
            <summary>
            Provides a hint that may be used by an event listener when formatting
            an event field for display. Note that the event listener may ignore the
            hint if it does not recognize a particular combination of type and format.
            Similar to TDH_OUTTYPE.
            </summary>
        </member>
        <member name="F:Microsoft.Diagnostics.Tracing.EventFieldFormat.Default">
            <summary>
            Field receives default formatting based on the field's underlying type.
            </summary>
        </member>
        <member name="F:Microsoft.Diagnostics.Tracing.EventFieldFormat.String">
            <summary>
            Field should be formatted as character or string data.
            Typically applied to 8-bit or 16-bit integers.
            This is the default format for String and Char types.
            </summary>
        </member>
        <member name="F:Microsoft.Diagnostics.Tracing.EventFieldFormat.Boolean">
            <summary>
            Field should be formatted as boolean data. Typically applied to 8-bit
            or 32-bit integers. This is the default format for the Boolean type.
            </summary>
        </member>
        <member name="F:Microsoft.Diagnostics.Tracing.EventFieldFormat.Hexadecimal">
            <summary>
            Field should be formatted as hexadecimal data. Typically applied to
            integer types.
            </summary>
        </member>
        <member name="F:Microsoft.Diagnostics.Tracing.EventFieldFormat.Xml">
            <summary>
            Field should be formatted as XML string data. Typically applied to
            strings or arrays of 8-bit or 16-bit integers.
            </summary>
        </member>
        <member name="F:Microsoft.Diagnostics.Tracing.EventFieldFormat.Json">
            <summary>
            Field should be formatted as JSON string data. Typically applied to
            strings or arrays of 8-bit or 16-bit integers.
            </summary>
        </member>
        <member name="F:Microsoft.Diagnostics.Tracing.EventFieldFormat.HResult">
            <summary>
            Field should be formatted as an HRESULT code. Typically applied to
            32-bit integer types.
            </summary>
        </member>
        <member name="T:Microsoft.Diagnostics.Tracing.EventIgnoreAttribute">
            <summary>
            Used when authoring types that will be passed to EventSource.Write.
            By default, EventSource.Write will write all of an object's public
            properties to the event payload. Apply [EventIgnore] to a public
            property to prevent EventSource.Write from including the property in
            the event.
            </summary>
        </member>
        <member name="T:Microsoft.Diagnostics.Tracing.TraceLoggingMetadataCollector">
            <summary>
            TraceLogging: used when implementing a custom TraceLoggingTypeInfo.
            An instance of this type is provided to the TypeInfo.WriteMetadata method.
            </summary>
        </member>
        <member name="M:Microsoft.Diagnostics.Tracing.TraceLoggingMetadataCollector.#ctor">
            <summary>
            Creates a root-level collector.
            </summary>
        </member>
        <member name="M:Microsoft.Diagnostics.Tracing.TraceLoggingMetadataCollector.#ctor(Microsoft.Diagnostics.Tracing.TraceLoggingMetadataCollector,Microsoft.Diagnostics.Tracing.FieldMetadata)">
            <summary>
            Creates a collector for a group.
            </summary>
            <param name="other">Parent collector</param>
            <param name="group">The field that starts the group</param>
        </member>
        <member name="M:Microsoft.Diagnostics.Tracing.TraceLoggingMetadataCollector.AddGroup(System.String)">
            <summary>
            Call this method to add a group to the event and to return
            a new metadata collector that can be used to add fields to the
            group. After all of the fields in the group have been written,
            switch back to the original metadata collector to add fields
            outside of the group.
            Special-case: if name is null, no group is created, and AddGroup
            returns the original metadata collector. This is useful when
            adding the top-level group for an event.
            Note: do not use the original metadata collector while the group's
            metadata collector is in use, and do not use the group's metadata
            collector after switching back to the original.
            </summary>
            <param name="name">
            The name of the group. If name is null, the call to AddGroup is a
            no-op (collector.AddGroup(null) returns collector).
            </param>
            <returns>
            A new metadata collector that can be used to add fields to the group.
            </returns>
        </member>
        <member name="M:Microsoft.Diagnostics.Tracing.TraceLoggingMetadataCollector.AddScalar(System.String,Microsoft.Diagnostics.Tracing.TraceLoggingDataType)">
            <summary>
            Adds a scalar field to an event.
            </summary>
            <param name="name">
            The name to use for the added field. This value must not be null.
            </param>
            <param name="type">
            The type code for the added field. This must be a fixed-size type
            (e.g. string types are not supported).
            </param>
        </member>
        <member name="M:Microsoft.Diagnostics.Tracing.TraceLoggingMetadataCollector.AddBinary(System.String,Microsoft.Diagnostics.Tracing.TraceLoggingDataType)">
            <summary>
            Adds a binary-format field to an event.
            Compatible with core types: Binary, CountedUtf16String, CountedMbcsString.
            Compatible with dataCollector methods: AddBinary(string), AddArray(Any8bitType[]).
            </summary>
            <param name="name">
            The name to use for the added field. This value must not be null.
            </param>
            <param name="type">
            The type code for the added field. This must be a Binary or CountedString type.
            </param>
        </member>
        <member name="M:Microsoft.Diagnostics.Tracing.TraceLoggingMetadataCollector.AddArray(System.String,Microsoft.Diagnostics.Tracing.TraceLoggingDataType)">
            <summary>
            Adds an array field to an event.
            </summary>
            <param name="name">
            The name to use for the added field. This value must not be null.
            </param>
            <param name="type">
            The type code for the added field. This must be a fixed-size type
            or a string type. In the case of a string type, this adds an array
            of characters, not an array of strings.
            </param>
        </member>
        <member name="M:Microsoft.Diagnostics.Tracing.TraceLoggingMetadataCollector.AddCustom(System.String,Microsoft.Diagnostics.Tracing.TraceLoggingDataType,System.Byte[])">
            <summary>
            Adds a custom-serialized field to an event.
            </summary>
            <param name="name">
            The name to use for the added field. This value must not be null.
            </param>
            <param name="type">The encoding type for the field.</param>
            <param name="metadata">Additional information needed to decode the field, if any.</param>
        </member>
        <member name="P:Microsoft.Diagnostics.Tracing.TraceLoggingMetadataCollector.Tags">
            <summary>
            The field tags to be used for the next field.
            This will be reset to None each time a field is written.
            </summary>
        </member>
        <member name="T:Microsoft.Diagnostics.Tracing.EventSourceOptions">
            <summary>
            Used when calling EventSource.Write.
            Optional overrides for event settings such as Level, Keywords, or Opcode.
            If overrides are not provided for a setting, default values will be used.
            </summary>
        </member>
        <member name="P:Microsoft.Diagnostics.Tracing.EventSourceOptions.Level">
            <summary>
            Gets or sets the level to use for the specified event. If this property
            is unset, the event's level will be 5 (Verbose).
            </summary>
        </member>
        <member name="P:Microsoft.Diagnostics.Tracing.EventSourceOptions.Opcode">
            <summary>
            Gets or sets the opcode to use for the specified event. If this property
            is unset, the event's opcode will 0 (Info).
            </summary>
        </member>
        <member name="P:Microsoft.Diagnostics.Tracing.EventSourceOptions.Keywords">
            <summary>
            Gets or sets the keywords to use for the specified event. If this
            property is unset, the event's keywords will be 0.
            </summary>
        </member>
        <member name="P:Microsoft.Diagnostics.Tracing.EventSourceOptions.Tags">
            <summary>
            Gets or sets the tags to use for the specified event. If this property is
            unset, the event's tags will be 0.
            </summary>
        </member>
        <member name="P:Microsoft.Diagnostics.Tracing.EventSourceOptions.ActivityOptions">
            <summary>
            Gets or sets the activity options for this specified events. If this property is
            unset, the event's activity options will be 0.
            </summary>
        </member>
        <member name="T:Microsoft.Diagnostics.Tracing.TypeAnalysis">
            <summary>
            TraceLogging: stores the per-type information obtained by reflecting over a type.
            </summary>
        </member>
        <member name="M:Microsoft.Win32.UnsafeNativeMethods.ManifestEtw.EventWriteTransferWrapper(System.Int64,Microsoft.Diagnostics.Tracing.EventDescriptor@,System.Guid*,System.Guid*,System.Int32,Microsoft.Diagnostics.Tracing.EventProvider.EventData*)">
            <summary>
             Call the ETW native API EventWriteTransfer and checks for invalid argument error. 
             The implementation of EventWriteTransfer on some older OSes (Windows 2008) does not accept null relatedActivityId.
             So, for these cases we will retry the call with an empty Guid.
            </summary>
        </member>
        <member name="T:Microsoft.Diagnostics.Tracing.EventLevel">
            <summary>
            WindowsEventLevel. Custom values must be in the range from 16 through 255
            </summary>
        </member>
        <member name="F:Microsoft.Diagnostics.Tracing.EventLevel.LogAlways">
            <summary>
            Log always
            </summary>
        </member>
        <member name="F:Microsoft.Diagnostics.Tracing.EventLevel.Critical">
            <summary>
            Only critical errors
            </summary>
        </member>
        <member name="F:Microsoft.Diagnostics.Tracing.EventLevel.Error">
            <summary>
            All errors, including previous levels
            </summary>
        </member>
        <member name="F:Microsoft.Diagnostics.Tracing.EventLevel.Warning">
            <summary>
            All warnings, including previous levels
            </summary>
        </member>
        <member name="F:Microsoft.Diagnostics.Tracing.EventLevel.Informational">
            <summary>
            All informational events, including previous levels
            </summary>
        </member>
        <member name="F:Microsoft.Diagnostics.Tracing.EventLevel.Verbose">
            <summary>
            All events, including previous levels 
            </summary>
        </member>
        <member name="T:Microsoft.Diagnostics.Tracing.EventTask">
            <summary>
            WindowsEventTask. Custom values must be in the range from 1 through 65534
            </summary>
        </member>
        <member name="F:Microsoft.Diagnostics.Tracing.EventTask.None">
            <summary>
            Undefined task
            </summary>
        </member>
        <member name="T:Microsoft.Diagnostics.Tracing.EventOpcode">
            <summary>
            EventOpcode. Custom values must be in the range from 11 through 239
            </summary>
        </member>
        <member name="F:Microsoft.Diagnostics.Tracing.EventOpcode.Info">
            <summary>
            An informational event
            </summary>
        </member>
        <member name="F:Microsoft.Diagnostics.Tracing.EventOpcode.Start">
            <summary>
            An activity start event
            </summary>
        </member>
        <member name="F:Microsoft.Diagnostics.Tracing.EventOpcode.Stop">
            <summary>
            An activity end event 
            </summary>
        </member>
        <member name="F:Microsoft.Diagnostics.Tracing.EventOpcode.DataCollectionStart">
            <summary>
            A trace collection start event
            </summary>
        </member>
        <member name="F:Microsoft.Diagnostics.Tracing.EventOpcode.DataCollectionStop">
            <summary>
            A trace collection end event
            </summary>
        </member>
        <member name="F:Microsoft.Diagnostics.Tracing.EventOpcode.Extension">
            <summary>
            An extensional event
            </summary>
        </member>
        <member name="F:Microsoft.Diagnostics.Tracing.EventOpcode.Reply">
            <summary>
            A reply event
            </summary>
        </member>
        <member name="F:Microsoft.Diagnostics.Tracing.EventOpcode.Resume">
            <summary>
            An event representing the activity resuming from the suspension
            </summary>
        </member>
        <member name="F:Microsoft.Diagnostics.Tracing.EventOpcode.Suspend">
            <summary>
            An event representing the activity is suspended, pending another activity's completion
            </summary>
        </member>
        <member name="F:Microsoft.Diagnostics.Tracing.EventOpcode.Send">
            <summary>
            An event representing the activity is transferred to another component, and can continue to work
            </summary>
        </member>
        <member name="F:Microsoft.Diagnostics.Tracing.EventOpcode.Receive">
            <summary>
            An event representing receiving an activity transfer from another component 
            </summary>
        </member>
        <member name="T:Microsoft.Diagnostics.Tracing.EventChannel">
            <summary>
            EventChannel. Custom values must be in the range from 16 through 255. Currently only predefined values allowed.
            </summary>
        </member>
        <member name="F:Microsoft.Diagnostics.Tracing.EventChannel.None">
            <summary>
            No channel
            </summary>
        </member>
        <member name="F:Microsoft.Diagnostics.Tracing.EventChannel.Admin">
            <summary>The admin channel</summary>
        </member>
        <member name="F:Microsoft.Diagnostics.Tracing.EventChannel.Operational">
            <summary>The operational channel</summary>
        </member>
        <member name="F:Microsoft.Diagnostics.Tracing.EventChannel.Analytic">
            <summary>The analytic channel</summary>
        </member>
        <member name="F:Microsoft.Diagnostics.Tracing.EventChannel.Debug">
            <summary>The debug channel</summary>
        </member>
        <member name="T:Microsoft.Diagnostics.Tracing.EventKeywords">
            <summary>
            EventOpcode
            </summary>
        </member>
        <member name="F:Microsoft.Diagnostics.Tracing.EventKeywords.None">
            <summary>
            No events. 
            </summary>
        </member>
        <member name="F:Microsoft.Diagnostics.Tracing.EventKeywords.All">
            <summary>
            All Events 
            </summary>
        </member>
        <member name="F:Microsoft.Diagnostics.Tracing.EventKeywords.WdiContext">
            <summary>
            WDI context events
            </summary>
        </member>
        <member name="F:Microsoft.Diagnostics.Tracing.EventKeywords.WdiDiagnostic">
            <summary>
            WDI diagnostic events
            </summary>
        </member>
        <member name="F:Microsoft.Diagnostics.Tracing.EventKeywords.Sqm">
            <summary>
            SQM events
            </summary>
        </member>
        <member name="F:Microsoft.Diagnostics.Tracing.EventKeywords.AuditFailure">
            <summary>
            Failed security audits
            </summary>
        </member>
        <member name="F:Microsoft.Diagnostics.Tracing.EventKeywords.AuditSuccess">
            <summary>
            Successful security audits
            </summary>
        </member>
        <member name="F:Microsoft.Diagnostics.Tracing.EventKeywords.CorrelationHint">
            <summary>
            Transfer events where the related Activity ID is a computed value and not a GUID
            </summary>
        </member>
        <member name="F:Microsoft.Diagnostics.Tracing.EventKeywords.EventLogClassic">
            <summary>
            Events raised using classic eventlog API
            </summary>
        </member>
    </members>
</doc>