Subversion Repository Public Repository

ChrisCompleteCodeTrunk

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611
4612
4613
4614
4615
4616
4617
4618
4619
4620
4621
4622
4623
4624
4625
4626
4627
4628
4629
4630
4631
4632
4633
4634
4635
4636
4637
4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
4649
4650
4651
4652
4653
4654
4655
4656
4657
4658
4659
4660
4661
4662
4663
4664
4665
4666
4667
4668
4669
4670
4671
4672
4673
4674
4675
4676
4677
4678
4679
4680
4681
4682
4683
4684
4685
4686
4687
4688
4689
4690
4691
4692
4693
4694
4695
4696
4697
4698
4699
4700
4701
4702
4703
4704
4705
4706
4707
4708
4709
4710
4711
4712
4713
4714
4715
4716
4717
4718
4719
4720
4721
4722
4723
4724
4725
4726
4727
4728
4729
4730
4731
4732
4733
4734
4735
4736
4737
4738
4739
4740
4741
4742
4743
4744
4745
4746
4747
4748
4749
4750
4751
4752
4753
4754
4755
4756
4757
4758
4759
4760
4761
4762
4763
4764
4765
4766
4767
4768
4769
4770
4771
4772
4773
4774
4775
4776
4777
4778
4779
4780
4781
4782
4783
4784
4785
4786
4787
4788
4789
4790
4791
4792
4793
4794
4795
4796
4797
4798
4799
4800
4801
4802
4803
4804
4805
4806
4807
4808
4809
4810
4811
4812
4813
4814
4815
4816
4817
4818
4819
4820
4821
4822
4823
4824
4825
4826
4827
4828
4829
4830
4831
4832
4833
4834
4835
4836
4837
4838
4839
4840
4841
4842
4843
4844
4845
4846
4847
4848
4849
4850
4851
4852
4853
4854
4855
4856
4857
4858
4859
4860
4861
4862
4863
4864
4865
4866
4867
4868
4869
4870
4871
4872
4873
4874
4875
4876
4877
4878
4879
4880
4881
4882
4883
4884
4885
4886
4887
4888
4889
4890
4891
4892
4893
4894
4895
4896
4897
4898
4899
4900
4901
4902
4903
4904
4905
4906
4907
4908
4909
4910
4911
4912
4913
4914
4915
4916
4917
4918
4919
4920
4921
4922
4923
4924
4925
4926
4927
4928
4929
4930
4931
4932
4933
4934
4935
4936
4937
4938
4939
4940
4941
4942
4943
4944
4945
4946
4947
4948
4949
4950
4951
4952
4953
4954
4955
4956
4957
4958
4959
4960
4961
4962
4963
4964
4965
4966
4967
4968
4969
4970
4971
4972
4973
4974
4975
4976
4977
4978
4979
4980
4981
4982
4983
4984
4985
4986
4987
4988
4989
4990
4991
4992
4993
4994
4995
4996
4997
4998
4999
5000
5001
5002
5003
5004
5005
5006
5007
5008
5009
5010
5011
5012
5013
5014
5015
5016
5017
5018
5019
5020
5021
5022
5023
5024
5025
5026
5027
5028
5029
5030
5031
5032
5033
5034
5035
5036
5037
5038
5039
5040
5041
5042
5043
5044
5045
5046
5047
5048
5049
5050
5051
5052
5053
5054
5055
5056
5057
5058
5059
5060
5061
5062
5063
5064
5065
5066
5067
5068
5069
5070
5071
5072
5073
5074
5075
5076
5077
5078
5079
5080
5081
5082
5083
5084
5085
5086
5087
5088
5089
5090
5091
5092
5093
5094
5095
5096
5097
5098
5099
5100
5101
5102
5103
5104
5105
5106
5107
5108
5109
5110
5111
5112
5113
5114
5115
5116
5117
5118
5119
5120
5121
5122
5123
5124
5125
5126
5127
5128
5129
5130
5131
5132
5133
5134
5135
5136
5137
5138
5139
5140
5141
5142
5143
5144
5145
5146
5147
5148
5149
5150
5151
5152
5153
5154
5155
5156
5157
5158
5159
5160
5161
5162
5163
5164
5165
5166
5167
5168
5169
5170
5171
5172
5173
5174
5175
5176
5177
5178
5179
5180
5181
5182
5183
5184
5185
5186
5187
5188
5189
5190
5191
5192
5193
5194
5195
5196
5197
5198
5199
5200
5201
5202
5203
5204
5205
5206
5207
5208
5209
5210
5211
5212
5213
5214
5215
5216
5217
5218
5219
5220
5221
5222
5223
5224
5225
5226
5227
5228
5229
5230
5231
5232
5233
5234
5235
5236
5237
5238
5239
5240
5241
5242
5243
5244
5245
5246
5247
5248
5249
5250
5251
5252
5253
5254
5255
5256
5257
5258
5259
5260
5261
5262
5263
5264
5265
5266
5267
5268
5269
5270
5271
5272
5273
5274
5275
5276
5277
5278
5279
5280
5281
5282
5283
5284
5285
5286
5287
5288
5289
5290
5291
5292
5293
5294
5295
5296
5297
5298
5299
5300
5301
5302
5303
5304
5305
5306
5307
5308
5309
5310
5311
5312
5313
5314
5315
5316
5317
5318
5319
5320
5321
5322
5323
5324
5325
5326
5327
5328
5329
5330
5331
5332
5333
5334
5335
5336
5337
5338
5339
5340
5341
5342
5343
5344
5345
5346
5347
5348
5349
5350
5351
5352
5353
5354
5355
5356
5357
5358
5359
5360
5361
5362
5363
5364
5365
5366
5367
5368
5369
5370
5371
5372
5373
5374
5375
5376
5377
5378
5379
5380
5381
5382
5383
5384
5385
5386
5387
5388
5389
5390
5391
5392
5393
5394
5395
5396
5397
5398
5399
5400
5401
5402
5403
5404
5405
5406
5407
5408
5409
5410
5411
5412
5413
5414
5415
5416
5417
5418
5419
5420
5421
5422
5423
5424
5425
5426
5427
5428
5429
5430
5431
5432
5433
5434
5435
5436
5437
5438
5439
5440
5441
5442
5443
5444
5445
5446
5447
5448
5449
5450
5451
5452
5453
5454
5455
5456
5457
5458
5459
5460
5461
5462
5463
5464
5465
5466
5467
5468
5469
5470
5471
5472
5473
5474
5475
5476
5477
5478
5479
5480
5481
5482
5483
5484
5485
5486
5487
5488
5489
5490
5491
5492
5493
5494
5495
5496
5497
5498
5499
5500
5501
5502
5503
5504
5505
5506
5507
5508
5509
5510
5511
5512
5513
5514
5515
5516
5517
5518
5519
5520
5521
5522
5523
5524
5525
5526
5527
5528
5529
5530
5531
5532
5533
5534
5535
5536
5537
5538
5539
5540
5541
5542
5543
5544
5545
5546
5547
5548
5549
5550
5551
5552
5553
5554
5555
5556
5557
5558
5559
5560
5561
5562
5563
5564
5565
5566
5567
5568
5569
5570
5571
5572
5573
5574
5575
5576
5577
5578
5579
5580
5581
5582
5583
5584
5585
5586
5587
5588
5589
5590
5591
5592
5593
5594
5595
5596
5597
5598
5599
5600
5601
5602
5603
5604
5605
5606
5607
5608
5609
5610
5611
5612
5613
5614
5615
5616
5617
5618
5619
5620
5621
5622
5623
5624
5625
5626
5627
5628
5629
5630
5631
5632
5633
5634
5635
5636
5637
5638
5639
5640
5641
5642
5643
5644
5645
5646
5647
5648
5649
5650
5651
5652
5653
5654
5655
5656
5657
5658
5659
5660
5661
5662
5663
5664
5665
5666
5667
5668
5669
5670
5671
5672
5673
5674
5675
5676
5677
5678
5679
5680
5681
5682
5683
5684
5685
5686
5687
5688
5689
5690
5691
5692
5693
5694
5695
5696
5697
5698
5699
5700
5701
5702
5703
5704
5705
5706
5707
5708
5709
5710
5711
5712
5713
5714
5715
5716
5717
5718
5719
5720
5721
5722
5723
5724
5725
5726
5727
5728
5729
5730
5731
5732
5733
5734
5735
5736
5737
5738
5739
5740
5741
5742
<?xml version="1.0" encoding="utf-8"?>
<doc>
  <assembly>
    <name>System.Web.Razor</name>
  </assembly>
  <members>
    <member name="T:System.Web.Razor.CSharpRazorCodeLanguage">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Represents a Razor code language that is based on C# syntax.</summary>
    </member>
    <member name="M:System.Web.Razor.CSharpRazorCodeLanguage.#ctor">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Initializes a new instance of the <see cref="T:System.Web.Razor.CSharpRazorCodeLanguage" /> class.</summary>
    </member>
    <member name="P:System.Web.Razor.CSharpRazorCodeLanguage.CodeDomProviderType">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Gets the type of the code provider.</summary>
      <returns>The type of the code provider.</returns>
    </member>
    <member name="M:System.Web.Razor.CSharpRazorCodeLanguage.CreateCodeGenerator(System.String,System.String,System.String,System.Web.Razor.RazorEngineHost)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Creates a new Razor code generator based on C# code language.</summary>
      <returns>The newly created Razor code generator based on C# code language.</returns>
      <param name="className">The class name for the generated code.</param>
      <param name="rootNamespaceName">The name of the root namespace for the generated code.</param>
      <param name="sourceFileName">The name of the source code file.</param>
      <param name="host">The Razor engine host.</param>
    </member>
    <member name="M:System.Web.Razor.CSharpRazorCodeLanguage.CreateCodeParser">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Creates a new code parser for C# code language.</summary>
      <returns>The newly created code parser for C# code language.</returns>
    </member>
    <member name="P:System.Web.Razor.CSharpRazorCodeLanguage.LanguageName">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Gets the name of the C# code language.</summary>
      <returns>The name of the C# code language. Value is ‘csharp’.</returns>
    </member>
    <member name="T:System.Web.Razor.DocumentParseCompleteEventArgs">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="M:System.Web.Razor.DocumentParseCompleteEventArgs.#ctor">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="P:System.Web.Razor.DocumentParseCompleteEventArgs.GeneratorResults">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="P:System.Web.Razor.DocumentParseCompleteEventArgs.SourceChange">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="P:System.Web.Razor.DocumentParseCompleteEventArgs.TreeStructureChanged">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="T:System.Web.Razor.GeneratorResults">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Represents results from code generation.</summary>
    </member>
    <member name="M:System.Web.Razor.GeneratorResults.#ctor(System.Boolean,System.Web.Razor.Parser.SyntaxTree.Block,System.Collections.Generic.IList{System.Web.Razor.Parser.SyntaxTree.RazorError},System.CodeDom.CodeCompileUnit,System.Collections.Generic.IDictionary{System.Int32,System.Web.Razor.Generator.GeneratedCodeMapping})">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Initializes a new instance of the <see cref="T:System.Web.Razor.GeneratorResults" /> class.</summary>
      <param name="success">true if the code generation is a success; otherwise, false.</param>
      <param name="document">The document.</param>
      <param name="parserErrors">The parser errors.</param>
      <param name="generatedCode">The generated code.</param>
      <param name="designTimeLineMappings">The dictionary of design-time generated code mappings.</param>
    </member>
    <member name="M:System.Web.Razor.GeneratorResults.#ctor(System.Web.Razor.Parser.SyntaxTree.Block,System.Collections.Generic.IList{System.Web.Razor.Parser.SyntaxTree.RazorError},System.CodeDom.CodeCompileUnit,System.Collections.Generic.IDictionary{System.Int32,System.Web.Razor.Generator.GeneratedCodeMapping})">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Initializes a new instance of the <see cref="T:System.Web.Razor.GeneratorResults" /> class.</summary>
      <param name="document">The document.</param>
      <param name="parserErrors">The parser errors.</param>
      <param name="generatedCode">The generated code.</param>
      <param name="designTimeLineMappings">The dictionary of design-time generated code mappings.</param>
    </member>
    <member name="M:System.Web.Razor.GeneratorResults.#ctor(System.Web.Razor.ParserResults,System.CodeDom.CodeCompileUnit,System.Collections.Generic.IDictionary{System.Int32,System.Web.Razor.Generator.GeneratedCodeMapping})">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Initializes a new instance of the <see cref="T:System.Web.Razor.GeneratorResults" /> class.</summary>
      <param name="parserResults">The parser results.</param>
      <param name="generatedCode">The generated code.</param>
      <param name="designTimeLineMappings">The dictionary of design-time generated code mappings.</param>
    </member>
    <member name="P:System.Web.Razor.GeneratorResults.DesignTimeLineMappings">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets or sets the dictionary of design-time generated code mappings.</summary>
      <returns>The dictionary of design-time generated code mappings.</returns>
    </member>
    <member name="P:System.Web.Razor.GeneratorResults.GeneratedCode">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets or sets the generated code.</summary>
      <returns>The generated code.</returns>
    </member>
    <member name="T:System.Web.Razor.ParserResults">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Represents the results of parsing a Razor document.</summary>
    </member>
    <member name="M:System.Web.Razor.ParserResults.#ctor(System.Boolean,System.Web.Razor.Parser.SyntaxTree.Block,System.Collections.Generic.IList{System.Web.Razor.Parser.SyntaxTree.RazorError})">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Initializes a new instance of the <see cref="T:System.Web.Razor.ParserResults" /> class.</summary>
      <param name="success">true if parsing was successful; otherwise, false.</param>
      <param name="document">The root node in the document’s syntax tree.</param>
      <param name="errors">The list of errors which occurred during parsing.</param>
    </member>
    <member name="M:System.Web.Razor.ParserResults.#ctor(System.Web.Razor.Parser.SyntaxTree.Block,System.Collections.Generic.IList{System.Web.Razor.Parser.SyntaxTree.RazorError})">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Initializes a new instance of the <see cref="T:System.Web.Razor.ParserResults" /> class.</summary>
      <param name="document">The root node in the document’s syntax tree.</param>
      <param name="parserErrors">The list of errors which occurred during parsing.</param>
    </member>
    <member name="P:System.Web.Razor.ParserResults.Document">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets or sets the root node in the document’s syntax tree.</summary>
      <returns>The root node in the document’s syntax tree.</returns>
    </member>
    <member name="P:System.Web.Razor.ParserResults.ParserErrors">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets or sets the list of errors which occurred during parsing.</summary>
      <returns>The list of errors which occurred during parsing.</returns>
    </member>
    <member name="P:System.Web.Razor.ParserResults.Success">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets or sets a value indicating whether parsing was successful.</summary>
      <returns>true if parsing was successful; otherwise, false.</returns>
    </member>
    <member name="T:System.Web.Razor.PartialParseResult">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.PartialParseResult.Accepted">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.PartialParseResult.AutoCompleteBlock">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.PartialParseResult.Provisional">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.PartialParseResult.Rejected">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.PartialParseResult.SpanContextChanged">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="T:System.Web.Razor.RazorCodeLanguage">
      <summary>Represents the base for all Razor code language.This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="M:System.Web.Razor.RazorCodeLanguage.#ctor">
      <summary>Initializes a new instance of the <see cref="T:System.Web.Razor.RazorCodeLanguage" /> class.This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="P:System.Web.Razor.RazorCodeLanguage.CodeDomProviderType">
      <summary>Gets the type of the CodeDOM provider.This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
      <returns>The type of the CodeDOM provider.</returns>
    </member>
    <member name="M:System.Web.Razor.RazorCodeLanguage.CreateCodeGenerator(System.String,System.String,System.String,System.Web.Razor.RazorEngineHost)">
      <summary>Creates the code generator for the Razor code language.This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
      <returns>The code generator for the Razor code language.</returns>
      <param name="className">The class name.</param>
      <param name="rootNamespaceName">The name of the root namespace.</param>
      <param name="sourceFileName">The source file name.</param>
      <param name="host">The Razor engine host.</param>
    </member>
    <member name="M:System.Web.Razor.RazorCodeLanguage.CreateCodeParser">
      <summary>Creates the code parser for the Razor code language.This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
      <returns>The code parser for the Razor code language.</returns>
    </member>
    <member name="M:System.Web.Razor.RazorCodeLanguage.GetLanguageByExtension(System.String)">
      <summary>Gets the language of the Razor code using the specified file extension.This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
      <returns>The language of the Razor code.</returns>
      <param name="fileExtension">The file extension.</param>
    </member>
    <member name="P:System.Web.Razor.RazorCodeLanguage.LanguageName">
      <summary>Gets the language name of the current Razor code, that is “csharp” or “vb”.This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
      <returns>The language name of the current Razor code.</returns>
    </member>
    <member name="P:System.Web.Razor.RazorCodeLanguage.Languages">
      <summary>Gets the list of language supported by the Razor code.This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
      <returns>The list of language supported by the Razor code.</returns>
    </member>
    <member name="T:System.Web.Razor.RazorDirectiveAttribute">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Represents an attribute for the Razor directive.</summary>
    </member>
    <member name="M:System.Web.Razor.RazorDirectiveAttribute.#ctor(System.String,System.String)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Initializes a new instance of the <see cref="T:System.Web.Razor.RazorDirectiveAttribute" /> class.</summary>
      <param name="name">The name of the attribute.</param>
      <param name="value">The value of the attribute.</param>
    </member>
    <member name="M:System.Web.Razor.RazorDirectiveAttribute.Equals(System.Object)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Determines whether this instance is equal to a specified object.</summary>
      <returns>true if the object is equal to the this instance; otherwise, false.</returns>
      <param name="obj">The object to compare with this instance.</param>
    </member>
    <member name="M:System.Web.Razor.RazorDirectiveAttribute.GetHashCode">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Returns the hash code for this instance.</summary>
      <returns>The hash code for this instance.</returns>
    </member>
    <member name="P:System.Web.Razor.RazorDirectiveAttribute.Name">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Gets or sets the name of the attribute.</summary>
      <returns>The name of the attribute.</returns>
    </member>
    <member name="P:System.Web.Razor.RazorDirectiveAttribute.TypeId">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Gets the unique type ID of the attribute.</summary>
      <returns>The unique type ID of the attribute.</returns>
    </member>
    <member name="P:System.Web.Razor.RazorDirectiveAttribute.Value">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Gets or sets the value of the attribute.</summary>
      <returns>The value of the attribute.</returns>
    </member>
    <member name="T:System.Web.Razor.RazorEditorParser">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Parser used by editors to avoid reparsing the entire document on each text change.</summary>
    </member>
    <member name="M:System.Web.Razor.RazorEditorParser.#ctor(System.Web.Razor.RazorEngineHost,System.String)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Constructs the editor parser.</summary>
      <param name="host">The <see cref="T:System.Web.Razor.RazorEngineHost" /> which defines the environment in which the generated code will live.</param>
      <param name="sourceFileName">The physical path to use in line pragmas.</param>
    </member>
    <member name="M:System.Web.Razor.RazorEditorParser.CheckForStructureChanges(System.Web.Razor.Text.TextChange)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Determines if a change will cause a structural change to the document and if not, applies it to the existing tree. If a structural change would occur, automatically starts a reparse.</summary>
      <returns>A <see cref="T:System.Web.Razor.PartialParseResult" /> value indicating the result of the incremental parse.</returns>
      <param name="change">The change to apply to the parse tree.</param>
    </member>
    <member name="P:System.Web.Razor.RazorEditorParser.CurrentParseTree">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets the current parse tree.</summary>
      <returns>The current parse tree.</returns>
    </member>
    <member name="M:System.Web.Razor.RazorEditorParser.Dispose">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Releases all resources used by the current instance of the <see cref="T:System.Web.Razor.RazorEditorParser" />.</summary>
    </member>
    <member name="M:System.Web.Razor.RazorEditorParser.Dispose(System.Boolean)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Releases the unmanaged resources used by the <see cref="T:System.Web.Razor.RazorEditorParser" /> class and optionally releases the managed resources.</summary>
      <param name="disposing">true to release both managed and unmanaged resources; false to release only unmanaged resources.</param>
    </member>
    <member name="E:System.Web.Razor.RazorEditorParser.DocumentParseComplete">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Event fired when a full reparse of the document completes.</summary>
    </member>
    <member name="P:System.Web.Razor.RazorEditorParser.FileName">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets or sets the filename of the document to parse.</summary>
      <returns>The filename of the document to parse.</returns>
    </member>
    <member name="M:System.Web.Razor.RazorEditorParser.GetAutoCompleteString">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Retrieves the auto complete string.</summary>
      <returns>The auto complete string.</returns>
    </member>
    <member name="P:System.Web.Razor.RazorEditorParser.Host">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets or sets the host for the parse.</summary>
      <returns>The host for the parse.</returns>
    </member>
    <member name="P:System.Web.Razor.RazorEditorParser.LastResultProvisional">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets or sets a value indicating whether the last result of the parse was provisionally accepted for next partial parse.</summary>
      <returns>true if the last result of the parse was provisionally accepted for next partial parse; otherwise, false.</returns>
    </member>
    <member name="T:System.Web.Razor.RazorEngineHost">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Represents the generated code for the razor engine host.</summary>
    </member>
    <member name="M:System.Web.Razor.RazorEngineHost.#ctor">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Initializes a new instance of the <see cref="T:System.Web.Razor.RazorEngineHost" /> class.</summary>
    </member>
    <member name="M:System.Web.Razor.RazorEngineHost.#ctor(System.Web.Razor.RazorCodeLanguage)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Initializes a new instance of the <see cref="T:System.Web.Razor.RazorEngineHost" /> class.</summary>
      <param name="codeLanguage">The specified code language.</param>
    </member>
    <member name="M:System.Web.Razor.RazorEngineHost.#ctor(System.Web.Razor.RazorCodeLanguage,System.Func{System.Web.Razor.Parser.ParserBase})">
      <summary>Initializes a new instance of the <see cref="T:System.Web.Razor.RazorEngineHost" /> class.</summary>
      <param name="codeLanguage">The specified code language.</param>
      <param name="markupParserFactory">The markup parser factory.</param>
    </member>
    <member name="P:System.Web.Razor.RazorEngineHost.CodeLanguage">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets the languages supported by the code generator.</summary>
      <returns>The languages supported that by the code generator.</returns>
    </member>
    <member name="M:System.Web.Razor.RazorEngineHost.CreateMarkupParser">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Creates a markup parser using the specified language parser for the <see cref="T:System.Web.Razor.RazorEngineHost" />.</summary>
      <returns>A markup parser to create using the specified language parser for the <see cref="T:System.Web.Razor.RazorEngineHost" />.</returns>
    </member>
    <member name="M:System.Web.Razor.RazorEngineHost.DecorateCodeGenerator(System.Web.Razor.Generator.RazorCodeGenerator)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Returns the methods as language-specific Razor code generator.</summary>
      <returns>The methods as language-specific Razor code generator.</returns>
      <param name="incomingCodeGenerator">The C# or Visual Basic code generator.</param>
    </member>
    <member name="M:System.Web.Razor.RazorEngineHost.DecorateCodeParser(System.Web.Razor.Parser.ParserBase)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Returns the methods as language-specific Razor code parser using the specified language parser.</summary>
      <returns>The methods as language-specific Razor code parser using the specified language parser.</returns>
      <param name="incomingCodeParser">The C# or Visual Basic code parser.</param>
    </member>
    <member name="M:System.Web.Razor.RazorEngineHost.DecorateMarkupParser(System.Web.Razor.Parser.ParserBase)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Returns the method to decorate markup parser using the specified language parser.</summary>
      <returns>The method to decorate markup parser using the specified language parser.</returns>
      <param name="incomingMarkupParser">The C# or Visual Basic code parser.</param>
    </member>
    <member name="P:System.Web.Razor.RazorEngineHost.DefaultBaseClass">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets or sets the default base class for the host.</summary>
      <returns>The default base class for the host.</returns>
    </member>
    <member name="P:System.Web.Razor.RazorEngineHost.DefaultClassName">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets or sets the default class name for the host.</summary>
      <returns>The default class name for the host.</returns>
    </member>
    <member name="P:System.Web.Razor.RazorEngineHost.DefaultNamespace">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets or sets the default namespace for the host.</summary>
      <returns>The default namespace for the host.</returns>
    </member>
    <member name="P:System.Web.Razor.RazorEngineHost.DesignTimeMode">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets or sets a value that indicates whether the mode designs a time for the host.</summary>
      <returns>true if the mode designs a time for the host; otherwise, false.</returns>
    </member>
    <member name="P:System.Web.Razor.RazorEngineHost.EnableInstrumentation">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets or sets the host that enables the instrumentation.</summary>
      <returns>The host that enables the instrumentation.</returns>
    </member>
    <member name="P:System.Web.Razor.RazorEngineHost.GeneratedClassContext">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets or sets the generated class context for the host.</summary>
      <returns>The generated class context for the host.</returns>
    </member>
    <member name="P:System.Web.Razor.RazorEngineHost.InstrumentedSourceFilePath">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets or sets the instrumented source file path for the host.</summary>
      <returns>The instrumented source file path for the host.</returns>
    </member>
    <member name="P:System.Web.Razor.RazorEngineHost.IsIndentingWithTabs">
      <summary>Gets or sets whether the design time editor is using tabs or spaces for indentation.</summary>
    </member>
    <member name="P:System.Web.Razor.RazorEngineHost.NamespaceImports">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets the namespace imports for the host.</summary>
      <returns>The namespace imports for the host.</returns>
    </member>
    <member name="M:System.Web.Razor.RazorEngineHost.PostProcessGeneratedCode(System.CodeDom.CodeCompileUnit,System.CodeDom.CodeNamespace,System.CodeDom.CodeTypeDeclaration,System.CodeDom.CodeMemberMethod)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Returns this method to post all the processed generated code for the host.</summary>
      <param name="codeCompileUnit">The code compile unit.</param>
      <param name="generatedNamespace">The generated namespace.</param>
      <param name="generatedClass">The generated class.</param>
      <param name="executeMethod">The execute method.</param>
    </member>
    <member name="M:System.Web.Razor.RazorEngineHost.PostProcessGeneratedCode(System.Web.Razor.Generator.CodeGeneratorContext)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Returns this method to post all the processed generated code for the host.</summary>
      <param name="context">The code generator context.</param>
    </member>
    <member name="P:System.Web.Razor.RazorEngineHost.StaticHelpers">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets or sets the static helpers for the host.</summary>
      <returns>The static helpers for the host.</returns>
    </member>
    <member name="P:System.Web.Razor.RazorEngineHost.TabSize">
      <summary>Tab size used by the hosting editor, when indenting with tabs.</summary>
    </member>
    <member name="T:System.Web.Razor.RazorTemplateEngine">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Represents an entry-point to the Razor Template Engine.</summary>
    </member>
    <member name="M:System.Web.Razor.RazorTemplateEngine.#ctor(System.Web.Razor.RazorEngineHost)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Initializes a new instance of the <see cref="T:System.Web.Razor.RazorTemplateEngine" /> class.</summary>
      <param name="host">The host.</param>
    </member>
    <member name="M:System.Web.Razor.RazorTemplateEngine.CreateCodeGenerator(System.String,System.String,System.String)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Creates a code generator.</summary>
      <returns>The created <see cref="T:System.Web.Razor.Generator.RazorCodeGenerator" />.</returns>
      <param name="className">The name of the generated class.</param>
      <param name="rootNamespace">The namespace in which the generated class will reside.</param>
      <param name="sourceFileName">The file name to use in line pragmas.</param>
    </member>
    <member name="M:System.Web.Razor.RazorTemplateEngine.CreateParser">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Creates a <see cref="T:System.Web.Razor.Parser.RazorParser" />.</summary>
      <returns>The created <see cref="T:System.Web.Razor.Parser.RazorParser" />.</returns>
    </member>
    <member name="F:System.Web.Razor.RazorTemplateEngine.DefaultClassName">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Indicates the default class name of the template.</summary>
    </member>
    <member name="F:System.Web.Razor.RazorTemplateEngine.DefaultNamespace">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Indicates the default namespace for the template.</summary>
    </member>
    <member name="M:System.Web.Razor.RazorTemplateEngine.GenerateCode(System.IO.TextReader)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Parses the template specified by the TextBuffer, generates code for it, and returns the constructed CodeDOM tree.</summary>
      <returns>The resulting parse tree AND generated Code DOM tree.</returns>
      <param name="input">The input text to parse.</param>
    </member>
    <member name="M:System.Web.Razor.RazorTemplateEngine.GenerateCode(System.IO.TextReader,System.Nullable{System.Threading.CancellationToken})">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Parses the template specified by the TextBuffer, generates code for it, and returns the constructed CodeDOM tree.</summary>
      <returns>The resulting parse tree AND generated Code DOM tree.</returns>
      <param name="input">The input text to parse.</param>
      <param name="cancelToken">A token used to cancel the parser.</param>
    </member>
    <member name="M:System.Web.Razor.RazorTemplateEngine.GenerateCode(System.IO.TextReader,System.String,System.String,System.String)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Parses the template specified by the TextBuffer, generates code for it, and returns the constructed CodeDOM tree.</summary>
      <returns>The resulting parse tree AND generated Code DOM tree.</returns>
      <param name="input">The input text to parse.</param>
      <param name="className">The name of the generated class, overriding whatever is specified in the host.</param>
      <param name="rootNamespace">The namespace in which the generated class will reside.</param>
      <param name="sourceFileName">The file name to use in line pragmas.</param>
    </member>
    <member name="M:System.Web.Razor.RazorTemplateEngine.GenerateCode(System.IO.TextReader,System.String,System.String,System.String,System.Nullable{System.Threading.CancellationToken})">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Parses the template specified by the TextBuffer, generates code for it, and returns the constructed CodeDOM tree.</summary>
      <returns>The resulting parse tree AND generated Code DOM tree.</returns>
      <param name="input">The input text to parse.</param>
      <param name="className">The name of the generated class, overriding whatever is specified in the host.</param>
      <param name="rootNamespace">The namespace in which the generated class will reside.</param>
      <param name="sourceFileName">The file name to use in line pragmas.</param>
      <param name="cancelToken">A token used to cancel the parser.</param>
    </member>
    <member name="M:System.Web.Razor.RazorTemplateEngine.GenerateCode(System.Web.Razor.Text.ITextBuffer)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Parses the template specified by the TextBuffer, generates code for it, and returns the constructed CodeDOM tree.</summary>
      <returns>The resulting parse tree AND generated Code DOM tree.</returns>
      <param name="input">The input text to parse.</param>
    </member>
    <member name="M:System.Web.Razor.RazorTemplateEngine.GenerateCode(System.Web.Razor.Text.ITextBuffer,System.Nullable{System.Threading.CancellationToken})">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Parses the template specified by the TextBuffer, generates code for it, and returns the constructed CodeDOM tree.</summary>
      <returns>The resulting parse tree AND generated Code DOM tree.</returns>
      <param name="input">The input text to parse.</param>
      <param name="cancelToken">A token used to cancel the parser.</param>
    </member>
    <member name="M:System.Web.Razor.RazorTemplateEngine.GenerateCode(System.Web.Razor.Text.ITextBuffer,System.String,System.String,System.String)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Parses the template specified by the TextBuffer, generates code for it, and returns the constructed CodeDOM tree.</summary>
      <returns>The resulting parse tree AND generated Code DOM tree.</returns>
      <param name="input">The input text to parse.</param>
      <param name="className">The name of the generated class, overriding whatever is specified in the host.</param>
      <param name="rootNamespace">The namespace in which the generated class will reside.</param>
      <param name="sourceFileName">The file name to use in line pragmas.</param>
    </member>
    <member name="M:System.Web.Razor.RazorTemplateEngine.GenerateCode(System.Web.Razor.Text.ITextBuffer,System.String,System.String,System.String,System.Nullable{System.Threading.CancellationToken})">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Parses the template specified by the TextBuffer, generates code for it, and returns the constructed CodeDOM tree.</summary>
      <returns>The resulting parse tree AND generated Code DOM tree.</returns>
      <param name="input">The input text to parse.</param>
      <param name="className">The name of the generated class, overriding whatever is specified in the host.</param>
      <param name="rootNamespace">The namespace in which the generated class will reside.</param>
      <param name="sourceFileName">The file name to use in line pragmas.</param>
      <param name="cancelToken">A token used to cancel the parser.</param>
    </member>
    <member name="M:System.Web.Razor.RazorTemplateEngine.GenerateCodeCore(System.Web.Razor.Text.ITextDocument,System.String,System.String,System.String,System.Nullable{System.Threading.CancellationToken})">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Generates a code core.</summary>
      <returns>The results of the generated core.</returns>
      <param name="input">The input text to parse.</param>
      <param name="className">The name of the generated class, overriding whatever is specified in the host.</param>
      <param name="rootNamespace">The namespace in which the generated class will reside.</param>
      <param name="sourceFileName">The file name to use in line pragmas.</param>
      <param name="cancelToken">A token used to cancel the parser.</param>
    </member>
    <member name="P:System.Web.Razor.RazorTemplateEngine.Host">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets or sets the <see cref="T:System.Web.Razor.RazorEngineHost" /> which defines the environment in which the generated template code will live.</summary>
      <returns>The <see cref="T:System.Web.Razor.RazorEngineHost" /> which defines the environment in which the generated template code will live.</returns>
    </member>
    <member name="M:System.Web.Razor.RazorTemplateEngine.ParseTemplate(System.IO.TextReader)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Parses the template specified by the TextBuffer and returns its result.</summary>
      <returns>The resulting parse tree.</returns>
      <param name="input">The input text to parse.</param>
    </member>
    <member name="M:System.Web.Razor.RazorTemplateEngine.ParseTemplate(System.IO.TextReader,System.Nullable{System.Threading.CancellationToken})">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Parses the template specified by the TextBuffer and returns its result.</summary>
      <returns>The resulting parse tree.</returns>
      <param name="input">The input text to parse.</param>
      <param name="cancelToken">A token used to cancel the parser.</param>
    </member>
    <member name="M:System.Web.Razor.RazorTemplateEngine.ParseTemplate(System.Web.Razor.Text.ITextBuffer)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Parses the template specified by the TextBuffer and returns its result.</summary>
      <returns>The resulting parse tree.</returns>
      <param name="input">The input text to parse.</param>
    </member>
    <member name="M:System.Web.Razor.RazorTemplateEngine.ParseTemplate(System.Web.Razor.Text.ITextBuffer,System.Nullable{System.Threading.CancellationToken})">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Parses the template specified by the TextBuffer and returns its result.</summary>
      <returns>The resulting parse tree.</returns>
      <param name="input">The input text to parse.</param>
      <param name="cancelToken">A token used to cancel the parser.</param>
    </member>
    <member name="M:System.Web.Razor.RazorTemplateEngine.ParseTemplateCore(System.Web.Razor.Text.ITextDocument,System.Nullable{System.Threading.CancellationToken})">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Parses the template core.</summary>
      <returns>The resulting parse tree.</returns>
      <param name="input">The input text to parse.</param>
      <param name="cancelToken">A token used to cancel the parser.</param>
    </member>
    <member name="T:System.Web.Razor.StateMachine`1">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Represents the state of the machine.</summary>
      <typeparam name="TReturn">The generic type Return.</typeparam>
    </member>
    <member name="M:System.Web.Razor.StateMachine`1.#ctor">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Initializes a new instance of the <see cref="T:System.Web.Razor.StateMachine`1" /> class.</summary>
    </member>
    <member name="P:System.Web.Razor.StateMachine`1.CurrentState">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets or sets the current state of the machine.</summary>
      <returns>The current state of the machine.</returns>
    </member>
    <member name="P:System.Web.Razor.StateMachine`1.StartState">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets the starting state of the machine.</summary>
      <returns>The starting state of the machine.</returns>
    </member>
    <member name="M:System.Web.Razor.StateMachine`1.Stay">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Stays into the machine during the transition.</summary>
      <returns>Transition of the state machine.</returns>
    </member>
    <member name="M:System.Web.Razor.StateMachine`1.Stay(`0)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Stays into the machine during the transition with the specified output.</summary>
      <returns>The output of the transition.</returns>
      <param name="output">The output.</param>
    </member>
    <member name="M:System.Web.Razor.StateMachine`1.Stop">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Disables the machine upon transition.</summary>
      <returns>The machine to stop.</returns>
    </member>
    <member name="M:System.Web.Razor.StateMachine`1.Transition(System.Web.Razor.StateMachine{`0}.State)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Indicates the new transition of the state.</summary>
      <returns>The new transition of the state.</returns>
      <param name="newState">The new state.</param>
    </member>
    <member name="M:System.Web.Razor.StateMachine`1.Transition(`0,System.Web.Razor.StateMachine{`0}.State)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Indicates the new transition of the state with the specified output.</summary>
      <returns>The new transition of the state with the specified output.</returns>
      <param name="output">The output.</param>
      <param name="newState">The new state.</param>
    </member>
    <member name="M:System.Web.Razor.StateMachine`1.Turn">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Describes the turning process of the state.</summary>
      <returns>The turning process of the state.</returns>
    </member>
    <member name="T:System.Web.Razor.StateMachine`1.State">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="T:System.Web.Razor.StateMachine`1.StateResult">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Represents the state result.</summary>
    </member>
    <member name="M:System.Web.Razor.StateMachine`1.StateResult.#ctor(System.Web.Razor.StateMachine{`0}.State)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Initializes a new instance of the <see cref="T:System.Web.Razor.StateMachine`1.StateResult" /> class.</summary>
      <param name="next">The next output.</param>
    </member>
    <member name="M:System.Web.Razor.StateMachine`1.StateResult.#ctor(`0,System.Web.Razor.StateMachine{`0}.State)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Initializes a new instance of the <see cref="T:System.Web.Razor.StateMachine`1.StateResult" /> class.</summary>
      <param name="output">The output.</param>
      <param name="next">The next state.</param>
    </member>
    <member name="P:System.Web.Razor.StateMachine`1.StateResult.HasOutput">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets or sets a value indicating whether the state has output.</summary>
      <returns>true if the state has output; otherwise, false.</returns>
    </member>
    <member name="P:System.Web.Razor.StateMachine`1.StateResult.Next">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets or sets the next state in the machine.</summary>
      <returns>The next state in the machine.</returns>
    </member>
    <member name="P:System.Web.Razor.StateMachine`1.StateResult.Output">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets or sets the output.</summary>
      <returns>The <see cref="T:System.Web.Razor.StateMachine`1.State" /> representing the output.</returns>
    </member>
    <member name="T:System.Web.Razor.VBRazorCodeLanguage">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Represents a language generator and provider of the VB razor code.</summary>
    </member>
    <member name="M:System.Web.Razor.VBRazorCodeLanguage.#ctor">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Initializes a new instance of the <see cref="T:System.Web.Razor.VBRazorCodeLanguage" /> class.</summary>
    </member>
    <member name="P:System.Web.Razor.VBRazorCodeLanguage.CodeDomProviderType">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets the type of CodeDomProvider.</summary>
      <returns>The type of CodeDomProvider.</returns>
    </member>
    <member name="M:System.Web.Razor.VBRazorCodeLanguage.CreateCodeGenerator(System.String,System.String,System.String,System.Web.Razor.RazorEngineHost)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Creates the code language generator.</summary>
      <returns>The code language generator.</returns>
      <param name="className">The name of the class.</param>
      <param name="rootNamespaceName">The root namespace name.</param>
      <param name="sourceFileName">The source File name.</param>
      <param name="host">The <see cref="T:System.Web.Razor.RazorEngineHost" />.</param>
    </member>
    <member name="M:System.Web.Razor.VBRazorCodeLanguage.CreateCodeParser">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Creates a code parser in a <see cref="T:System.Web.Razor.Parser.ParserBase" />.</summary>
      <returns>A code parser in a <see cref="T:System.Web.Razor.Parser.ParserBase" />.</returns>
    </member>
    <member name="P:System.Web.Razor.VBRazorCodeLanguage.LanguageName">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets the language name.</summary>
      <returns>The language name.</returns>
    </member>
    <member name="T:System.Web.Razor.Editor.EditorHints">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Editor.EditorHints.LayoutPage">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Editor.EditorHints.None">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Editor.EditorHints.VirtualPath">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="T:System.Web.Razor.Editor.EditResult">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Represents the editing result of the Editor.</summary>
    </member>
    <member name="M:System.Web.Razor.Editor.EditResult.#ctor(System.Web.Razor.PartialParseResult,System.Web.Razor.Parser.SyntaxTree.SpanBuilder)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Initializes a new instance of the <see cref="T:System.Web.Razor.Editor.EditResult" /> class.</summary>
      <param name="result">The partial parse result.</param>
      <param name="editedSpan">The edited span builder.</param>
    </member>
    <member name="P:System.Web.Razor.Editor.EditResult.EditedSpan">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets or sets the edited span of the <see cref="T:System.Web.Razor.Parser.SyntaxTree.SpanBuilder" />.</summary>
      <returns>The edited span of the <see cref="T:System.Web.Razor.Parser.SyntaxTree.SpanBuilder" />.</returns>
    </member>
    <member name="P:System.Web.Razor.Editor.EditResult.Result">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets or sets the partial parse result.</summary>
      <returns>The partial parse result.</returns>
    </member>
    <member name="T:System.Web.Razor.Editor.ImplicitExpressionEditHandler">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Provides edit handler for implicit expression.</summary>
    </member>
    <member name="M:System.Web.Razor.Editor.ImplicitExpressionEditHandler.#ctor(System.Func{System.String,System.Collections.Generic.IEnumerable{System.Web.Razor.Tokenizer.Symbols.ISymbol}},System.Collections.Generic.ISet{System.String},System.Boolean)">
      <summary>Initializes a new instance of the <see cref="T:System.Web.Razor.Editor.ImplicitExpressionEditHandler" /> class.</summary>
      <param name="tokenizer">The tokenizer.</param>
      <param name="keywords">The keywords.</param>
      <param name="acceptTrailingDot">true to accept trailing dot; otherwise, false.</param>
    </member>
    <member name="P:System.Web.Razor.Editor.ImplicitExpressionEditHandler.AcceptTrailingDot">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets or sets a value indicating whether the expression accepts trailing dot.</summary>
      <returns>true if the expression accepts trailing dot; otherwise, false.</returns>
    </member>
    <member name="M:System.Web.Razor.Editor.ImplicitExpressionEditHandler.CanAcceptChange(System.Web.Razor.Parser.SyntaxTree.Span,System.Web.Razor.Text.TextChange)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Indicates the parse that can accept change.</summary>
      <returns>The partial parse result.</returns>
      <param name="target">The target.</param>
      <param name="normalizedChange">The normalized change.</param>
    </member>
    <member name="M:System.Web.Razor.Editor.ImplicitExpressionEditHandler.Equals(System.Object)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Indicates whether the specified object is equal to the current object.</summary>
      <returns>true if the specified object is equal to the current objet; otherwise, false.</returns>
      <param name="obj">The object to compare to.</param>
    </member>
    <member name="M:System.Web.Razor.Editor.ImplicitExpressionEditHandler.GetHashCode">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Retrieves the hash code for this current instance.</summary>
      <returns>The hash code for this current instance.</returns>
    </member>
    <member name="P:System.Web.Razor.Editor.ImplicitExpressionEditHandler.Keywords">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets or sets the keywords associated with the expression.</summary>
      <returns>The keywords associated with the expression.</returns>
    </member>
    <member name="M:System.Web.Razor.Editor.ImplicitExpressionEditHandler.ToString">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Returns a string representation of this current instance.</summary>
      <returns>A string representation of this current instance.</returns>
    </member>
    <member name="T:System.Web.Razor.Editor.SingleLineMarkupEditHandler">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Represents the handler editor for this webpages.</summary>
    </member>
    <member name="M:System.Web.Razor.Editor.SingleLineMarkupEditHandler.#ctor(System.Func{System.String,System.Collections.Generic.IEnumerable{System.Web.Razor.Tokenizer.Symbols.ISymbol}})">
      <summary>Initializes a new instance of the <see cref="T:System.Web.Razor.Editor.SingleLineMarkupEditHandler" /> class.</summary>
      <param name="tokenizer">The tokenizer symbols.</param>
    </member>
    <member name="M:System.Web.Razor.Editor.SingleLineMarkupEditHandler.#ctor(System.Func{System.String,System.Collections.Generic.IEnumerable{System.Web.Razor.Tokenizer.Symbols.ISymbol}},System.Web.Razor.Parser.SyntaxTree.AcceptedCharacters)">
      <summary>Initializes a new instance of the <see cref="T:System.Web.Razor.Editor.SingleLineMarkupEditHandler" /> class.</summary>
      <param name="tokenizer">The tokenizer symbols.</param>
      <param name="accepted">The accepted characters.</param>
    </member>
    <member name="T:System.Web.Razor.Editor.SpanEditHandler">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Provides methods for handling the span edits.</summary>
    </member>
    <member name="M:System.Web.Razor.Editor.SpanEditHandler.#ctor(System.Func{System.String,System.Collections.Generic.IEnumerable{System.Web.Razor.Tokenizer.Symbols.ISymbol}})">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Initializes a new instance of the <see cref="T:System.Web.Razor.Editor.SpanEditHandler" /> class.</summary>
      <param name="tokenizer">The method used to parse string into tokens.</param>
    </member>
    <member name="M:System.Web.Razor.Editor.SpanEditHandler.#ctor(System.Func{System.String,System.Collections.Generic.IEnumerable{System.Web.Razor.Tokenizer.Symbols.ISymbol}},System.Web.Razor.Parser.SyntaxTree.AcceptedCharacters)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Initializes a new instance of the <see cref="T:System.Web.Razor.Editor.SpanEditHandler" /> class.</summary>
      <param name="tokenizer">The method used to parse string into tokens.</param>
      <param name="accepted">One of the values of the <see cref="T:System.Web.Razor.Parser.SyntaxTree.AcceptedCharacters" /> enumeration.</param>
    </member>
    <member name="P:System.Web.Razor.Editor.SpanEditHandler.AcceptedCharacters">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Gets or sets a value that specifies the accepted characters.</summary>
      <returns>One of the values of the <see cref="T:System.Web.Razor.Parser.SyntaxTree.AcceptedCharacters" /> enumeration.</returns>
    </member>
    <member name="M:System.Web.Razor.Editor.SpanEditHandler.ApplyChange(System.Web.Razor.Parser.SyntaxTree.Span,System.Web.Razor.Text.TextChange)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Applies the text change to the span.</summary>
      <returns>The result of the apply operation.</returns>
      <param name="target">The span to apply changes to.</param>
      <param name="change">The change to apply.</param>
    </member>
    <member name="M:System.Web.Razor.Editor.SpanEditHandler.ApplyChange(System.Web.Razor.Parser.SyntaxTree.Span,System.Web.Razor.Text.TextChange,System.Boolean)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Applies the text change to the span.</summary>
      <returns>The result of the apply operation.</returns>
      <param name="target">The span to apply changes to.</param>
      <param name="change">The change to apply.</param>
      <param name="force">true to accept partial result; otherwise, false.</param>
    </member>
    <member name="M:System.Web.Razor.Editor.SpanEditHandler.CanAcceptChange(System.Web.Razor.Parser.SyntaxTree.Span,System.Web.Razor.Text.TextChange)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Determines whether the span can accept the specified change.</summary>
      <returns>true if the span can accept the specified change; otherwise, false.</returns>
      <param name="target">The span to check.</param>
      <param name="normalizedChange">The change to apply.</param>
    </member>
    <member name="M:System.Web.Razor.Editor.SpanEditHandler.CreateDefault">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Creates a new default span edit handler.</summary>
      <returns>A newly created default span edit handler.</returns>
    </member>
    <member name="M:System.Web.Razor.Editor.SpanEditHandler.CreateDefault(System.Func{System.String,System.Collections.Generic.IEnumerable{System.Web.Razor.Tokenizer.Symbols.ISymbol}})">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Creates a new default span edit handler.</summary>
      <returns>A newly created default span edit handler.</returns>
      <param name="tokenizer">The method used to parse string into tokens.</param>
    </member>
    <member name="P:System.Web.Razor.Editor.SpanEditHandler.EditorHints">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Gets or sets the editor hints.</summary>
      <returns>The editor hints.</returns>
    </member>
    <member name="M:System.Web.Razor.Editor.SpanEditHandler.Equals(System.Object)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Determines whether this instance is equal to a specified object.</summary>
      <returns>true if the object is equal to the this instance; otherwise, false.</returns>
      <param name="obj">The object to compare with this instance.</param>
    </member>
    <member name="M:System.Web.Razor.Editor.SpanEditHandler.GetHashCode">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Returns the hash code for this instance.</summary>
      <returns>The hash code for this instance.</returns>
    </member>
    <member name="M:System.Web.Razor.Editor.SpanEditHandler.GetOldText(System.Web.Razor.Parser.SyntaxTree.Span,System.Web.Razor.Text.TextChange)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Gets the old text from the span content.</summary>
      <returns>The old text from the span content.</returns>
      <param name="target">The span to get old text from.</param>
      <param name="change">The text change which contains the location of the old text.</param>
    </member>
    <member name="M:System.Web.Razor.Editor.SpanEditHandler.IsAtEndOfFirstLine(System.Web.Razor.Parser.SyntaxTree.Span,System.Web.Razor.Text.TextChange)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Determines whether the specified change is at the end of first line of the span content.</summary>
      <returns>true if the specified change is at the end of first line of the span content; otherwise, false.</returns>
      <param name="target">The span to check.</param>
      <param name="change">The change to check.</param>
    </member>
    <member name="M:System.Web.Razor.Editor.SpanEditHandler.IsAtEndOfSpan(System.Web.Razor.Parser.SyntaxTree.Span,System.Web.Razor.Text.TextChange)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Determines whether the specified change is at the end of the span.</summary>
      <returns>true if the specified change is at the end of the span; otherwise, false.</returns>
      <param name="target">The span to check.</param>
      <param name="change">The change to chek.</param>
    </member>
    <member name="M:System.Web.Razor.Editor.SpanEditHandler.IsEndDeletion(System.Web.Razor.Parser.SyntaxTree.Span,System.Web.Razor.Text.TextChange)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Determines whether the specified change is at the end the span content and for deletion.</summary>
      <returns>true if the specified change is at the end the span content and for deletion; otherwise, false.</returns>
      <param name="target">The span to check.</param>
      <param name="change">The change to check.</param>
    </member>
    <member name="M:System.Web.Razor.Editor.SpanEditHandler.IsEndInsertion(System.Web.Razor.Parser.SyntaxTree.Span,System.Web.Razor.Text.TextChange)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Determines whether the specified change is at the end the span content and for insertion.</summary>
      <returns>true if the specified change is at the end the span content and for insertion; otherwise, false.</returns>
      <param name="target">The span to check.</param>
      <param name="change">The change to check.</param>
    </member>
    <member name="M:System.Web.Razor.Editor.SpanEditHandler.IsEndReplace(System.Web.Razor.Parser.SyntaxTree.Span,System.Web.Razor.Text.TextChange)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Determines whether the specified change is at the end the span content and for replacement.</summary>
      <returns>true if the specified change is at the end the span content and for replacement; otherwise, false.</returns>
      <param name="target">The span to check.</param>
      <param name="change">The change to check.</param>
    </member>
    <member name="M:System.Web.Razor.Editor.SpanEditHandler.OwnsChange(System.Web.Razor.Parser.SyntaxTree.Span,System.Web.Razor.Text.TextChange)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Determines whether the span owns the specified change.</summary>
      <returns>true if the span owns the specified change; otherwise, false.</returns>
      <param name="target">The span to check.</param>
      <param name="change">The change to check.</param>
    </member>
    <member name="P:System.Web.Razor.Editor.SpanEditHandler.Tokenizer">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Gets or sets the method used to parse string into tokens. </summary>
      <returns>The method used to parse string into tokens.</returns>
    </member>
    <member name="M:System.Web.Razor.Editor.SpanEditHandler.ToString">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Returns the string representation of the span edit handler.</summary>
      <returns>The string representation of the span edit handler.</returns>
    </member>
    <member name="M:System.Web.Razor.Editor.SpanEditHandler.UpdateSpan(System.Web.Razor.Parser.SyntaxTree.Span,System.Web.Razor.Text.TextChange)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Updates the span using the normalized change.</summary>
      <returns>The new span builder for the specified target.</returns>
      <param name="target">The span to update.</param>
      <param name="normalizedChange">The normalized change.</param>
    </member>
    <member name="T:System.Web.Razor.Generator.AddImportCodeGenerator">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Represents the added import code generator for the razor.</summary>
    </member>
    <member name="M:System.Web.Razor.Generator.AddImportCodeGenerator.#ctor(System.String,System.Int32)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Initializes a new instance of the <see cref="T:System.Web.Razor.Generator.AddImportCodeGenerator" /> class.</summary>
      <param name="ns">The string namespace.</param>
      <param name="namespaceKeywordLength">The length of the keyword namespace.</param>
    </member>
    <member name="M:System.Web.Razor.Generator.AddImportCodeGenerator.Equals(System.Object)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Determines whether two object instances are equal.</summary>
      <returns>true if the specified object is equal to the current object; otherwise, false.</returns>
      <param name="obj">The object to compare with the current object.</param>
    </member>
    <member name="M:System.Web.Razor.Generator.AddImportCodeGenerator.GenerateCode(System.Web.Razor.Parser.SyntaxTree.Span,System.Web.Razor.Generator.CodeGeneratorContext)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Generates code with the specified parameters using the added import code generator.</summary>
      <param name="target">The target span.</param>
      <param name="context">The code generator context.</param>
    </member>
    <member name="M:System.Web.Razor.Generator.AddImportCodeGenerator.GetHashCode">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Returns the hash code for this instance.</summary>
      <returns>The hash code for this instance.</returns>
    </member>
    <member name="P:System.Web.Razor.Generator.AddImportCodeGenerator.Namespace">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets the string namespace of the generator to add import code generator.</summary>
      <returns>The string namespace of the generator to add import code generator.</returns>
    </member>
    <member name="P:System.Web.Razor.Generator.AddImportCodeGenerator.NamespaceKeywordLength">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets or sets the length of keyword namespace for the code generator.</summary>
      <returns>The length of keyword namespace for the code generator.</returns>
    </member>
    <member name="M:System.Web.Razor.Generator.AddImportCodeGenerator.ToString">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Returns a string that represents the current object.</summary>
      <returns>A string that represents the current object.</returns>
    </member>
    <member name="T:System.Web.Razor.Generator.AttributeBlockCodeGenerator">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Represents the attributes of the block code generator.</summary>
    </member>
    <member name="M:System.Web.Razor.Generator.AttributeBlockCodeGenerator.#ctor(System.String,System.Web.Razor.Text.LocationTagged{System.String},System.Web.Razor.Text.LocationTagged{System.String})">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Initializes a new instance of the <see cref="T:System.Web.Razor.Generator.AttributeBlockCodeGenerator" /> class.</summary>
      <param name="name">The name.</param>
      <param name="prefix">The prefix string.</param>
      <param name="suffix">The suffix string.</param>
    </member>
    <member name="M:System.Web.Razor.Generator.AttributeBlockCodeGenerator.Equals(System.Object)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Determines whether the specified object is equal to the current object.</summary>
      <returns>true if the specified object is equal to the current object; otherwise, false.</returns>
      <param name="obj">The object to compare with the current object.</param>
    </member>
    <member name="M:System.Web.Razor.Generator.AttributeBlockCodeGenerator.GenerateEndBlockCode(System.Web.Razor.Parser.SyntaxTree.Block,System.Web.Razor.Generator.CodeGeneratorContext)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Generates code to end the block using the specified parameters.</summary>
      <param name="target">The target block.</param>
      <param name="context">The code generator context.</param>
    </member>
    <member name="M:System.Web.Razor.Generator.AttributeBlockCodeGenerator.GenerateStartBlockCode(System.Web.Razor.Parser.SyntaxTree.Block,System.Web.Razor.Generator.CodeGeneratorContext)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Generates code to start the block using the specified parameters.</summary>
      <param name="target">The target block.</param>
      <param name="context">The code generator context.</param>
    </member>
    <member name="M:System.Web.Razor.Generator.AttributeBlockCodeGenerator.GetHashCode">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Returns the hash code for this code generator.</summary>
      <returns>The hash code for this code generator.</returns>
    </member>
    <member name="P:System.Web.Razor.Generator.AttributeBlockCodeGenerator.Name">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets the string name of the <see cref="T:System.Web.Razor.Generator.AttributeBlockCodeGenerator" />.</summary>
      <returns>The string name of the <see cref="T:System.Web.Razor.Generator.AttributeBlockCodeGenerator" />.</returns>
    </member>
    <member name="P:System.Web.Razor.Generator.AttributeBlockCodeGenerator.Prefix">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets the prefix of the code generator.</summary>
      <returns>The prefix of the code generator.</returns>
    </member>
    <member name="P:System.Web.Razor.Generator.AttributeBlockCodeGenerator.Suffix">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets the suffix for the code generator.</summary>
      <returns>The suffix for the code generator.</returns>
    </member>
    <member name="M:System.Web.Razor.Generator.AttributeBlockCodeGenerator.ToString">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Returns a string that represents the current object.</summary>
      <returns>A string that represents the current object.</returns>
    </member>
    <member name="T:System.Web.Razor.Generator.BlockCodeGenerator">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Represent the block code generator for this razor syntax.</summary>
    </member>
    <member name="M:System.Web.Razor.Generator.BlockCodeGenerator.#ctor">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Initializes a new instance of the <see cref="T:System.Web.Razor.Generator.BlockCodeGenerator" /> class.</summary>
    </member>
    <member name="M:System.Web.Razor.Generator.BlockCodeGenerator.Equals(System.Object)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Determines whether the specified object is equal to the current object.</summary>
      <returns>true if the specified object is equal to the current object; otherwise, false.</returns>
      <param name="obj">The object to compare with the current object.</param>
    </member>
    <member name="M:System.Web.Razor.Generator.BlockCodeGenerator.GenerateEndBlockCode(System.Web.Razor.Parser.SyntaxTree.Block,System.Web.Razor.Generator.CodeGeneratorContext)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Generates the end of the block code generator for this razor syntax.</summary>
      <param name="target">The target block.</param>
      <param name="context">The code generator context.</param>
    </member>
    <member name="M:System.Web.Razor.Generator.BlockCodeGenerator.GenerateStartBlockCode(System.Web.Razor.Parser.SyntaxTree.Block,System.Web.Razor.Generator.CodeGeneratorContext)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Generates the start of the block code generator for this razor syntax.</summary>
      <param name="target">The target block.</param>
      <param name="context">The code generator context.</param>
    </member>
    <member name="M:System.Web.Razor.Generator.BlockCodeGenerator.GetHashCode">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Returns a hash code for the block code generator.</summary>
      <returns>A hash code for the block code generator.</returns>
    </member>
    <member name="F:System.Web.Razor.Generator.BlockCodeGenerator.Null">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Represents a null value for the block code generator.</summary>
    </member>
    <member name="T:System.Web.Razor.Generator.CodeGenerationCompleteEventArgs">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Represents the completion of event arguments for the code generation.</summary>
    </member>
    <member name="M:System.Web.Razor.Generator.CodeGenerationCompleteEventArgs.#ctor(System.String,System.String,System.CodeDom.CodeCompileUnit)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Initializes a new instance of the <see cref="T:System.Web.Razor.Generator.CodeGenerationCompleteEventArgs" /> class.</summary>
      <param name="virtualPath">The virtual path string.</param>
      <param name="physicalPath">The physical path string.</param>
      <param name="generatedCode">The generated code compile unit.</param>
    </member>
    <member name="P:System.Web.Razor.Generator.CodeGenerationCompleteEventArgs.GeneratedCode">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets the generated code to complete the event argument.</summary>
      <returns>The generated code to complete the event argument.</returns>
    </member>
    <member name="P:System.Web.Razor.Generator.CodeGenerationCompleteEventArgs.PhysicalPath">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets the physical path for the code generation.</summary>
      <returns>The physical path for the code generation.</returns>
    </member>
    <member name="P:System.Web.Razor.Generator.CodeGenerationCompleteEventArgs.VirtualPath">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets the virtual path of the code generation.</summary>
      <returns>The virtual path of the code generation.</returns>
    </member>
    <member name="T:System.Web.Razor.Generator.CodeGeneratorContext">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Represents the context of the code generator.</summary>
    </member>
    <member name="M:System.Web.Razor.Generator.CodeGeneratorContext.AddCodeMapping(System.Web.Razor.Text.SourceLocation,System.Int32,System.Int32)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Adds a new generated code mapping to the collection.</summary>
      <returns>The collection index of the newly added code mapping.</returns>
      <param name="sourceLocation">The source location of the generated code mapping.</param>
      <param name="generatedCodeStart">The code start of the generated code mapping.</param>
      <param name="generatedCodeLength">The length of the generated code mapping.</param>
    </member>
    <member name="M:System.Web.Razor.Generator.CodeGeneratorContext.AddContextCall(System.Web.Razor.Parser.SyntaxTree.Span,System.String,System.Boolean)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Adds a code statement for a context call on the specified method.</summary>
      <param name="contentSpan">The content span.</param>
      <param name="methodName">The name of the method to invoke a context call.</param>
      <param name="isLiteral">true to specify that the method parameter is literal; otherwise, false.</param>
    </member>
    <member name="M:System.Web.Razor.Generator.CodeGeneratorContext.AddDesignTimeHelperStatement(System.CodeDom.CodeSnippetStatement)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Adds a code statement that inserts the Razor design time helpers method in the specified code statement.</summary>
      <param name="statement">The code statement that receives the code insertion.</param>
    </member>
    <member name="M:System.Web.Razor.Generator.CodeGeneratorContext.AddStatement(System.String)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Adds the specified code statement to the body of the target method.</summary>
      <param name="generatedCode">The code statement to add the target method.</param>
    </member>
    <member name="M:System.Web.Razor.Generator.CodeGeneratorContext.AddStatement(System.String,System.CodeDom.CodeLinePragma)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Adds the specified code statement to the body of the target method.</summary>
      <param name="body">The code statement to add the target method.</param>
      <param name="pragma">The line pragma.</param>
    </member>
    <member name="M:System.Web.Razor.Generator.CodeGeneratorContext.BufferStatementFragment(System.String)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Appends the specified fragment to the current buffered statement.</summary>
      <param name="fragment">The fragment to add.</param>
    </member>
    <member name="M:System.Web.Razor.Generator.CodeGeneratorContext.BufferStatementFragment(System.String,System.Web.Razor.Parser.SyntaxTree.Span)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Appends the specified fragment to the current buffered statement.</summary>
      <param name="fragment">The fragment to add.</param>
      <param name="sourceSpan">The source span for the <paramref name="fragment" />.</param>
    </member>
    <member name="M:System.Web.Razor.Generator.CodeGeneratorContext.BufferStatementFragment(System.Web.Razor.Parser.SyntaxTree.Span)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Appends the content of the span to the current buffered statement.</summary>
      <param name="sourceSpan">The source span whose content is to be added.</param>
    </member>
    <member name="M:System.Web.Razor.Generator.CodeGeneratorContext.ChangeStatementCollector(System.Action{System.String,System.CodeDom.CodeLinePragma})">
      <summary>Assigns a new statement collector and returns a disposable action that restores the old statement collector.</summary>
      <returns>A disposable action that restores the old statement collector.</returns>
      <param name="collector">The new statement collector.</param>
    </member>
    <member name="P:System.Web.Razor.Generator.CodeGeneratorContext.CodeMappings">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Gets or sets the dictionary collection of generated code mapping.</summary>
      <returns>The dictionary collection of generated code mapping.</returns>
    </member>
    <member name="P:System.Web.Razor.Generator.CodeGeneratorContext.CompileUnit">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Gets or sets the code compile unit that will hold the program graph.</summary>
      <returns>The code compile unit that will hold the program graph.</returns>
    </member>
    <member name="M:System.Web.Razor.Generator.CodeGeneratorContext.Create(System.Web.Razor.RazorEngineHost,System.String,System.String,System.String,System.Boolean)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Creates a new instance of the <see cref="T:System.Web.Razor.Generator.CodeGeneratorContext" /> class.</summary>
      <returns>The newly created instance of the code generator context.</returns>
      <param name="host">The Razor engine host.</param>
      <param name="className">The class name for the generated class type declaration.</param>
      <param name="rootNamespace">The name for the generated namespace declaration.</param>
      <param name="sourceFile">The source file.</param>
      <param name="shouldGenerateLinePragmas">true to enable the generation of line pragmas; otherwise, false.</param>
    </member>
    <member name="P:System.Web.Razor.Generator.CodeGeneratorContext.CurrentBufferedStatement">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Gets the current buffered statement.</summary>
      <returns>The current buffered statement.</returns>
    </member>
    <member name="M:System.Web.Razor.Generator.CodeGeneratorContext.EnsureExpressionHelperVariable">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Adds the expression helper variable to the generated class if not yet added,</summary>
    </member>
    <member name="M:System.Web.Razor.Generator.CodeGeneratorContext.FlushBufferedStatement">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Flushes the current buffered statement.</summary>
    </member>
    <member name="P:System.Web.Razor.Generator.CodeGeneratorContext.GeneratedClass">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Gets or sets the generated class type declaration.</summary>
      <returns>The generated class type declaration.</returns>
    </member>
    <member name="M:System.Web.Razor.Generator.CodeGeneratorContext.GenerateLinePragma(System.Web.Razor.Parser.SyntaxTree.Span)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Generates the line pragma for the specified source.</summary>
      <returns>The line pragma for the specified source.</returns>
      <param name="target">The source span.</param>
    </member>
    <member name="M:System.Web.Razor.Generator.CodeGeneratorContext.GenerateLinePragma(System.Web.Razor.Parser.SyntaxTree.Span,System.Int32)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Generates the line pragma for the source.</summary>
      <returns>The line pragma for the specified source.</returns>
      <param name="target">The source span.</param>
      <param name="generatedCodeStart">The start index of code.</param>
    </member>
    <member name="M:System.Web.Razor.Generator.CodeGeneratorContext.GenerateLinePragma(System.Web.Razor.Parser.SyntaxTree.Span,System.Int32,System.Int32)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Generates the line pragma for the source.</summary>
      <returns>The line pragma for the specified source.</returns>
      <param name="target">The source span.</param>
      <param name="generatedCodeStart">The start index of code.</param>
      <param name="codeLength">The length of code.</param>
    </member>
    <member name="M:System.Web.Razor.Generator.CodeGeneratorContext.GenerateLinePragma(System.Web.Razor.Text.SourceLocation,System.Int32,System.Int32)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Generates the line pragma for the source.</summary>
      <returns>The line pragma for the specified source.</returns>
      <param name="start">The source location.</param>
      <param name="generatedCodeStart">The start index of code.</param>
      <param name="codeLength">The length of code.</param>
    </member>
    <member name="P:System.Web.Razor.Generator.CodeGeneratorContext.Host">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Gets or sets the Razor engine host.</summary>
      <returns>The Razor engine host.</returns>
    </member>
    <member name="M:System.Web.Razor.Generator.CodeGeneratorContext.MarkEndOfGeneratedCode">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Marks the end of generated code.</summary>
    </member>
    <member name="M:System.Web.Razor.Generator.CodeGeneratorContext.MarkStartOfGeneratedCode">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Marks the start of generated code.</summary>
    </member>
    <member name="P:System.Web.Razor.Generator.CodeGeneratorContext.Namespace">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Gets or sets the generated namespace declaration.</summary>
      <returns>The generated namespace declaration.</returns>
    </member>
    <member name="P:System.Web.Razor.Generator.CodeGeneratorContext.SourceFile">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Gets or sets the source file.</summary>
      <returns>The source file.</returns>
    </member>
    <member name="P:System.Web.Razor.Generator.CodeGeneratorContext.TargetMethod">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Gets or sets the generated member method.</summary>
      <returns>The generated member method.</returns>
    </member>
    <member name="P:System.Web.Razor.Generator.CodeGeneratorContext.TargetWriterName">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Gets or sets the name of text writer.</summary>
      <returns>The name of text writer.</returns>
    </member>
    <member name="T:System.Web.Razor.Generator.CSharpRazorCodeGenerator">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Represents a Razor code generator for C# language.</summary>
    </member>
    <member name="M:System.Web.Razor.Generator.CSharpRazorCodeGenerator.#ctor(System.String,System.String,System.String,System.Web.Razor.RazorEngineHost)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Initializes a new instance of the <see cref="T:System.Web.Razor.Generator.CSharpRazorCodeGenerator" /> class.</summary>
      <param name="className">The class name for the generated class type declaration.</param>
      <param name="rootNamespaceName">The name for the generated namespace declaration.</param>
      <param name="sourceFileName">The source file.</param>
      <param name="host">The Razor engine host.</param>
    </member>
    <member name="M:System.Web.Razor.Generator.CSharpRazorCodeGenerator.Initialize(System.Web.Razor.Generator.CodeGeneratorContext)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Initializes the context for this code generator.</summary>
      <param name="context">The context for this code generator.</param>
    </member>
    <member name="T:System.Web.Razor.Generator.DynamicAttributeBlockCodeGenerator">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Represents the dynamic attributes of the block code generator.</summary>
    </member>
    <member name="M:System.Web.Razor.Generator.DynamicAttributeBlockCodeGenerator.#ctor(System.Web.Razor.Text.LocationTagged{System.String},System.Int32,System.Int32,System.Int32)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Initializes a new instances of the <see cref="T:System.Web.Razor.Generator.DynamicAttributeBlockCodeGenerator" /> class.</summary>
      <param name="prefix">The prefix.</param>
      <param name="offset">The offset values.</param>
      <param name="line">The line values.</param>
      <param name="col">The col.</param>
    </member>
    <member name="M:System.Web.Razor.Generator.DynamicAttributeBlockCodeGenerator.#ctor(System.Web.Razor.Text.LocationTagged{System.String},System.Web.Razor.Text.SourceLocation)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Initializes a new instances of the <see cref="T:System.Web.Razor.Generator.DynamicAttributeBlockCodeGenerator" /> class.</summary>
      <param name="prefix">The string prefix.</param>
      <param name="valueStart">The value start.</param>
    </member>
    <member name="M:System.Web.Razor.Generator.DynamicAttributeBlockCodeGenerator.Equals(System.Object)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Determines whether the specified object is equal to the current object.</summary>
      <returns>true if the specified object is equal to the current object; otherwise, false.</returns>
      <param name="obj">The object to compare with the current object.</param>
    </member>
    <member name="M:System.Web.Razor.Generator.DynamicAttributeBlockCodeGenerator.GenerateEndBlockCode(System.Web.Razor.Parser.SyntaxTree.Block,System.Web.Razor.Generator.CodeGeneratorContext)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Generates code to end the block using the specified parameters.</summary>
      <param name="target">The target block.</param>
      <param name="context">The code generator context.</param>
    </member>
    <member name="M:System.Web.Razor.Generator.DynamicAttributeBlockCodeGenerator.GenerateStartBlockCode(System.Web.Razor.Parser.SyntaxTree.Block,System.Web.Razor.Generator.CodeGeneratorContext)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Generates code to start the block using the specified parameters.</summary>
      <param name="target">The target block.</param>
      <param name="context">The code generator context.</param>
    </member>
    <member name="M:System.Web.Razor.Generator.DynamicAttributeBlockCodeGenerator.GetHashCode">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Returns the hash code for this instance.</summary>
      <returns>The hash code for this instance.</returns>
    </member>
    <member name="P:System.Web.Razor.Generator.DynamicAttributeBlockCodeGenerator.Prefix">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets the namespace prefix of the code generator.</summary>
      <returns>The namespace prefix of the code generator.</returns>
    </member>
    <member name="M:System.Web.Razor.Generator.DynamicAttributeBlockCodeGenerator.ToString">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Returns a string that represents the current object.</summary>
      <returns>A string that represents the current object.</returns>
    </member>
    <member name="P:System.Web.Razor.Generator.DynamicAttributeBlockCodeGenerator.ValueStart">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets the value start for the dynamic attribute block code generator.</summary>
      <returns>The value start for the dynamic attribute block code generator.</returns>
    </member>
    <member name="T:System.Web.Razor.Generator.ExpressionCodeGenerator">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Represents a code generator for expression.</summary>
    </member>
    <member name="M:System.Web.Razor.Generator.ExpressionCodeGenerator.#ctor">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Initializes a new instance of the <see cref="T:System.Web.Razor.Generator.ExpressionCodeGenerator" /> class.</summary>
    </member>
    <member name="M:System.Web.Razor.Generator.ExpressionCodeGenerator.Equals(System.Object)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Indicates whether this instance and a specified object are equal.</summary>
      <returns>true if <paramref name="obj" /> and this instance are the same type and represent the same value; otherwise, false.</returns>
      <param name="obj">The object to compare with the current instance.</param>
    </member>
    <member name="M:System.Web.Razor.Generator.ExpressionCodeGenerator.GenerateCode(System.Web.Razor.Parser.SyntaxTree.Span,System.Web.Razor.Generator.CodeGeneratorContext)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Generates code for the expression.</summary>
      <param name="target">The source span whose content represents an expression.</param>
      <param name="context">The code generator context.</param>
    </member>
    <member name="M:System.Web.Razor.Generator.ExpressionCodeGenerator.GenerateEndBlockCode(System.Web.Razor.Parser.SyntaxTree.Block,System.Web.Razor.Generator.CodeGeneratorContext)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Generates the end code for the block.</summary>
      <param name="target">The target block for the end code generation.</param>
      <param name="context">The code generator context.</param>
    </member>
    <member name="M:System.Web.Razor.Generator.ExpressionCodeGenerator.GenerateStartBlockCode(System.Web.Razor.Parser.SyntaxTree.Block,System.Web.Razor.Generator.CodeGeneratorContext)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Generates the start code for the block.</summary>
      <param name="target">The target block the start code generation.</param>
      <param name="context">The code generator context.</param>
    </member>
    <member name="M:System.Web.Razor.Generator.ExpressionCodeGenerator.GetHashCode">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Returns the hash code for this instance.</summary>
      <returns>The hash code for this instance.</returns>
    </member>
    <member name="M:System.Web.Razor.Generator.ExpressionCodeGenerator.ToString">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Returns the string representation of this instance.</summary>
      <returns>The string representation of this instance.</returns>
    </member>
    <member name="T:System.Web.Razor.Generator.ExpressionRenderingMode">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Generator.ExpressionRenderingMode.InjectCode">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Generator.ExpressionRenderingMode.WriteToOutput">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="T:System.Web.Razor.Generator.GeneratedClassContext">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Represents a generated class context.</summary>
    </member>
    <member name="M:System.Web.Razor.Generator.GeneratedClassContext.#ctor(System.String,System.String,System.String)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Initializes a new instance of the <see cref="T:System.Web.Razor.Generator.GeneratedClassContext" /> class.</summary>
      <param name="executeMethodName">The execute method name.</param>
      <param name="writeMethodName">The write method name.</param>
      <param name="writeLiteralMethodName">Write literal method name.</param>
    </member>
    <member name="M:System.Web.Razor.Generator.GeneratedClassContext.#ctor(System.String,System.String,System.String,System.String,System.String,System.String)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Initializes a new instance of the <see cref="T:System.Web.Razor.Generator.GeneratedClassContext" /> class.</summary>
      <param name="executeMethodName">Execute method name.</param>
      <param name="writeMethodName">Write method name.</param>
      <param name="writeLiteralMethodName">Write literal method name.</param>
      <param name="writeToMethodName">Write to method name.</param>
      <param name="writeLiteralToMethodName">Write literal to method name.</param>
      <param name="templateTypeName">Template type name.</param>
    </member>
    <member name="M:System.Web.Razor.Generator.GeneratedClassContext.#ctor(System.String,System.String,System.String,System.String,System.String,System.String,System.String)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Initializes a new instance of the <see cref="T:System.Web.Razor.Generator.GeneratedClassContext" /> class.</summary>
      <param name="executeMethodName">Execute method name.</param>
      <param name="writeMethodName">Write method name.</param>
      <param name="writeLiteralMethodName">Write literal method name.</param>
      <param name="writeToMethodName">Write to method name.</param>
      <param name="writeLiteralToMethodName">Write literal to method name.</param>
      <param name="templateTypeName">Template type name.</param>
      <param name="defineSectionMethodName">Define section method name.</param>
    </member>
    <member name="M:System.Web.Razor.Generator.GeneratedClassContext.#ctor(System.String,System.String,System.String,System.String,System.String,System.String,System.String,System.String,System.String)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Initializes a new instance of the <see cref="T:System.Web.Razor.Generator.GeneratedClassContext" /> class.</summary>
      <param name="executeMethodName">Execute method name.</param>
      <param name="writeMethodName">Write method name.</param>
      <param name="writeLiteralMethodName">Write literal method name.</param>
      <param name="writeToMethodName">Write to method name.</param>
      <param name="writeLiteralToMethodName">Write literal to method name.</param>
      <param name="templateTypeName">Template type name.</param>
      <param name="defineSectionMethodName">Define section method name.</param>
      <param name="beginContextMethodName">Begin context method name.</param>
      <param name="endContextMethodName">End context method name.</param>
    </member>
    <member name="P:System.Web.Razor.Generator.GeneratedClassContext.AllowSections">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets a value indicating whether the context allows sections.</summary>
      <returns>true if the context allows sections; otherwise, false.</returns>
    </member>
    <member name="P:System.Web.Razor.Generator.GeneratedClassContext.AllowTemplates">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets a value indicating whether the context allows templates.</summary>
      <returns>true if the context allows templates; otherwise, false.</returns>
    </member>
    <member name="P:System.Web.Razor.Generator.GeneratedClassContext.BeginContextMethodName">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets or sets the name of the method before the generated context.</summary>
      <returns>The name of the method before the generated context.</returns>
    </member>
    <member name="F:System.Web.Razor.Generator.GeneratedClassContext.Default">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Defines the default generated context.</summary>
    </member>
    <member name="F:System.Web.Razor.Generator.GeneratedClassContext.DefaultExecuteMethodName">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Defines the default name of the execute method.</summary>
    </member>
    <member name="F:System.Web.Razor.Generator.GeneratedClassContext.DefaultLayoutPropertyName">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Defines the default name of the layout property.</summary>
    </member>
    <member name="F:System.Web.Razor.Generator.GeneratedClassContext.DefaultWriteAttributeMethodName">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Defines the default name of the write attribute method.</summary>
    </member>
    <member name="F:System.Web.Razor.Generator.GeneratedClassContext.DefaultWriteAttributeToMethodName">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Defines the default name of the write to attribute to method.</summary>
    </member>
    <member name="F:System.Web.Razor.Generator.GeneratedClassContext.DefaultWriteLiteralMethodName">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Specifies the default name of the write literal method.</summary>
    </member>
    <member name="F:System.Web.Razor.Generator.GeneratedClassContext.DefaultWriteMethodName">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Specifies the default name of the write method.</summary>
    </member>
    <member name="P:System.Web.Razor.Generator.GeneratedClassContext.DefineSectionMethodName">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets or sets the name of the method that defines the section of the context.</summary>
      <returns>The name of the method that defines the section of the context.</returns>
    </member>
    <member name="P:System.Web.Razor.Generator.GeneratedClassContext.EndContextMethodName">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets or sets the name of the method after the generated context.</summary>
      <returns>The name of the method after the generated context.</returns>
    </member>
    <member name="M:System.Web.Razor.Generator.GeneratedClassContext.Equals(System.Object)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Determines whether the specified object is equal to the current object.</summary>
      <returns>true if the specified object is equal to the current object; otherwise, false.</returns>
      <param name="obj">The object to compare to.</param>
    </member>
    <member name="P:System.Web.Razor.Generator.GeneratedClassContext.ExecuteMethodName">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets or sets the name of the method that will be invoked on the context.</summary>
      <returns>The name of the method that will be invoked on the context.</returns>
    </member>
    <member name="M:System.Web.Razor.Generator.GeneratedClassContext.GetHashCode">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Returns the hash code for this current instance.</summary>
      <returns>The hash code for this current instance.</returns>
    </member>
    <member name="P:System.Web.Razor.Generator.GeneratedClassContext.LayoutPropertyName">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets or sets the property name for the layout.</summary>
      <returns>The property name for the layout.</returns>
    </member>
    <member name="M:System.Web.Razor.Generator.GeneratedClassContext.op_Equality(System.Web.Razor.Generator.GeneratedClassContext,System.Web.Razor.Generator.GeneratedClassContext)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Determines whether the two <see cref="T:System.Web.Razor.Generator.GeneratedClassContext" /> object are equal.</summary>
      <returns>true if the two <see cref="T:System.Web.Razor.Generator.GeneratedClassContext" /> object are equal; otherwise, false.</returns>
      <param name="left">The first object to compare.</param>
      <param name="right">The second object to compare.</param>
    </member>
    <member name="M:System.Web.Razor.Generator.GeneratedClassContext.op_Inequality(System.Web.Razor.Generator.GeneratedClassContext,System.Web.Razor.Generator.GeneratedClassContext)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Determines whether the two <see cref="T:System.Web.Razor.Generator.GeneratedClassContext" /> object are not equal.</summary>
      <returns>true if the two <see cref="T:System.Web.Razor.Generator.GeneratedClassContext" /> object are not equal; otherwise, false.</returns>
      <param name="left">The first object to compare.</param>
      <param name="right">The second object to compare.</param>
    </member>
    <member name="P:System.Web.Razor.Generator.GeneratedClassContext.ResolveUrlMethodName">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets or sets the name of the method that resolves a Url for the context.</summary>
      <returns>The name of the method that resolves a Url for the context.</returns>
    </member>
    <member name="P:System.Web.Razor.Generator.GeneratedClassContext.SupportsInstrumentation">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets a value indicating whether the generated class supports instrumentation.</summary>
      <returns>true if the generated class supports instrumentation; otherwise, false.</returns>
    </member>
    <member name="P:System.Web.Razor.Generator.GeneratedClassContext.TemplateTypeName">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets or sets the type name for the template.</summary>
      <returns>The type name for the template.</returns>
    </member>
    <member name="P:System.Web.Razor.Generator.GeneratedClassContext.WriteAttributeMethodName">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets or sets the name of the method that writes an attribute.</summary>
      <returns>The name of the method that writes an attribute.</returns>
    </member>
    <member name="P:System.Web.Razor.Generator.GeneratedClassContext.WriteAttributeToMethodName">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets or sets the name of the method where to write an attribute.</summary>
      <returns>The name of the method where to write an attribute.</returns>
    </member>
    <member name="P:System.Web.Razor.Generator.GeneratedClassContext.WriteLiteralMethodName">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets or sets the name of the method where to write literal for the context.</summary>
      <returns>The name of the method where to write literal for the context.</returns>
    </member>
    <member name="P:System.Web.Razor.Generator.GeneratedClassContext.WriteLiteralToMethodName">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets or sets the name of the method where to write literal for the context.</summary>
      <returns>The name of the method where to write literal for the context.</returns>
    </member>
    <member name="P:System.Web.Razor.Generator.GeneratedClassContext.WriteMethodName">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets or sets the name of the method that will write on the context.</summary>
      <returns>The name of the method that will write on the context.</returns>
    </member>
    <member name="P:System.Web.Razor.Generator.GeneratedClassContext.WriteToMethodName">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets or sets the name of the method that will write on the context.</summary>
      <returns>The name of the method that will write on the context.</returns>
    </member>
    <member name="T:System.Web.Razor.Generator.GeneratedCodeMapping">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Represents the generated code mapping objects.</summary>
    </member>
    <member name="M:System.Web.Razor.Generator.GeneratedCodeMapping.#ctor(System.Int32,System.Int32,System.Int32,System.Int32)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Initializes a new instance of the <see cref="T:System.Web.Razor.Generator.GeneratedCodeMapping" /> class.</summary>
      <param name="startLine">The starting line.</param>
      <param name="startColumn">The starting column.</param>
      <param name="startGeneratedColumn">The start generated column.</param>
      <param name="codeLength">The code length.</param>
    </member>
    <member name="M:System.Web.Razor.Generator.GeneratedCodeMapping.#ctor(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Initializes a new instance of the <see cref="T:System.Web.Razor.Generator.GeneratedCodeMapping" /> class.</summary>
      <param name="startOffset">The start offset.</param>
      <param name="startLine">The starting line.</param>
      <param name="startColumn">The starting column.</param>
      <param name="startGeneratedColumn">The start generated column.</param>
      <param name="codeLength">The code length.</param>
    </member>
    <member name="P:System.Web.Razor.Generator.GeneratedCodeMapping.CodeLength">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets or sets the length of the generated map codes.</summary>
      <returns>The length of the generated map codes.</returns>
    </member>
    <member name="M:System.Web.Razor.Generator.GeneratedCodeMapping.Equals(System.Object)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Determines whether the specified object is equal to the current generated code mapping object.</summary>
      <returns>true if the specified object is equal to the current generated code mapping object; otherwise, false.</returns>
      <param name="obj">The object to compare with the current object.</param>
    </member>
    <member name="M:System.Web.Razor.Generator.GeneratedCodeMapping.GetHashCode">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Returns the hash code for the generated code mapping object.</summary>
      <returns>The hash code for the generated code mapping object.</returns>
    </member>
    <member name="M:System.Web.Razor.Generator.GeneratedCodeMapping.op_Equality(System.Web.Razor.Generator.GeneratedCodeMapping,System.Web.Razor.Generator.GeneratedCodeMapping)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Determines whether the two specified generated code mapping objects have the same value.</summary>
      <returns>true if the two specified generated code mapping objects have the same value; otherwise, false.</returns>
      <param name="left">The left generated code mapping objects.</param>
      <param name="right">The right generated code mapping objects.</param>
    </member>
    <member name="M:System.Web.Razor.Generator.GeneratedCodeMapping.op_Inequality(System.Web.Razor.Generator.GeneratedCodeMapping,System.Web.Razor.Generator.GeneratedCodeMapping)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Determines whether the two specified generated code mapping objects have different values.</summary>
      <returns>true the two specified generated code mapping objects have different values; otherwise, false.</returns>
      <param name="right">The right generated code mapping objects.</param>
    </member>
    <member name="P:System.Web.Razor.Generator.GeneratedCodeMapping.StartColumn">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets or sets the starting column of the generated code maps.</summary>
      <returns>The starting column of the generated code maps.</returns>
    </member>
    <member name="P:System.Web.Razor.Generator.GeneratedCodeMapping.StartGeneratedColumn">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets or sets the starting column of a generated code maps in the generated source file.</summary>
      <returns>The starting column of a generated code maps in the generated source file.</returns>
    </member>
    <member name="P:System.Web.Razor.Generator.GeneratedCodeMapping.StartLine">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets the starting line of the generated code maps.</summary>
      <returns>The starting line of the generated code maps.</returns>
    </member>
    <member name="P:System.Web.Razor.Generator.GeneratedCodeMapping.StartOffset">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets or sets the starting offset of the generated code maps.</summary>
      <returns>The starting offset of the generated code maps.</returns>
    </member>
    <member name="M:System.Web.Razor.Generator.GeneratedCodeMapping.ToString">
      <summary>Returns a string that represents the current object.</summary>
      <returns>A string that represents the current object.</returns>
    </member>
    <member name="T:System.Web.Razor.Generator.HelperCodeGenerator">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Represents a helper code generator.</summary>
    </member>
    <member name="M:System.Web.Razor.Generator.HelperCodeGenerator.#ctor(System.Web.Razor.Text.LocationTagged{System.String},System.Boolean)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Initializes a new instance of the <see cref="T:System.Web.Razor.Generator.HelperCodeGenerator" /> class.</summary>
      <param name="signature">The signature.</param>
      <param name="headerComplete">true to complete the header; otherwise, false.</param>
    </member>
    <member name="M:System.Web.Razor.Generator.HelperCodeGenerator.Equals(System.Object)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Determines whether the specified object is equal to the current object.</summary>
      <returns>true if the specified object is equal to the current object; otherwise, false.</returns>
      <param name="obj">The object to compare to.</param>
    </member>
    <member name="P:System.Web.Razor.Generator.HelperCodeGenerator.Footer">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets or sets the footer for this code.</summary>
      <returns>The footer for this code.</returns>
    </member>
    <member name="M:System.Web.Razor.Generator.HelperCodeGenerator.GenerateEndBlockCode(System.Web.Razor.Parser.SyntaxTree.Block,System.Web.Razor.Generator.CodeGeneratorContext)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Generates a block after the code.</summary>
      <param name="target">The block to generate.</param>
      <param name="context">The code generator context.</param>
    </member>
    <member name="M:System.Web.Razor.Generator.HelperCodeGenerator.GenerateStartBlockCode(System.Web.Razor.Parser.SyntaxTree.Block,System.Web.Razor.Generator.CodeGeneratorContext)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Generates a block before the code.</summary>
      <param name="target">The block to generate.</param>
      <param name="context">The code generator context.</param>
    </member>
    <member name="M:System.Web.Razor.Generator.HelperCodeGenerator.GetHashCode">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets the hash code for the current instance.</summary>
      <returns>The hash code for the current instance.</returns>
    </member>
    <member name="P:System.Web.Razor.Generator.HelperCodeGenerator.HeaderComplete">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets or sets a value indicating whether the header for this code is complete.</summary>
      <returns>true if the header for this code is complete; otherwise, false.</returns>
    </member>
    <member name="P:System.Web.Razor.Generator.HelperCodeGenerator.Signature">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets or sets the signature for this code.</summary>
      <returns>The signature for this code.</returns>
    </member>
    <member name="M:System.Web.Razor.Generator.HelperCodeGenerator.ToString">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Returns a string representation of the current instance.</summary>
      <returns>A string representation of the current instance.</returns>
    </member>
    <member name="T:System.Web.Razor.Generator.HybridCodeGenerator">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Represents a hybrid code generator.</summary>
    </member>
    <member name="M:System.Web.Razor.Generator.HybridCodeGenerator.#ctor">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Initializes a new instance of the <see cref="T:System.Web.Razor.Generator.HybridCodeGenerator" /> class.</summary>
    </member>
    <member name="M:System.Web.Razor.Generator.HybridCodeGenerator.GenerateCode(System.Web.Razor.Parser.SyntaxTree.Span,System.Web.Razor.Generator.CodeGeneratorContext)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Generates code for the data model from switches identified by parameters.</summary>
      <param name="target">The target object.</param>
      <param name="context">The code generator context.</param>
    </member>
    <member name="M:System.Web.Razor.Generator.HybridCodeGenerator.GenerateEndBlockCode(System.Web.Razor.Parser.SyntaxTree.Block,System.Web.Razor.Generator.CodeGeneratorContext)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Generates an end block code.</summary>
      <param name="target">The target object.</param>
      <param name="context">The code generator context.</param>
    </member>
    <member name="M:System.Web.Razor.Generator.HybridCodeGenerator.GenerateStartBlockCode(System.Web.Razor.Parser.SyntaxTree.Block,System.Web.Razor.Generator.CodeGeneratorContext)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Generates the start block code.</summary>
      <param name="target">The target object.</param>
      <param name="context">The code generator context.</param>
    </member>
    <member name="T:System.Web.Razor.Generator.IBlockCodeGenerator">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Represents the <see cref="T:System.Web.Razor.Generator.IBlockCodeGenerator" /> for the webpages.</summary>
    </member>
    <member name="M:System.Web.Razor.Generator.IBlockCodeGenerator.GenerateEndBlockCode(System.Web.Razor.Parser.SyntaxTree.Block,System.Web.Razor.Generator.CodeGeneratorContext)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Generates the end block code for the razor.</summary>
      <param name="target">The target block.</param>
      <param name="context">The code generator context.</param>
    </member>
    <member name="M:System.Web.Razor.Generator.IBlockCodeGenerator.GenerateStartBlockCode(System.Web.Razor.Parser.SyntaxTree.Block,System.Web.Razor.Generator.CodeGeneratorContext)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Generates the start block code for the razor.</summary>
      <param name="target">The target block.</param>
      <param name="context">The code generator context.</param>
    </member>
    <member name="T:System.Web.Razor.Generator.ISpanCodeGenerator">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Represents a phase of the code generator.</summary>
    </member>
    <member name="M:System.Web.Razor.Generator.ISpanCodeGenerator.GenerateCode(System.Web.Razor.Parser.SyntaxTree.Span,System.Web.Razor.Generator.CodeGeneratorContext)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Generates code for the data model with the specified target and context.</summary>
      <param name="target">The target object.</param>
      <param name="context">The code generator context.</param>
    </member>
    <member name="T:System.Web.Razor.Generator.LiteralAttributeCodeGenerator">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Represents a code generator for literal attribute.</summary>
    </member>
    <member name="M:System.Web.Razor.Generator.LiteralAttributeCodeGenerator.#ctor(System.Web.Razor.Text.LocationTagged{System.String},System.Web.Razor.Text.LocationTagged{System.String})">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. . Initializes a new instance of the <see cref="T:System.Web.Razor.Generator.LiteralAttributeCodeGenerator" /> class.</summary>
      <param name="prefix">The prefix of the literal attribute.</param>
      <param name="value">The value of the literal attribute.</param>
    </member>
    <member name="M:System.Web.Razor.Generator.LiteralAttributeCodeGenerator.#ctor(System.Web.Razor.Text.LocationTagged{System.String},System.Web.Razor.Text.LocationTagged{System.Web.Razor.Generator.SpanCodeGenerator})">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. . Initializes a new instance of the <see cref="T:System.Web.Razor.Generator.LiteralAttributeCodeGenerator" /> class.</summary>
      <param name="prefix">The prefix of the literal attribute.</param>
      <param name="valueGenerator">The value generator for the literal attribute.</param>
    </member>
    <member name="M:System.Web.Razor.Generator.LiteralAttributeCodeGenerator.Equals(System.Object)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Determines whether the specified object is equal to this instance.</summary>
      <returns>true if the specified object is equal to this instance; otherwise, false.</returns>
      <param name="obj">The object to compare to this instance.</param>
    </member>
    <member name="M:System.Web.Razor.Generator.LiteralAttributeCodeGenerator.GenerateCode(System.Web.Razor.Parser.SyntaxTree.Span,System.Web.Razor.Generator.CodeGeneratorContext)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Generates the code for the literal attribute.</summary>
      <param name="target">The source span whose content represents the literal attribute.</param>
      <param name="context">The context of the code generator.</param>
    </member>
    <member name="M:System.Web.Razor.Generator.LiteralAttributeCodeGenerator.GetHashCode">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Gets the hash code for the current instance.</summary>
      <returns>The hash code for the current instance.</returns>
    </member>
    <member name="P:System.Web.Razor.Generator.LiteralAttributeCodeGenerator.Prefix">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Gets or sets the prefix of the literal attribute.</summary>
      <returns>The prefix of the literal attribute.</returns>
    </member>
    <member name="M:System.Web.Razor.Generator.LiteralAttributeCodeGenerator.ToString">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Returns the string representation of this instance.</summary>
      <returns>The string representation of this instance.</returns>
    </member>
    <member name="P:System.Web.Razor.Generator.LiteralAttributeCodeGenerator.Value">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Gets or sets the value of the literal attribute.</summary>
      <returns>The value of the literal attribute.</returns>
    </member>
    <member name="P:System.Web.Razor.Generator.LiteralAttributeCodeGenerator.ValueGenerator">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Gets or sets the value generator for the literal attribute.</summary>
      <returns>The value generator for the literal attribute.</returns>
    </member>
    <member name="T:System.Web.Razor.Generator.MarkupCodeGenerator">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Represents a code generator for markup.</summary>
    </member>
    <member name="M:System.Web.Razor.Generator.MarkupCodeGenerator.#ctor">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Initializes a new instance of the <see cref="T:System.Web.Razor.Generator.MarkupCodeGenerator" /> class.</summary>
    </member>
    <member name="M:System.Web.Razor.Generator.MarkupCodeGenerator.Equals(System.Object)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Determines whether the specified object is equal to this instance.</summary>
      <returns>true if the specified object is equal to this instance; otherwise, false.</returns>
      <param name="obj">The object to compare to this instance.</param>
    </member>
    <member name="M:System.Web.Razor.Generator.MarkupCodeGenerator.GenerateCode(System.Web.Razor.Parser.SyntaxTree.Span,System.Web.Razor.Generator.CodeGeneratorContext)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Generates the code for the markup.</summary>
      <param name="target">The source span whose content represents the markup.</param>
      <param name="context">The context of the code generator.</param>
    </member>
    <member name="M:System.Web.Razor.Generator.MarkupCodeGenerator.GetHashCode">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Returns the hash code for this instance.</summary>
      <returns>The hash code for this instance.</returns>
    </member>
    <member name="M:System.Web.Razor.Generator.MarkupCodeGenerator.ToString">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Returns the string representation for this instance.</summary>
      <returns>The string representation for this instance.</returns>
    </member>
    <member name="T:System.Web.Razor.Generator.RazorCodeGenerator">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Represents a Razor code generator.</summary>
    </member>
    <member name="M:System.Web.Razor.Generator.RazorCodeGenerator.#ctor(System.String,System.String,System.String,System.Web.Razor.RazorEngineHost)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Initializes a new instance of the <see cref="T:System.Web.Razor.Generator.RazorCodeGenerator" /> class.</summary>
      <param name="className">The class name.</param>
      <param name="rootNamespaceName">The root namespace name.</param>
      <param name="sourceFileName">The source file name.</param>
      <param name="host">The host.</param>
    </member>
    <member name="P:System.Web.Razor.Generator.RazorCodeGenerator.ClassName">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets or sets the class name for this code.</summary>
      <returns>The class name for this code.</returns>
    </member>
    <member name="P:System.Web.Razor.Generator.RazorCodeGenerator.Context">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets the context of this code generator.</summary>
      <returns>The context of this code generator.</returns>
    </member>
    <member name="P:System.Web.Razor.Generator.RazorCodeGenerator.DesignTimeMode">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets or sets a value indicating whether the code generator is in design-time mode.</summary>
      <returns>true if the code generator is in design-time mode; otherwise, false.</returns>
    </member>
    <member name="P:System.Web.Razor.Generator.RazorCodeGenerator.GenerateLinePragmas">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets or sets a value indicating whether the generator should generate line pragmas in the Razor code.</summary>
      <returns>true if the generator should generate line pragmas in the Razor code; otherwise, false.</returns>
    </member>
    <member name="P:System.Web.Razor.Generator.RazorCodeGenerator.Host">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets or sets the razor engine host.</summary>
      <returns>The razor engine host.</returns>
    </member>
    <member name="M:System.Web.Razor.Generator.RazorCodeGenerator.Initialize(System.Web.Razor.Generator.CodeGeneratorContext)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Initializes the current <see cref="T:System.Web.Razor.Generator.RazorCodeGenerator" /> instance.</summary>
      <param name="context">The context.</param>
    </member>
    <member name="M:System.Web.Razor.Generator.RazorCodeGenerator.OnComplete">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Raises the Complete event.</summary>
    </member>
    <member name="P:System.Web.Razor.Generator.RazorCodeGenerator.RootNamespaceName">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets or sets the name of the root namespace.</summary>
      <returns>The name of the root namespace.</returns>
    </member>
    <member name="P:System.Web.Razor.Generator.RazorCodeGenerator.SourceFileName">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets or sets the name of the source file.</summary>
      <returns>The name of the source file.</returns>
    </member>
    <member name="M:System.Web.Razor.Generator.RazorCodeGenerator.VisitEndBlock(System.Web.Razor.Parser.SyntaxTree.Block)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Visits the end block.</summary>
      <param name="block">The block to visit.</param>
    </member>
    <member name="M:System.Web.Razor.Generator.RazorCodeGenerator.VisitSpan(System.Web.Razor.Parser.SyntaxTree.Span)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Visits the span.</summary>
      <param name="span">The span to visit.</param>
    </member>
    <member name="M:System.Web.Razor.Generator.RazorCodeGenerator.VisitStartBlock(System.Web.Razor.Parser.SyntaxTree.Block)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Visits the start block.</summary>
      <param name="block">The block to visit.</param>
    </member>
    <member name="T:System.Web.Razor.Generator.RazorCommentCodeGenerator">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Represents the razor comment code generator for the webpages.</summary>
    </member>
    <member name="M:System.Web.Razor.Generator.RazorCommentCodeGenerator.#ctor">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Initializes a new instance of the <see cref="T:System.Web.Razor.Generator.RazorCommentCodeGenerator" /> class.</summary>
    </member>
    <member name="M:System.Web.Razor.Generator.RazorCommentCodeGenerator.GenerateStartBlockCode(System.Web.Razor.Parser.SyntaxTree.Block,System.Web.Razor.Generator.CodeGeneratorContext)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Generates the start block code with the specified parameters.</summary>
      <param name="target">The target block.</param>
      <param name="context">The code generator context.</param>
    </member>
    <member name="T:System.Web.Razor.Generator.RazorDirectiveAttributeCodeGenerator">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Represents a code generator for Razor directive attribute. </summary>
    </member>
    <member name="M:System.Web.Razor.Generator.RazorDirectiveAttributeCodeGenerator.#ctor(System.String,System.String)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Initializes a new instance of the <see cref="T:System.Web.Razor.Generator.RazorDirectiveAttributeCodeGenerator" /> class.</summary>
      <param name="name">The name of the directive attribute.</param>
      <param name="value">The value of the directive attribute.</param>
    </member>
    <member name="M:System.Web.Razor.Generator.RazorDirectiveAttributeCodeGenerator.Equals(System.Object)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Determines whether the specified object is equal to this instance.</summary>
      <returns>true if the specified object is equal to this instance; otherwise, false.</returns>
      <param name="obj">The object to compare to this instance.</param>
    </member>
    <member name="M:System.Web.Razor.Generator.RazorDirectiveAttributeCodeGenerator.GenerateCode(System.Web.Razor.Parser.SyntaxTree.Span,System.Web.Razor.Generator.CodeGeneratorContext)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Generates the code for the directive attribute.</summary>
      <param name="target">The source span whose content represents the directive attribute to generate.</param>
      <param name="context">The context of the code generator.</param>
    </member>
    <member name="M:System.Web.Razor.Generator.RazorDirectiveAttributeCodeGenerator.GetHashCode">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Returns the hash code for this instance.</summary>
      <returns>The hash code for this instance.</returns>
    </member>
    <member name="P:System.Web.Razor.Generator.RazorDirectiveAttributeCodeGenerator.Name">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Gets or sets the name of the directive attribute.</summary>
      <returns>The name of the directive attribute.</returns>
    </member>
    <member name="M:System.Web.Razor.Generator.RazorDirectiveAttributeCodeGenerator.ToString">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Returns the string representation for this instance.</summary>
      <returns>The string representation for this instance.</returns>
    </member>
    <member name="P:System.Web.Razor.Generator.RazorDirectiveAttributeCodeGenerator.Value">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Gets or sets the value of the directive attribute.</summary>
      <returns>The value of the directive attribute.</returns>
    </member>
    <member name="T:System.Web.Razor.Generator.ResolveUrlCodeGenerator">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Represents the resolve Url code generator.</summary>
    </member>
    <member name="M:System.Web.Razor.Generator.ResolveUrlCodeGenerator.#ctor">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Initializes a new instance of the <see cref="T:System.Web.Razor.Generator.ResolveUrlCodeGenerator" /> class.</summary>
    </member>
    <member name="M:System.Web.Razor.Generator.ResolveUrlCodeGenerator.Equals(System.Object)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Indicates whether this instance and a specified object are equal.</summary>
      <returns>true if <paramref name="obj" /> and this instance are the same type and represent the same value; otherwise, false.</returns>
      <param name="obj">The object to compare with the current instance.</param>
    </member>
    <member name="M:System.Web.Razor.Generator.ResolveUrlCodeGenerator.GenerateCode(System.Web.Razor.Parser.SyntaxTree.Span,System.Web.Razor.Generator.CodeGeneratorContext)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Generates code for the Url.</summary>
      <param name="target">The target object.</param>
      <param name="context">The code generator context.</param>
    </member>
    <member name="M:System.Web.Razor.Generator.ResolveUrlCodeGenerator.GetHashCode">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Returns the hash code for this instance.</summary>
      <returns>The hash code for this instance.</returns>
    </member>
    <member name="M:System.Web.Razor.Generator.ResolveUrlCodeGenerator.ToString">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Returns the fully qualified type name of this instance.</summary>
      <returns>The fully qualified type name.</returns>
    </member>
    <member name="T:System.Web.Razor.Generator.SectionCodeGenerator">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Represents a section code generator.</summary>
    </member>
    <member name="M:System.Web.Razor.Generator.SectionCodeGenerator.#ctor(System.String)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Initializes a new instance of the <see cref="T:System.Web.Razor.Generator.SectionCodeGenerator" /> class.</summary>
      <param name="sectionName">The name of the section code.</param>
    </member>
    <member name="M:System.Web.Razor.Generator.SectionCodeGenerator.Equals(System.Object)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Determines whether the specified object is equal to the current object.</summary>
      <returns>true if the specified object is equal to the current object; otherwise, false.</returns>
      <param name="obj">The object to compare to.</param>
    </member>
    <member name="M:System.Web.Razor.Generator.SectionCodeGenerator.GenerateEndBlockCode(System.Web.Razor.Parser.SyntaxTree.Block,System.Web.Razor.Generator.CodeGeneratorContext)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Generates a block after the section code.</summary>
      <param name="target">The target to generate.</param>
      <param name="context">The code generator context.</param>
    </member>
    <member name="M:System.Web.Razor.Generator.SectionCodeGenerator.GenerateStartBlockCode(System.Web.Razor.Parser.SyntaxTree.Block,System.Web.Razor.Generator.CodeGeneratorContext)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Generates a block before the section code.</summary>
      <param name="target">The target to generate.</param>
      <param name="context">The code generator context.</param>
    </member>
    <member name="M:System.Web.Razor.Generator.SectionCodeGenerator.GetHashCode">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Retrieves the hash code for this current instance.</summary>
      <returns>The hash code for this current instance.</returns>
    </member>
    <member name="P:System.Web.Razor.Generator.SectionCodeGenerator.SectionName">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets or sets the name of the section.</summary>
      <returns>The name of the section.</returns>
    </member>
    <member name="M:System.Web.Razor.Generator.SectionCodeGenerator.ToString">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Returns a string representation of this current instance.</summary>
      <returns>A string representation of this current instance.</returns>
    </member>
    <member name="T:System.Web.Razor.Generator.SetBaseTypeCodeGenerator">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Represents a code generator for set base type.</summary>
    </member>
    <member name="M:System.Web.Razor.Generator.SetBaseTypeCodeGenerator.#ctor(System.String)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Initializes a new instance of the <see cref="T:System.Web.Razor.Generator.SetBaseTypeCodeGenerator" /> class.</summary>
      <param name="baseType">The set base type.</param>
    </member>
    <member name="P:System.Web.Razor.Generator.SetBaseTypeCodeGenerator.BaseType">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Gets or sets the set base type.</summary>
      <returns>The set base type.</returns>
    </member>
    <member name="M:System.Web.Razor.Generator.SetBaseTypeCodeGenerator.Equals(System.Object)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Determines whether the specified object is equal to this instance.</summary>
      <returns>true if the specified object is equal to this instance; otherwise, false.</returns>
      <param name="obj">The object to compare to this instance.</param>
    </member>
    <member name="M:System.Web.Razor.Generator.SetBaseTypeCodeGenerator.GenerateCode(System.Web.Razor.Parser.SyntaxTree.Span,System.Web.Razor.Generator.CodeGeneratorContext)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Generates the code for this set base type.</summary>
      <param name="target">The source span that contains the set base type to generate code.</param>
      <param name="context">The context of the code generator.</param>
    </member>
    <member name="M:System.Web.Razor.Generator.SetBaseTypeCodeGenerator.GetHashCode">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Gets the hash code for this current instance.</summary>
      <returns>The hash code for this current instance.</returns>
    </member>
    <member name="M:System.Web.Razor.Generator.SetBaseTypeCodeGenerator.ResolveType(System.Web.Razor.Generator.CodeGeneratorContext,System.String)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Resolves the given set base type.</summary>
      <returns>The resolved set base type.</returns>
      <param name="context">The context of the code generator.</param>
      <param name="baseType">The set base type to resolve.</param>
    </member>
    <member name="M:System.Web.Razor.Generator.SetBaseTypeCodeGenerator.ToString">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Returns the string representation for this instance.</summary>
      <returns>The string representation for this instance.</returns>
    </member>
    <member name="T:System.Web.Razor.Generator.SetLayoutCodeGenerator">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Represents a code generator that sets layout for the web Razor.</summary>
    </member>
    <member name="M:System.Web.Razor.Generator.SetLayoutCodeGenerator.#ctor(System.String)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Initializes a new instance of the <see cref="T:System.Web.Razor.Generator.SetLayoutCodeGenerator" /> class.</summary>
      <param name="layoutPath">The layout path.</param>
    </member>
    <member name="M:System.Web.Razor.Generator.SetLayoutCodeGenerator.Equals(System.Object)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Determines whether the specified object is equal to the current object.</summary>
      <returns>true if the specified object is equal to the current object; otherwise, false.</returns>
      <param name="obj">The object to compare to.</param>
    </member>
    <member name="M:System.Web.Razor.Generator.SetLayoutCodeGenerator.GenerateCode(System.Web.Razor.Parser.SyntaxTree.Span,System.Web.Razor.Generator.CodeGeneratorContext)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Generates a layout code.</summary>
      <param name="target">The target where to generate the code.</param>
      <param name="context">The code generator context.</param>
    </member>
    <member name="M:System.Web.Razor.Generator.SetLayoutCodeGenerator.GetHashCode">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Retrieves a hash code for this current instance.</summary>
      <returns>A hash code for this current instance.</returns>
    </member>
    <member name="P:System.Web.Razor.Generator.SetLayoutCodeGenerator.LayoutPath">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets or sets the path of the layout code.</summary>
      <returns>The path of the layout code.</returns>
    </member>
    <member name="M:System.Web.Razor.Generator.SetLayoutCodeGenerator.ToString">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Returns a string representation of this current instance.</summary>
      <returns>A string representation of this current instance.</returns>
    </member>
    <member name="T:System.Web.Razor.Generator.SetVBOptionCodeGenerator">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Represents the conversion of the SetVBOptionCodeGenerator of the value.</summary>
    </member>
    <member name="M:System.Web.Razor.Generator.SetVBOptionCodeGenerator.#ctor(System.String,System.Boolean)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Initializes a new instance of the <see cref="T:System.Web.Razor.Generator.SetVBOptionCodeGenerator" /> class.</summary>
      <param name="optionName">The option name.</param>
      <param name="value">true if the object has a value; otherwise, false.</param>
    </member>
    <member name="M:System.Web.Razor.Generator.SetVBOptionCodeGenerator.Explicit(System.Boolean)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Converts the <see cref="T:System.Web.Razor.Generator.SetVBOptionCodeGenerator" /> explicitly to the on and off value.</summary>
      <returns>The <see cref="T:System.Web.Razor.Generator.SetVBOptionCodeGenerator" /> explicitly converts to the on and off value.</returns>
      <param name="onOffValue">true if the <see cref="T:System.Web.Razor.Generator.SetVBOptionCodeGenerator" /> converts to on and off value; otherwise, false.</param>
    </member>
    <member name="F:System.Web.Razor.Generator.SetVBOptionCodeGenerator.ExplicitCodeDomOptionName">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Represents the explicit code Dom option name.</summary>
    </member>
    <member name="M:System.Web.Razor.Generator.SetVBOptionCodeGenerator.GenerateCode(System.Web.Razor.Parser.SyntaxTree.Span,System.Web.Razor.Generator.CodeGeneratorContext)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Generates code for the specified parameters.</summary>
      <param name="target">The target.</param>
      <param name="context">The code generator context.</param>
    </member>
    <member name="P:System.Web.Razor.Generator.SetVBOptionCodeGenerator.OptionName">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets the option name for the code generator.</summary>
      <returns>The option name for the code generator.</returns>
    </member>
    <member name="M:System.Web.Razor.Generator.SetVBOptionCodeGenerator.Strict(System.Boolean)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Strictly converts the <see cref="T:System.Web.Razor.Generator.SetVBOptionCodeGenerator" /> to the on and off value.</summary>
      <returns>The <see cref="T:System.Web.Razor.Generator.SetVBOptionCodeGenerator" /> strictly converts to the on and off value.</returns>
      <param name="onOffValue">true if the <see cref="T:System.Web.Razor.Generator.SetVBOptionCodeGenerator" /> strictly converts to the on and off value; otherwise, false.</param>
    </member>
    <member name="F:System.Web.Razor.Generator.SetVBOptionCodeGenerator.StrictCodeDomOptionName">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Represents the strict code Dom option name.</summary>
    </member>
    <member name="M:System.Web.Razor.Generator.SetVBOptionCodeGenerator.ToString">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Returns a String that represents the current Object.</summary>
      <returns>A String that represents the current Object.</returns>
    </member>
    <member name="P:System.Web.Razor.Generator.SetVBOptionCodeGenerator.Value">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets a value that indicates whether the <see cref="T:System.Web.Razor.Generator.SetVBOptionCodeGenerator" /> has a value.</summary>
      <returns>true if the <see cref="T:System.Web.Razor.Generator.SetVBOptionCodeGenerator" /> has a value; otherwise, false.</returns>
    </member>
    <member name="T:System.Web.Razor.Generator.SpanCodeGenerator">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Represents the span code generator for the razor.</summary>
    </member>
    <member name="M:System.Web.Razor.Generator.SpanCodeGenerator.#ctor">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Initializes a new instance of the <see cref="T:System.Web.Razor.Generator.SpanCodeGenerator" /> class.</summary>
    </member>
    <member name="M:System.Web.Razor.Generator.SpanCodeGenerator.Equals(System.Object)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Determines whether the specified object is equal to the current object.</summary>
      <returns>true if the specified object is equal to the current object; otherwise, false.</returns>
      <param name="obj">The object to compare with the current object.</param>
    </member>
    <member name="M:System.Web.Razor.Generator.SpanCodeGenerator.GenerateCode(System.Web.Razor.Parser.SyntaxTree.Span,System.Web.Razor.Generator.CodeGeneratorContext)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Generates a code for the specified target and context parameters.</summary>
      <param name="target">The target span.</param>
      <param name="context">The code generator context.</param>
    </member>
    <member name="M:System.Web.Razor.Generator.SpanCodeGenerator.GetHashCode">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Returns a hash code for the span code generator.</summary>
      <returns>A hash code for the span code generator.</returns>
    </member>
    <member name="F:System.Web.Razor.Generator.SpanCodeGenerator.Null">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Represents a null value for the span code generator.</summary>
    </member>
    <member name="T:System.Web.Razor.Generator.StatementCodeGenerator">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Represents a code generator for the statement.</summary>
    </member>
    <member name="M:System.Web.Razor.Generator.StatementCodeGenerator.#ctor">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Initializes a new instance of the <see cref="T:System.Web.Razor.Generator.StatementCodeGenerator" /> class.</summary>
    </member>
    <member name="M:System.Web.Razor.Generator.StatementCodeGenerator.Equals(System.Object)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Determines whether the specified object is equal to this instance.</summary>
      <returns>true if the specified object is equal to this instance; otherwise, false.</returns>
      <param name="obj">The object to compare to this instance.</param>
    </member>
    <member name="M:System.Web.Razor.Generator.StatementCodeGenerator.GenerateCode(System.Web.Razor.Parser.SyntaxTree.Span,System.Web.Razor.Generator.CodeGeneratorContext)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Generates the code for the statement.</summary>
      <param name="target">The span source whose content contains the statement to generate.</param>
      <param name="context">The context of the code generator.</param>
    </member>
    <member name="M:System.Web.Razor.Generator.StatementCodeGenerator.GetHashCode">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Returns the hash code for this current instance.</summary>
      <returns>The hash code for this current instance.</returns>
    </member>
    <member name="M:System.Web.Razor.Generator.StatementCodeGenerator.ToString">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Returns the string representation for this instance.</summary>
      <returns>The string representation for this instance.</returns>
    </member>
    <member name="T:System.Web.Razor.Generator.TemplateBlockCodeGenerator">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Represents the template block code generator of the razor.</summary>
    </member>
    <member name="M:System.Web.Razor.Generator.TemplateBlockCodeGenerator.#ctor">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Initializes a new instance of the <see cref="T:System.Web.Razor.Generator.TemplateBlockCodeGenerator" /> class.</summary>
    </member>
    <member name="M:System.Web.Razor.Generator.TemplateBlockCodeGenerator.GenerateEndBlockCode(System.Web.Razor.Parser.SyntaxTree.Block,System.Web.Razor.Generator.CodeGeneratorContext)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Generates code to end the block of the template block code generator.</summary>
      <param name="target">The target block.</param>
      <param name="context">The code generator context.</param>
    </member>
    <member name="M:System.Web.Razor.Generator.TemplateBlockCodeGenerator.GenerateStartBlockCode(System.Web.Razor.Parser.SyntaxTree.Block,System.Web.Razor.Generator.CodeGeneratorContext)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Generates code to start the block for the template block code generator.</summary>
      <param name="target">The target block.</param>
      <param name="context">The code generator context.</param>
    </member>
    <member name="T:System.Web.Razor.Generator.TypeMemberCodeGenerator">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Represents a type member code generator.</summary>
    </member>
    <member name="M:System.Web.Razor.Generator.TypeMemberCodeGenerator.#ctor">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Initializes a new instance of the <see cref="T:System.Web.Razor.Generator.TypeMemberCodeGenerator" /> class.</summary>
    </member>
    <member name="M:System.Web.Razor.Generator.TypeMemberCodeGenerator.Equals(System.Object)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Determines whether the specified object is equal to the current object.</summary>
      <returns>true if the specified object is equal to the current object; otherwise, false.</returns>
      <param name="obj">The object to compare to.</param>
    </member>
    <member name="M:System.Web.Razor.Generator.TypeMemberCodeGenerator.GenerateCode(System.Web.Razor.Parser.SyntaxTree.Span,System.Web.Razor.Generator.CodeGeneratorContext)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Generates code with a given target and context.</summary>
      <param name="target">The target where to generate the code.</param>
      <param name="context">The code generator context.</param>
    </member>
    <member name="M:System.Web.Razor.Generator.TypeMemberCodeGenerator.GetHashCode">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Retrieves the hash code for this current instance.</summary>
      <returns>The hash code for this current instance.</returns>
    </member>
    <member name="M:System.Web.Razor.Generator.TypeMemberCodeGenerator.ToString">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Returns a string representation of this code.</summary>
      <returns>A string representation of this code.</returns>
    </member>
    <member name="T:System.Web.Razor.Generator.VBRazorCodeGenerator">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Represents the razor code generator for VB.</summary>
    </member>
    <member name="M:System.Web.Razor.Generator.VBRazorCodeGenerator.#ctor(System.String,System.String,System.String,System.Web.Razor.RazorEngineHost)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Initializes a new instance of the <see cref="T:System.Web.Razor.Generator.VBRazorCodeGenerator" /> class.</summary>
      <param name="className">The name of the class.</param>
      <param name="rootNamespaceName">The root namespace.</param>
      <param name="sourceFileName">The file name of the asset source.</param>
      <param name="host">The host.</param>
    </member>
    <member name="T:System.Web.Razor.Parser.BalancingModes">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Parser.BalancingModes.AllowCommentsAndTemplates">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Parser.BalancingModes.AllowEmbeddedTransitions">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Parser.BalancingModes.BacktrackOnFailure">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Parser.BalancingModes.NoErrorOnFailure">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Parser.BalancingModes.None">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="T:System.Web.Razor.Parser.CallbackVisitor">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Represents a visitor that executes a callback upon the completion of a visit.</summary>
    </member>
    <member name="M:System.Web.Razor.Parser.CallbackVisitor.#ctor(System.Action{System.Web.Razor.Parser.SyntaxTree.Span})">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Initializes a new instance of the <see cref="T:System.Web.Razor.Parser.CallbackVisitor" /> class.</summary>
      <param name="spanCallback">The delegate for the span visit.</param>
    </member>
    <member name="M:System.Web.Razor.Parser.CallbackVisitor.#ctor(System.Action{System.Web.Razor.Parser.SyntaxTree.Span},System.Action{System.Web.Razor.Parser.SyntaxTree.RazorError})">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Initializes a new instance of the <see cref="T:System.Web.Razor.Parser.CallbackVisitor" /> class.</summary>
      <param name="spanCallback">The delegate for the span visit.</param>
      <param name="errorCallback">The delegate for the error visit.</param>
    </member>
    <member name="M:System.Web.Razor.Parser.CallbackVisitor.#ctor(System.Action{System.Web.Razor.Parser.SyntaxTree.Span},System.Action{System.Web.Razor.Parser.SyntaxTree.RazorError},System.Action{System.Web.Razor.Parser.SyntaxTree.BlockType},System.Action{System.Web.Razor.Parser.SyntaxTree.BlockType})">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Initializes a new instance of the <see cref="T:System.Web.Razor.Parser.CallbackVisitor" /> class.</summary>
      <param name="spanCallback">The delegate for the span visit.</param>
      <param name="errorCallback">The delegate for the error visit.</param>
      <param name="startBlockCallback">The delegate for the start block visit.</param>
      <param name="endBlockCallback">The delegate for the end block visit.</param>
    </member>
    <member name="M:System.Web.Razor.Parser.CallbackVisitor.#ctor(System.Action{System.Web.Razor.Parser.SyntaxTree.Span},System.Action{System.Web.Razor.Parser.SyntaxTree.RazorError},System.Action{System.Web.Razor.Parser.SyntaxTree.BlockType},System.Action{System.Web.Razor.Parser.SyntaxTree.BlockType},System.Action)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Initializes a new instance of the <see cref="T:System.Web.Razor.Parser.CallbackVisitor" /> class.</summary>
      <param name="spanCallback">The delegate for the span visit.</param>
      <param name="errorCallback">The delegate for the error visit.</param>
      <param name="startBlockCallback">The delegate for the start block visit.</param>
      <param name="endBlockCallback">The delegate for the end block visit.</param>
      <param name="completeCallback">The delegate to execute for the complete event.</param>
    </member>
    <member name="M:System.Web.Razor.Parser.CallbackVisitor.OnComplete">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. </summary>
    </member>
    <member name="P:System.Web.Razor.Parser.CallbackVisitor.SynchronizationContext">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Gets or sets the synchronization context for this callback visitor.</summary>
      <returns>The synchronization context for this callback visitor.</returns>
    </member>
    <member name="M:System.Web.Razor.Parser.CallbackVisitor.VisitEndBlock(System.Web.Razor.Parser.SyntaxTree.Block)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Executes the visitor callback to visit the end block.</summary>
      <param name="block">The end block to visit.</param>
    </member>
    <member name="M:System.Web.Razor.Parser.CallbackVisitor.VisitError(System.Web.Razor.Parser.SyntaxTree.RazorError)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Executes the visitor callback to visit the error.</summary>
      <param name="err">The Razor error to visit.</param>
    </member>
    <member name="M:System.Web.Razor.Parser.CallbackVisitor.VisitSpan(System.Web.Razor.Parser.SyntaxTree.Span)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Executes the visitor callback to visit the span.</summary>
      <param name="span">The span to visit.</param>
    </member>
    <member name="M:System.Web.Razor.Parser.CallbackVisitor.VisitStartBlock(System.Web.Razor.Parser.SyntaxTree.Block)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Executes the visitor callback to visit the start block.</summary>
      <param name="block">The start block to visit.</param>
    </member>
    <member name="T:System.Web.Razor.Parser.CSharpCodeParser">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Represents a C sharp code parser.</summary>
    </member>
    <member name="M:System.Web.Razor.Parser.CSharpCodeParser.#ctor">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Initializes a new instance of the <see cref="T:System.Web.Razor.Parser.CSharpCodeParser" /> class.</summary>
    </member>
    <member name="M:System.Web.Razor.Parser.CSharpCodeParser.AcceptIf(System.Web.Razor.Tokenizer.Symbols.CSharpKeyword)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Determines whether the parser accepts the ‘IF’ keyword.</summary>
      <returns>true if the parser accepts the ‘IF’ keyword; otherwise, false.</returns>
      <param name="keyword">The keyword to accept.</param>
    </member>
    <member name="M:System.Web.Razor.Parser.CSharpCodeParser.AssertDirective(System.String)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Asserts a directive code.</summary>
      <param name="directive">The directive code to assert.</param>
    </member>
    <member name="M:System.Web.Razor.Parser.CSharpCodeParser.At(System.Web.Razor.Tokenizer.Symbols.CSharpKeyword)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Determines whether the code contains ‘AT’ keyword.</summary>
      <returns>true if the code contains ‘AT’ keyword; otherwise, false.</returns>
      <param name="keyword">The keyword.</param>
    </member>
    <member name="M:System.Web.Razor.Parser.CSharpCodeParser.BaseTypeDirective(System.String,System.Func{System.String,System.Web.Razor.Generator.SpanCodeGenerator})">
      <summary>Indicates the base type directive.</summary>
      <param name="noTypeNameError">The no type name error.</param>
      <param name="createCodeGenerator">The create code generator.</param>
    </member>
    <member name="M:System.Web.Razor.Parser.CSharpCodeParser.FunctionsDirective">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Indicates the functions directive.</summary>
    </member>
    <member name="M:System.Web.Razor.Parser.CSharpCodeParser.HandleEmbeddedTransition">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Indicates the code that handles embedded transition.</summary>
    </member>
    <member name="M:System.Web.Razor.Parser.CSharpCodeParser.HelperDirective">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Indicates a helper directive.</summary>
    </member>
    <member name="M:System.Web.Razor.Parser.CSharpCodeParser.InheritsDirective">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Indicates which class the application will derive the view from, and can therefore ensure proper type checking.</summary>
    </member>
    <member name="M:System.Web.Razor.Parser.CSharpCodeParser.InheritsDirectiveCore">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Inherits a directive core.</summary>
    </member>
    <member name="M:System.Web.Razor.Parser.CSharpCodeParser.IsAtEmbeddedTransition(System.Boolean,System.Boolean)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Determines whether the code is at embedded transition.</summary>
      <returns>true if the code is at embedded transition; otherwise, false.</returns>
      <param name="allowTemplatesAndComments">true to allow templates and comments; otherwise, false.</param>
      <param name="allowTransitions">true to allow transitions; otherwise, false.</param>
    </member>
    <member name="P:System.Web.Razor.Parser.CSharpCodeParser.IsNested">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets or sets a value that indicates whether the code is nested.</summary>
      <returns>true if the code is nested; otherwise, false.</returns>
    </member>
    <member name="M:System.Web.Razor.Parser.CSharpCodeParser.IsSpacingToken(System.Boolean,System.Boolean)">
      <summary>Indicates whether the lines and comments is spacing token.</summary>
      <returns>The function that indicates the spacing token.</returns>
      <param name="includeNewLines">true to include new lines; otherwise, false.</param>
      <param name="includeComments">true to include comments; otherwise, false.</param>
    </member>
    <member name="P:System.Web.Razor.Parser.CSharpCodeParser.Keywords">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets or sets the C sharp language keywords.</summary>
      <returns>The C sharp language keywords.</returns>
    </member>
    <member name="P:System.Web.Razor.Parser.CSharpCodeParser.Language">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets the specific language for parsing.</summary>
      <returns>The specific language for parsing.</returns>
    </member>
    <member name="M:System.Web.Razor.Parser.CSharpCodeParser.LayoutDirective">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Indicates the layout directive.</summary>
    </member>
    <member name="M:System.Web.Razor.Parser.CSharpCodeParser.MapDirectives(System.Action,System.String[])">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Maps the given directives.</summary>
      <param name="handler">The handler.</param>
      <param name="directives">The directives.</param>
    </member>
    <member name="P:System.Web.Razor.Parser.CSharpCodeParser.OtherParser">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets the other parser used for the code.</summary>
      <returns>The other parser used for the code.</returns>
    </member>
    <member name="M:System.Web.Razor.Parser.CSharpCodeParser.OutputSpanBeforeRazorComment">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Spans the output of the parsing before the comment.</summary>
    </member>
    <member name="M:System.Web.Razor.Parser.CSharpCodeParser.ParseBlock">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Blocks the parsing.</summary>
    </member>
    <member name="M:System.Web.Razor.Parser.CSharpCodeParser.ReservedDirective(System.Boolean)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Indicates the reserved directive.</summary>
      <param name="topLevel">Determines whether the directive is a top level.</param>
    </member>
    <member name="M:System.Web.Razor.Parser.CSharpCodeParser.SectionDirective">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Indicates a section directive.</summary>
    </member>
    <member name="M:System.Web.Razor.Parser.CSharpCodeParser.SessionStateDirective">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Indicates a session state directive.</summary>
    </member>
    <member name="M:System.Web.Razor.Parser.CSharpCodeParser.SessionStateDirectiveCore">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Indicates the session state directive core.</summary>
    </member>
    <member name="M:System.Web.Razor.Parser.CSharpCodeParser.SessionStateTypeDirective(System.String,System.Func{System.String,System.String,System.Web.Razor.Generator.SpanCodeGenerator})">
      <summary>Indicates the directive for session state type.</summary>
      <param name="noValueError">The no value error.</param>
      <param name="createCodeGenerator">The create code generator.</param>
    </member>
    <member name="M:System.Web.Razor.Parser.CSharpCodeParser.TryGetDirectiveHandler(System.String,System.Action@)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets a directive handler.</summary>
      <returns>true if successful; otherwise, false.</returns>
      <param name="directive">The directive.</param>
      <param name="handler">The handler.</param>
    </member>
    <member name="M:System.Web.Razor.Parser.CSharpCodeParser.ValidSessionStateValue">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Determines whether the value of the session state is valid.</summary>
      <returns>true if the value of the session state is valid; otherwise, false.</returns>
    </member>
    <member name="T:System.Web.Razor.Parser.CSharpCodeParser.Block">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Represents the block for this CSharpCode parser.</summary>
    </member>
    <member name="M:System.Web.Razor.Parser.CSharpCodeParser.Block.#ctor(System.String,System.Web.Razor.Text.SourceLocation)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Initializes a new instance of the <see cref="T:System.Web.Razor.Parser.CSharpCodeParser.Block" /> class.</summary>
      <param name="name">The string name.</param>
      <param name="start">The start of the source location.</param>
    </member>
    <member name="M:System.Web.Razor.Parser.CSharpCodeParser.Block.#ctor(System.Web.Razor.Tokenizer.Symbols.CSharpSymbol)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Initializes a new instance of the <see cref="T:System.Web.Razor.Parser.CSharpCodeParser.Block" /> class.</summary>
      <param name="symbol">The CSharp symbol.</param>
    </member>
    <member name="P:System.Web.Razor.Parser.CSharpCodeParser.Block.Name">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets or sets the string name for the block.</summary>
      <returns>The string name for the block.</returns>
    </member>
    <member name="P:System.Web.Razor.Parser.CSharpCodeParser.Block.Start">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets or sets the source location to start the block.</summary>
      <returns>The source location to start the block.</returns>
    </member>
    <member name="T:System.Web.Razor.Parser.CSharpLanguageCharacteristics">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Represents the different language characteristics in a CSharp language.</summary>
    </member>
    <member name="M:System.Web.Razor.Parser.CSharpLanguageCharacteristics.CreateMarkerSymbol(System.Web.Razor.Text.SourceLocation)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Creates a marker symbol in the code.</summary>
      <returns>A marker symbol in the code.</returns>
      <param name="location">The source location.</param>
    </member>
    <member name="M:System.Web.Razor.Parser.CSharpLanguageCharacteristics.CreateSymbol(System.Web.Razor.Text.SourceLocation,System.String,System.Web.Razor.Tokenizer.Symbols.CSharpSymbolType,System.Collections.Generic.IEnumerable{System.Web.Razor.Parser.SyntaxTree.RazorError})">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Creates a symbol in the code.</summary>
      <returns>A symbol in the code.</returns>
      <param name="location">The source location.</param>
      <param name="content">The content value.</param>
      <param name="type">The html symbol type.</param>
      <param name="errors">List of errors.</param>
    </member>
    <member name="M:System.Web.Razor.Parser.CSharpLanguageCharacteristics.CreateTokenizer(System.Web.Razor.Text.ITextDocument)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Creates a language tokenizer.</summary>
      <returns>A language tokenizer.</returns>
      <param name="source">The source of the text document.</param>
    </member>
    <member name="M:System.Web.Razor.Parser.CSharpLanguageCharacteristics.FlipBracket(System.Web.Razor.Tokenizer.Symbols.CSharpSymbolType)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Flips the bracket symbol in the code.</summary>
      <returns>The bracket symbol in the code.</returns>
      <param name="bracket">The symbol bracket.</param>
    </member>
    <member name="M:System.Web.Razor.Parser.CSharpLanguageCharacteristics.GetKeyword(System.Web.Razor.Tokenizer.Symbols.CSharpKeyword)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets the keyword in the code.</summary>
      <returns>The keyword in the code.</returns>
      <param name="keyword">The keyword.</param>
    </member>
    <member name="M:System.Web.Razor.Parser.CSharpLanguageCharacteristics.GetKnownSymbolType(System.Web.Razor.Tokenizer.Symbols.KnownSymbolType)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets the <see cref="T:System.Web.Razor.Parser.CSharpLanguageCharacteristics" /> in the code.</summary>
      <returns>The <see cref="T:System.Web.Razor.Parser.CSharpLanguageCharacteristics" /> in the code.</returns>
      <param name="type">The <see cref="T:System.Web.Razor.Tokenizer.Symbols.KnownSymbolType" />.</param>
    </member>
    <member name="M:System.Web.Razor.Parser.CSharpLanguageCharacteristics.GetSample(System.Web.Razor.Tokenizer.Symbols.CSharpSymbolType)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets a sample symbol in the code.</summary>
      <returns>A sample symbol in the code.</returns>
      <param name="type">The <see cref="T:System.Web.Razor.Tokenizer.Symbols.HtmlSymbolType" />.</param>
    </member>
    <member name="M:System.Web.Razor.Parser.CSharpLanguageCharacteristics.GetSymbolSample(System.Web.Razor.Tokenizer.Symbols.CSharpSymbolType)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets a sample symbol in the code.</summary>
      <returns>A sample symbol in the code.</returns>
      <param name="type">The <see cref="T:System.Web.Razor.Tokenizer.Symbols.HtmlSymbolType" />.</param>
    </member>
    <member name="P:System.Web.Razor.Parser.CSharpLanguageCharacteristics.Instance">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets the instance for the <see cref="T:System.Web.Razor.Parser.CSharpLanguageCharacteristics" /> class.</summary>
      <returns>The instance for the <see cref="T:System.Web.Razor.Parser.CSharpLanguageCharacteristics" /> class.</returns>
    </member>
    <member name="T:System.Web.Razor.Parser.HtmlLanguageCharacteristics">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Represents the different language characteristics in an html.</summary>
    </member>
    <member name="M:System.Web.Razor.Parser.HtmlLanguageCharacteristics.CreateMarkerSymbol(System.Web.Razor.Text.SourceLocation)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Creates a marker symbol in the Html.</summary>
      <returns>A marker symbol in the Html.</returns>
      <param name="location">The source location.</param>
    </member>
    <member name="M:System.Web.Razor.Parser.HtmlLanguageCharacteristics.CreateSymbol(System.Web.Razor.Text.SourceLocation,System.String,System.Web.Razor.Tokenizer.Symbols.HtmlSymbolType,System.Collections.Generic.IEnumerable{System.Web.Razor.Parser.SyntaxTree.RazorError})">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Creates a symbol in the Html.</summary>
      <returns>A symbol in the Html.</returns>
      <param name="location">The source location.</param>
      <param name="content">The content value.</param>
      <param name="type">The html symbol type.</param>
      <param name="errors">List of errors.</param>
    </member>
    <member name="M:System.Web.Razor.Parser.HtmlLanguageCharacteristics.CreateTokenizer(System.Web.Razor.Text.ITextDocument)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Creates an html tokenizer.</summary>
      <returns>An html tokenizer.</returns>
      <param name="source">The source of the text document.</param>
    </member>
    <member name="M:System.Web.Razor.Parser.HtmlLanguageCharacteristics.FlipBracket(System.Web.Razor.Tokenizer.Symbols.HtmlSymbolType)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Flips the bracket symbol in the html.</summary>
      <returns>The bracket symbol in the html.</returns>
      <param name="bracket">The symbol bracket.</param>
    </member>
    <member name="M:System.Web.Razor.Parser.HtmlLanguageCharacteristics.GetKnownSymbolType(System.Web.Razor.Tokenizer.Symbols.KnownSymbolType)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets the <see cref="T:System.Web.Razor.Tokenizer.Symbols.KnownSymbolType" /> in the html.</summary>
      <returns>The <see cref="T:System.Web.Razor.Tokenizer.Symbols.KnownSymbolType" /> in the html.</returns>
      <param name="type">The <see cref="T:System.Web.Razor.Tokenizer.Symbols.KnownSymbolType" />.</param>
    </member>
    <member name="M:System.Web.Razor.Parser.HtmlLanguageCharacteristics.GetSample(System.Web.Razor.Tokenizer.Symbols.HtmlSymbolType)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets a sample symbol in the html.</summary>
      <returns>A sample symbol in the html.</returns>
      <param name="type">The <see cref="T:System.Web.Razor.Tokenizer.Symbols.HtmlSymbolType" />.</param>
    </member>
    <member name="P:System.Web.Razor.Parser.HtmlLanguageCharacteristics.Instance">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets the instance for the <see cref="T:System.Web.Razor.Parser.HtmlLanguageCharacteristics" /> class.</summary>
      <returns>The instance for the <see cref="T:System.Web.Razor.Parser.HtmlLanguageCharacteristics" /> class.</returns>
    </member>
    <member name="T:System.Web.Razor.Parser.HtmlMarkupParser">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Represents a parser specifically for parsing HTML markup.</summary>
    </member>
    <member name="M:System.Web.Razor.Parser.HtmlMarkupParser.#ctor">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Initializes a new instance of the <see cref="T:System.Web.Razor.Parser.HtmlMarkupParser" /> class.</summary>
    </member>
    <member name="M:System.Web.Razor.Parser.HtmlMarkupParser.BuildSpan(System.Web.Razor.Parser.SyntaxTree.SpanBuilder,System.Web.Razor.Text.SourceLocation,System.String)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Builds the span for the given content using the specified span builder.</summary>
      <param name="span">The span builder used to build the span.</param>
      <param name="start">The start location.</param>
      <param name="content">The span content.</param>
    </member>
    <member name="M:System.Web.Razor.Parser.HtmlMarkupParser.IsSpacingToken(System.Boolean)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Returns the function delegate used to determine the token used for HTML spacing.</summary>
      <returns>The function delegate used to determine the token used for HTML spacing.</returns>
      <param name="includeNewLines">true to indicate that new lines are considered as spacing token; otherwise, false.</param>
    </member>
    <member name="P:System.Web.Razor.Parser.HtmlMarkupParser.Language">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Gets the instance that defines the characteristics of HTML language.</summary>
      <returns>The instance that defines the characteristics of HTML language.</returns>
    </member>
    <member name="P:System.Web.Razor.Parser.HtmlMarkupParser.OtherParser">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Gets the other parser for parsing HTML markup.</summary>
      <returns>The other parser for parsing HTML markup.</returns>
    </member>
    <member name="M:System.Web.Razor.Parser.HtmlMarkupParser.OutputSpanBeforeRazorComment">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Builds the span before the Razor comment.</summary>
    </member>
    <member name="M:System.Web.Razor.Parser.HtmlMarkupParser.ParseBlock">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Parses the next HTML block.</summary>
    </member>
    <member name="M:System.Web.Razor.Parser.HtmlMarkupParser.ParseDocument">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Parses the HTML document.</summary>
    </member>
    <member name="M:System.Web.Razor.Parser.HtmlMarkupParser.ParseSection(System.Tuple{System.String,System.String},System.Boolean)">
      <summary>Parses a section with markups given by the nesting sequences.</summary>
      <param name="nestingSequences">A tuple that specifies the markup nesting sequences.</param>
      <param name="caseSensitive">true to indicate case-sensitive parsing; otherwise, false.</param>
    </member>
    <member name="M:System.Web.Razor.Parser.HtmlMarkupParser.SkipToAndParseCode(System.Func{System.Web.Razor.Tokenizer.Symbols.HtmlSymbol,System.Boolean})">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Skips the parse until the specified condition is meet.</summary>
      <param name="condition">A function delegate that defines the condition.</param>
    </member>
    <member name="M:System.Web.Razor.Parser.HtmlMarkupParser.SkipToAndParseCode(System.Web.Razor.Tokenizer.Symbols.HtmlSymbolType)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Skips the parse until the specified HTML symbol type is encountered.</summary>
      <param name="type">The HTML symbol type.</param>
    </member>
    <member name="P:System.Web.Razor.Parser.HtmlMarkupParser.VoidElements">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Gets the HTML tags that are considered as void.</summary>
      <returns>The HTML tags that are considered as void.</returns>
    </member>
    <member name="T:System.Web.Razor.Parser.LanguageCharacteristics`3">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Provides methods that define the behavior of a Razor code language.</summary>
      <typeparam name="TTokenizer">The type of the code tokenizer for the Razor language.</typeparam>
      <typeparam name="TSymbol">The type for the language symbol.</typeparam>
      <typeparam name="TSymbolType">The enumeration type for the language symbol.</typeparam>
    </member>
    <member name="M:System.Web.Razor.Parser.LanguageCharacteristics`3.#ctor">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Initializes a new instance of the <see cref="T:System.Web.Razor.Parser.LanguageCharacteristics`3" /> class.</summary>
    </member>
    <member name="M:System.Web.Razor.Parser.LanguageCharacteristics`3.CreateMarkerSymbol(System.Web.Razor.Text.SourceLocation)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Creates a code language symbol with the specified source location as the start marker.</summary>
      <returns>The symbol for the code language.</returns>
      <param name="location">The source location as the start marker.</param>
    </member>
    <member name="M:System.Web.Razor.Parser.LanguageCharacteristics`3.CreateSymbol(System.Web.Razor.Text.SourceLocation,System.String,`2,System.Collections.Generic.IEnumerable{System.Web.Razor.Parser.SyntaxTree.RazorError})">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Creates a code language symbol with the specified source location with the specified source location as the start marker.</summary>
      <returns>The symbol for the code language.</returns>
      <param name="location">The source location as the start marker.</param>
      <param name="content">The content.</param>
      <param name="type">The enumeration type for the language symbol.</param>
      <param name="errors">The collection of error.</param>
    </member>
    <member name="M:System.Web.Razor.Parser.LanguageCharacteristics`3.CreateTokenizer(System.Web.Razor.Text.ITextDocument)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Creates a Razor code language tokenizer for the specified source document.</summary>
      <returns>A Razor code language tokenizer for the specified source document.</returns>
      <param name="source">The source document.</param>
    </member>
    <member name="M:System.Web.Razor.Parser.LanguageCharacteristics`3.FlipBracket(`2)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Returns the opposite bracket symbol for the specified bracket symbol.</summary>
      <returns>The opposite bracket symbol for the specified bracket symbol.</returns>
      <param name="bracket">The bracket symbol to flip.</param>
    </member>
    <member name="M:System.Web.Razor.Parser.LanguageCharacteristics`3.GetKnownSymbolType(System.Web.Razor.Tokenizer.Symbols.KnownSymbolType)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Gets the specific language symbol type for the given symbol type.</summary>
      <returns>The specific language symbol type for the given symbol type.</returns>
      <param name="type">The symbol type to get.</param>
    </member>
    <member name="M:System.Web.Razor.Parser.LanguageCharacteristics`3.GetSample(`2)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Gets the actual symbol for the given language symbol type.</summary>
      <returns>The actual symbol for the given language symbol type.</returns>
      <param name="type">The language symbol type to get.</param>
    </member>
    <member name="M:System.Web.Razor.Parser.LanguageCharacteristics`3.IsCommentBody(`1)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Determines whether the symbol is a comment body type.</summary>
      <returns>true if the symbol is a comment body type; otherwise, false.</returns>
      <param name="symbol">The symbol to check.</param>
    </member>
    <member name="M:System.Web.Razor.Parser.LanguageCharacteristics`3.IsCommentStar(`1)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Determines whether the symbol is a comment star type.</summary>
      <returns>true if the symbol is a comment star type; otherwise, false.</returns>
      <param name="symbol">The symbol to check.</param>
    </member>
    <member name="M:System.Web.Razor.Parser.LanguageCharacteristics`3.IsCommentStart(`1)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Determines whether the symbol is a comment start type.</summary>
      <returns>true if the symbol is a comment start type; otherwise, false. </returns>
      <param name="symbol">The symbol to check.</param>
    </member>
    <member name="M:System.Web.Razor.Parser.LanguageCharacteristics`3.IsIdentifier(`1)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Determines whether the symbol is an identifier type.</summary>
      <returns>true if the symbol is an identifier type; otherwise, false.</returns>
      <param name="symbol">The symbol to check.</param>
    </member>
    <member name="M:System.Web.Razor.Parser.LanguageCharacteristics`3.IsKeyword(`1)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Determines whether the symbol is a keyword type.</summary>
      <returns>true if the symbol is a keyword type; otherwise, false.</returns>
      <param name="symbol">The symbol to check.</param>
    </member>
    <member name="M:System.Web.Razor.Parser.LanguageCharacteristics`3.IsKnownSymbolType(`1,System.Web.Razor.Tokenizer.Symbols.KnownSymbolType)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Determines whether the symbol type is a known symbol type.</summary>
      <returns>true if the symbol type is a known symbol type; otherwise, false.</returns>
      <param name="symbol">The symbol whose type is to be checked.</param>
      <param name="type">The known type of the symbol.</param>
    </member>
    <member name="M:System.Web.Razor.Parser.LanguageCharacteristics`3.IsNewLine(`1)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Determines whether the symbol is a new line type.</summary>
      <returns>true if the symbol is a new line type; otherwise, false.</returns>
      <param name="symbol">The symbol to check.</param>
    </member>
    <member name="M:System.Web.Razor.Parser.LanguageCharacteristics`3.IsTransition(`1)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Determines whether the symbol is a transition type.</summary>
      <returns>true if the symbol is a transition type; otherwise, false.</returns>
      <param name="symbol">The symbol to check.</param>
    </member>
    <member name="M:System.Web.Razor.Parser.LanguageCharacteristics`3.IsUnknown(`1)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Determines whether the symbol is an unknown type.</summary>
      <returns>true if the symbol is an unknown type; otherwise, false.</returns>
      <param name="symbol">The symbol to check.</param>
    </member>
    <member name="M:System.Web.Razor.Parser.LanguageCharacteristics`3.IsWhiteSpace(`1)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Determines whether the symbol is a whitespace type.</summary>
      <returns>true if the symbol is a whitespace type; otherwise, false.</returns>
      <param name="symbol">The symbol to check.</param>
    </member>
    <member name="M:System.Web.Razor.Parser.LanguageCharacteristics`3.KnowsSymbolType(System.Web.Razor.Tokenizer.Symbols.KnownSymbolType)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Determines whether the symbol is an unknown type.</summary>
      <returns>true if the symbol is an unknown type; otherwise, false.</returns>
      <param name="type">The known type of the symbol.</param>
    </member>
    <member name="M:System.Web.Razor.Parser.LanguageCharacteristics`3.SplitSymbol(`1,System.Int32,`2)">
      <summary>Splits the content of the code language symbol at the specified index.</summary>
      <returns>A tuple of code language symbol.</returns>
      <param name="symbol">The symbol whose content is to be splitted.</param>
      <param name="splitAt">The index where the split occurs.</param>
      <param name="leftType">The enumeration type for the language symbol.</param>
    </member>
    <member name="M:System.Web.Razor.Parser.LanguageCharacteristics`3.TokenizeString(System.String)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Splits the specified string into tokens.</summary>
      <returns>The collection of token.</returns>
      <param name="content">The string to tokenize.</param>
    </member>
    <member name="M:System.Web.Razor.Parser.LanguageCharacteristics`3.TokenizeString(System.Web.Razor.Text.SourceLocation,System.String)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Splits the specified string into tokens.</summary>
      <returns>The collection of token.</returns>
      <param name="start">The source location as the start marker for the tokenizer.</param>
      <param name="input">The string to tokenize.</param>
    </member>
    <member name="T:System.Web.Razor.Parser.ParserBase">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Represents the parser base class for the razor.</summary>
    </member>
    <member name="M:System.Web.Razor.Parser.ParserBase.#ctor">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Initializes a new instance of the <see cref="T:System.Web.Razor.Parser.ParserBase" /> class.</summary>
    </member>
    <member name="M:System.Web.Razor.Parser.ParserBase.BuildSpan(System.Web.Razor.Parser.SyntaxTree.SpanBuilder,System.Web.Razor.Text.SourceLocation,System.String)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Builds a span for the parser base.</summary>
      <param name="span">The span builder.</param>
      <param name="start">The beginning of the source location.</param>
      <param name="content">The content.</param>
    </member>
    <member name="P:System.Web.Razor.Parser.ParserBase.Context">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets or sets the <see cref="T:System.Web.Razor.Parser.ParserContext" />.</summary>
      <returns>The <see cref="T:System.Web.Razor.Parser.ParserContext" />.</returns>
    </member>
    <member name="P:System.Web.Razor.Parser.ParserBase.IsMarkupParser">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets a value that indicates whether the parser is a markup parser.</summary>
      <returns>true if the parser is a markup parser; otherwise, false.</returns>
    </member>
    <member name="P:System.Web.Razor.Parser.ParserBase.OtherParser">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets the other parser <see cref="T:System.Web.Razor.Parser.ParserBase" />.</summary>
      <returns>The other parser <see cref="T:System.Web.Razor.Parser.ParserBase" />.</returns>
    </member>
    <member name="M:System.Web.Razor.Parser.ParserBase.ParseBlock">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Blocks the parser.</summary>
    </member>
    <member name="M:System.Web.Razor.Parser.ParserBase.ParseDocument">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Creates documentation for the parse.</summary>
    </member>
    <member name="M:System.Web.Razor.Parser.ParserBase.ParseSection(System.Tuple{System.String,System.String},System.Boolean)">
      <summary>Parses the section in ordered list of the elements.</summary>
      <param name="nestingSequences">The pair of nesting sequences.</param>
      <param name="caseSensitive">true if the case is sensitive; otherwise, false.</param>
    </member>
    <member name="T:System.Web.Razor.Parser.ParserContext">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Represents a parser whose context can be switched to either a code or a markup.</summary>
    </member>
    <member name="M:System.Web.Razor.Parser.ParserContext.#ctor(System.Web.Razor.Text.ITextDocument,System.Web.Razor.Parser.ParserBase,System.Web.Razor.Parser.ParserBase,System.Web.Razor.Parser.ParserBase)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Initializes a new instance of the <see cref="T:System.Web.Razor.Parser.ParserContext" /> class.</summary>
      <param name="source">The source document.</param>
      <param name="codeParser">The code parser for the context.</param>
      <param name="markupParser">The markup parser for the context.</param>
      <param name="activeParser">The active parser for the context.</param>
    </member>
    <member name="P:System.Web.Razor.Parser.ParserContext.ActiveParser">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Gets or sets the active parser for the context.</summary>
      <returns>The active parser for the context.</returns>
    </member>
    <member name="M:System.Web.Razor.Parser.ParserContext.AddSpan(System.Web.Razor.Parser.SyntaxTree.Span)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Adds the specified span at the end of the block builder stack.</summary>
      <param name="span">The span to add.</param>
    </member>
    <member name="P:System.Web.Razor.Parser.ParserContext.CodeParser">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Gets or sets the code parser for the context.</summary>
      <returns>The code parser for the context.</returns>
    </member>
    <member name="M:System.Web.Razor.Parser.ParserContext.CompleteParse">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Parses the last span and returns the parse results that contain the newly built block.</summary>
      <returns>The parse results that contain the newly built block.</returns>
    </member>
    <member name="P:System.Web.Razor.Parser.ParserContext.CurrentBlock">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Gets the current block builder.</summary>
      <returns>The current block builder.</returns>
    </member>
    <member name="P:System.Web.Razor.Parser.ParserContext.CurrentCharacter">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Gets the current character available from the source.</summary>
      <returns>The current character available from the source.</returns>
    </member>
    <member name="P:System.Web.Razor.Parser.ParserContext.DesignTimeMode">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Gets or sets a value that indicates whether the parser is in design mode.</summary>
      <returns>true if the parser is in design mode; otherwise, false.</returns>
    </member>
    <member name="M:System.Web.Razor.Parser.ParserContext.EndBlock">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Creates an end block from the last item of the block builder stack. </summary>
    </member>
    <member name="P:System.Web.Razor.Parser.ParserContext.EndOfFile">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Gets a value that indicates whether the source status is end of file.</summary>
      <returns>true if the source status is end of file; otherwise, false.</returns>
    </member>
    <member name="P:System.Web.Razor.Parser.ParserContext.Errors">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Gets or sets the list of errors during parsing.</summary>
      <returns>The list of errors.</returns>
    </member>
    <member name="M:System.Web.Razor.Parser.ParserContext.IsWithin(System.Web.Razor.Parser.SyntaxTree.BlockType)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Determines whether the specified block type exists in the block builder list.</summary>
      <returns>true if the specified block type exists in the block builder list; otherwise, false.</returns>
      <param name="type">The block type to check.</param>
    </member>
    <member name="P:System.Web.Razor.Parser.ParserContext.LastAcceptedCharacters">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Gets the last accepted characters.</summary>
      <returns>One of the values of the <see cref="T:System.Web.Razor.Parser.SyntaxTree.AcceptedCharacters" /> enumeration.</returns>
    </member>
    <member name="P:System.Web.Razor.Parser.ParserContext.LastSpan">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Gets or sets the last span.</summary>
      <returns>The last span.</returns>
    </member>
    <member name="P:System.Web.Razor.Parser.ParserContext.MarkupParser">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Gets or sets the markup parser for the context.</summary>
      <returns>The markup parser for the context.</returns>
    </member>
    <member name="M:System.Web.Razor.Parser.ParserContext.OnError(System.Web.Razor.Text.SourceLocation,System.String)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Occurs when parse encountered error.</summary>
      <param name="location">The source location.</param>
      <param name="message">The error message.</param>
    </member>
    <member name="M:System.Web.Razor.Parser.ParserContext.OnError(System.Web.Razor.Text.SourceLocation,System.String,System.Object[])">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Occurs when parse encountered an error.</summary>
      <param name="location">The source location.</param>
      <param name="message">The error message.</param>
      <param name="args">The other information about the source location.</param>
    </member>
    <member name="P:System.Web.Razor.Parser.ParserContext.Source">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Gets or sets the text reader for the source document.</summary>
      <returns>The text reader for the source document.</returns>
    </member>
    <member name="M:System.Web.Razor.Parser.ParserContext.StartBlock">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Adds a new block builder at the end of the block builder stack and returns a disposable action that returns an end block.</summary>
      <returns>A disposable action that returns an end block.</returns>
    </member>
    <member name="M:System.Web.Razor.Parser.ParserContext.StartBlock(System.Web.Razor.Parser.SyntaxTree.BlockType)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Adds a new block builder at the end of the block builder stack and returns a disposable action that returns an end block.</summary>
      <returns>A disposable action that returns an end block.</returns>
      <param name="blockType">The type for the new block builder.</param>
    </member>
    <member name="M:System.Web.Razor.Parser.ParserContext.SwitchActiveParser">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Alternately switches the code parser or markup parser as the active parser.</summary>
    </member>
    <member name="P:System.Web.Razor.Parser.ParserContext.WhiteSpaceIsSignificantToAncestorBlock">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Gets or sets a value that indicates whether white space is significant to ancestor block.</summary>
      <returns>true is white space is significant to ancestor block; otherwise, false.</returns>
    </member>
    <member name="T:System.Web.Razor.Parser.ParserHelpers">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Provides helper methods for the parser.</summary>
    </member>
    <member name="M:System.Web.Razor.Parser.ParserHelpers.IsCombining(System.Char)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Determines whether the specified character value is a spacing combining mark or a non-spacing mark.</summary>
      <returns>true if the specified character value is a spacing combining mark or a non-spacing mark; otherwise, false.</returns>
      <param name="value">The value to check.</param>
    </member>
    <member name="M:System.Web.Razor.Parser.ParserHelpers.IsConnecting(System.Char)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Determines whether the specified character value is a connector punctuation.</summary>
      <returns>true if the specified character value is a connector punctuation; otherwise, false.</returns>
      <param name="value">The value to check.</param>
    </member>
    <member name="M:System.Web.Razor.Parser.ParserHelpers.IsDecimalDigit(System.Char)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Determines whether the specified character value is a decimal digit number.</summary>
      <returns>true if the specified character value is a decimal digit number; otherwise, false.</returns>
      <param name="value">The value to check.</param>
    </member>
    <member name="M:System.Web.Razor.Parser.ParserHelpers.IsEmailPart(System.Char)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Determines whether the specified character value is valid for use in email address.</summary>
      <returns>true if the specified character value is valid for use in email address; otherwise, false.</returns>
      <param name="character">The value to check.</param>
    </member>
    <member name="M:System.Web.Razor.Parser.ParserHelpers.IsFormatting(System.Char)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Determines whether the specified character value is used for formatting text layout or formatting text operation.</summary>
      <returns>true if the specified character value is used for formatting text layout or formatting text operation.; otherwise, false.</returns>
      <param name="value">The value to check.</param>
    </member>
    <member name="M:System.Web.Razor.Parser.ParserHelpers.IsHexDigit(System.Char)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Determines whether the specified character value is a hexadecimal digit number.</summary>
      <returns>true if the specified character is a hexadecimal digit number; otherwise, false.</returns>
      <param name="value">The value to check.</param>
    </member>
    <member name="M:System.Web.Razor.Parser.ParserHelpers.IsIdentifier(System.String)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Determines whether the specified string value is an identifier.</summary>
      <returns>true if the specified string value is an identifier; otherwise, false.</returns>
      <param name="value">The value to check.</param>
    </member>
    <member name="M:System.Web.Razor.Parser.ParserHelpers.IsIdentifier(System.String,System.Boolean)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Determines whether the specified string value is an identifier.</summary>
      <returns>true if the specified string value is an identifier; otherwise, false.</returns>
      <param name="value">The value to check.</param>
      <param name="requireIdentifierStart">true to require that the identifier starts with a letter or underscore (_); otherwise, false.</param>
    </member>
    <member name="M:System.Web.Razor.Parser.ParserHelpers.IsIdentifierPart(System.Char)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Determines whether the specified character value is valid for use in identifier.</summary>
      <returns>true if the specified character is valid for use in identifier; otherwise, false.</returns>
      <param name="value">The value to check.</param>
    </member>
    <member name="M:System.Web.Razor.Parser.ParserHelpers.IsIdentifierStart(System.Char)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Determines whether the specified character value is valid for use as start character of an identifier.</summary>
      <returns>true if the specified character value is valid for use as start character of an identifier; otherwise, false.</returns>
      <param name="value">The value to check.</param>
    </member>
    <member name="M:System.Web.Razor.Parser.ParserHelpers.IsLetter(System.Char)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Determines whether the specified character value is a letter.</summary>
      <returns>true if the specified character is a letter; otherwise, false.</returns>
      <param name="value">The value to check.</param>
    </member>
    <member name="M:System.Web.Razor.Parser.ParserHelpers.IsLetterOrDecimalDigit(System.Char)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Determines whether the specified character value is a letter or a decimal digit number.</summary>
      <returns>true if the specified character is a letter or a decimal digit number; otherwise, false.</returns>
      <param name="value">The value to check.</param>
    </member>
    <member name="M:System.Web.Razor.Parser.ParserHelpers.IsNewLine(System.Char)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Determines whether the specified value is a newline.</summary>
      <returns>true if the specified character is a newline; otherwise, false.</returns>
      <param name="value">The value to check.</param>
    </member>
    <member name="M:System.Web.Razor.Parser.ParserHelpers.IsNewLine(System.String)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Determines whether the specified value is a newline.</summary>
      <returns>true if the specified character is a newline; otherwise, false.</returns>
      <param name="value">The value to check.</param>
    </member>
    <member name="M:System.Web.Razor.Parser.ParserHelpers.IsTerminatingCharToken(System.Char)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Determines whether the specified character value is a terminating character token.</summary>
      <returns>true if the specified character value is a terminating character token; otherwise, false.</returns>
      <param name="value">The value to check.</param>
    </member>
    <member name="M:System.Web.Razor.Parser.ParserHelpers.IsTerminatingQuotedStringToken(System.Char)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Determines whether the specified character value is a terminating quoted string.</summary>
      <returns>true if the specified character value is a terminating quoted string; otherwise, false.</returns>
      <param name="value">The value to check.</param>
    </member>
    <member name="M:System.Web.Razor.Parser.ParserHelpers.IsWhitespace(System.Char)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Determines whether the specified character value is a whitespace.</summary>
      <returns>true if the specified character value is a whitespace; otherwise, false.</returns>
      <param name="value">The value to check.</param>
    </member>
    <member name="M:System.Web.Razor.Parser.ParserHelpers.IsWhitespaceOrNewLine(System.Char)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Determines whether the specified character value is a whitespace or newline.</summary>
      <returns>true if the specified character value is a whitespace or newline; otherwise, false.</returns>
      <param name="value">The value to check.</param>
    </member>
    <member name="M:System.Web.Razor.Parser.ParserHelpers.SanitizeClassName(System.String)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Sanitizes the specified input name to conform as a valid value for class name.</summary>
      <returns>The sanitized class name.</returns>
      <param name="inputName">The value to check.</param>
    </member>
    <member name="T:System.Web.Razor.Parser.ParserVisitor">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Represents a parser visitor.</summary>
    </member>
    <member name="M:System.Web.Razor.Parser.ParserVisitor.#ctor">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Initializes a new instance of the <see cref="T:System.Web.Razor.Parser.ParserVisitor" /> class.</summary>
    </member>
    <member name="P:System.Web.Razor.Parser.ParserVisitor.CancelToken">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets or sets the cancellation token.</summary>
      <returns>The cancellation token.</returns>
    </member>
    <member name="M:System.Web.Razor.Parser.ParserVisitor.OnComplete">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Indicates that a visitor method has completed execution.</summary>
    </member>
    <member name="M:System.Web.Razor.Parser.ParserVisitor.ThrowIfCanceled">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="M:System.Web.Razor.Parser.ParserVisitor.VisitBlock(System.Web.Razor.Parser.SyntaxTree.Block)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Visits the specified block.</summary>
      <param name="block">The block to visit.</param>
    </member>
    <member name="M:System.Web.Razor.Parser.ParserVisitor.VisitEndBlock(System.Web.Razor.Parser.SyntaxTree.Block)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Visits the specified black after parsing.</summary>
      <param name="block">The block to visit.</param>
    </member>
    <member name="M:System.Web.Razor.Parser.ParserVisitor.VisitError(System.Web.Razor.Parser.SyntaxTree.RazorError)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Visits the given razor error.</summary>
      <param name="err">The error to visit.</param>
    </member>
    <member name="M:System.Web.Razor.Parser.ParserVisitor.VisitSpan(System.Web.Razor.Parser.SyntaxTree.Span)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Visits the specified span.</summary>
      <param name="span">The span to visit.</param>
    </member>
    <member name="M:System.Web.Razor.Parser.ParserVisitor.VisitStartBlock(System.Web.Razor.Parser.SyntaxTree.Block)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Visits the specified block before parsing.</summary>
      <param name="block">The block to visit.</param>
    </member>
    <member name="T:System.Web.Razor.Parser.ParserVisitorExtensions">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Provides extension methods for parser visitor.</summary>
    </member>
    <member name="M:System.Web.Razor.Parser.ParserVisitorExtensions.Visit(System.Web.Razor.Parser.ParserVisitor,System.Web.Razor.ParserResults)"></member>
    <member name="T:System.Web.Razor.Parser.RazorParser">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Represents a Razor parser.</summary>
    </member>
    <member name="M:System.Web.Razor.Parser.RazorParser.#ctor(System.Web.Razor.Parser.ParserBase,System.Web.Razor.Parser.ParserBase)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Initializes a new instance of the <see cref="T:System.Web.Razor.Parser.RazorParser" /> class.</summary>
      <param name="codeParser">The code parser.</param>
      <param name="markupParser">The markup parser.</param>
    </member>
    <member name="M:System.Web.Razor.Parser.RazorParser.CreateParseTask(System.IO.TextReader,System.Action{System.Web.Razor.Parser.SyntaxTree.Span},System.Action{System.Web.Razor.Parser.SyntaxTree.RazorError})">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Creates a task that parses a specified object.</summary>
      <returns>The created <see cref="T:System.Threading.Tasks.Task" />.</returns>
      <param name="input">The object to parse.</param>
      <param name="spanCallback">The span callback.</param>
      <param name="errorCallback">The error callback.</param>
    </member>
    <member name="M:System.Web.Razor.Parser.RazorParser.CreateParseTask(System.IO.TextReader,System.Action{System.Web.Razor.Parser.SyntaxTree.Span},System.Action{System.Web.Razor.Parser.SyntaxTree.RazorError},System.Threading.CancellationToken)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Creates a task that parses a specified object.</summary>
      <returns>The created <see cref="T:System.Threading.Tasks.Task" />.</returns>
      <param name="input">The object to parse.</param>
      <param name="spanCallback">The span callback.</param>
      <param name="errorCallback">The error callback.</param>
      <param name="cancelToken">The cancellation token.</param>
    </member>
    <member name="M:System.Web.Razor.Parser.RazorParser.CreateParseTask(System.IO.TextReader,System.Action{System.Web.Razor.Parser.SyntaxTree.Span},System.Action{System.Web.Razor.Parser.SyntaxTree.RazorError},System.Threading.SynchronizationContext)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Creates a task that parses a specified object.</summary>
      <returns>The created <see cref="T:System.Threading.Tasks.Task" />.</returns>
      <param name="input">The object to parse.</param>
      <param name="spanCallback">The span callback.</param>
      <param name="errorCallback">The error callback.</param>
      <param name="context">The context.</param>
    </member>
    <member name="M:System.Web.Razor.Parser.RazorParser.CreateParseTask(System.IO.TextReader,System.Action{System.Web.Razor.Parser.SyntaxTree.Span},System.Action{System.Web.Razor.Parser.SyntaxTree.RazorError},System.Threading.SynchronizationContext,System.Threading.CancellationToken)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Creates a task that parses a specified object.</summary>
      <returns>The created <see cref="T:System.Threading.Tasks.Task" />.</returns>
      <param name="input">The object to parse.</param>
      <param name="spanCallback">The span callback.</param>
      <param name="errorCallback">The error callback.</param>
      <param name="context">The context.</param>
      <param name="cancelToken">The cancellation token.</param>
    </member>
    <member name="M:System.Web.Razor.Parser.RazorParser.CreateParseTask(System.IO.TextReader,System.Web.Razor.Parser.ParserVisitor)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Creates a task that parses a specified object.</summary>
      <returns>The created <see cref="T:System.Threading.Tasks.Task" />.</returns>
      <param name="input">The object to parse.</param>
      <param name="consumer">The consumer.</param>
    </member>
    <member name="P:System.Web.Razor.Parser.RazorParser.DesignTimeMode">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets the design time mode.</summary>
      <returns>The design time mode.</returns>
    </member>
    <member name="M:System.Web.Razor.Parser.RazorParser.Parse(System.IO.TextReader)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Parses the specified object.</summary>
      <returns>The parser result.</returns>
      <param name="input">The object to parse.</param>
    </member>
    <member name="M:System.Web.Razor.Parser.RazorParser.Parse(System.IO.TextReader,System.Web.Razor.Parser.ParserVisitor)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Parses the specified object.</summary>
      <param name="input">The object to parse.</param>
      <param name="visitor">The visitor.</param>
    </member>
    <member name="M:System.Web.Razor.Parser.RazorParser.Parse(System.Web.Razor.Text.ITextDocument)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Parses the specified object.</summary>
      <returns>The parser result.</returns>
      <param name="input">The object to parse.</param>
    </member>
    <member name="M:System.Web.Razor.Parser.RazorParser.Parse(System.Web.Razor.Text.LookaheadTextReader)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Parses the specified object.</summary>
      <returns>The parser result.</returns>
      <param name="input">The object to parse.</param>
    </member>
    <member name="M:System.Web.Razor.Parser.RazorParser.Parse(System.Web.Razor.Text.LookaheadTextReader,System.Web.Razor.Parser.ParserVisitor)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Parses the specified object.</summary>
      <param name="input">The object to parse.</param>
      <param name="visitor">The visitor.</param>
    </member>
    <member name="T:System.Web.Razor.Parser.SyntaxConstants">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Parser.SyntaxConstants.EndCommentSequence">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Parser.SyntaxConstants.StartCommentSequence">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Parser.SyntaxConstants.TextTagName">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Parser.SyntaxConstants.TransitionCharacter">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Parser.SyntaxConstants.TransitionString">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="T:System.Web.Razor.Parser.SyntaxConstants.CSharp">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Parser.SyntaxConstants.CSharp.ClassKeyword">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Parser.SyntaxConstants.CSharp.ElseIfKeyword">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Parser.SyntaxConstants.CSharp.FunctionsKeyword">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Parser.SyntaxConstants.CSharp.HelperKeyword">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Parser.SyntaxConstants.CSharp.InheritsKeyword">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Parser.SyntaxConstants.CSharp.LayoutKeyword">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Parser.SyntaxConstants.CSharp.NamespaceKeyword">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Parser.SyntaxConstants.CSharp.SectionKeyword">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Parser.SyntaxConstants.CSharp.SessionStateKeyword">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Parser.SyntaxConstants.CSharp.UsingKeywordLength">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="T:System.Web.Razor.Parser.SyntaxConstants.VB">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Parser.SyntaxConstants.VB.CodeKeyword">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Parser.SyntaxConstants.VB.EndCodeKeyword">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Parser.SyntaxConstants.VB.EndFunctionsKeyword">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Parser.SyntaxConstants.VB.EndHelperKeyword">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Parser.SyntaxConstants.VB.EndKeyword">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Parser.SyntaxConstants.VB.EndSectionKeyword">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Parser.SyntaxConstants.VB.ExplicitKeyword">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Parser.SyntaxConstants.VB.FunctionsKeyword">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Parser.SyntaxConstants.VB.HelperKeyword">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Parser.SyntaxConstants.VB.ImportsKeywordLength">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Parser.SyntaxConstants.VB.LayoutKeyword">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Parser.SyntaxConstants.VB.OffKeyword">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Parser.SyntaxConstants.VB.SectionKeyword">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Parser.SyntaxConstants.VB.SelectCaseKeyword">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Parser.SyntaxConstants.VB.SessionStateKeyword">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Parser.SyntaxConstants.VB.StrictKeyword">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="T:System.Web.Razor.Parser.TokenizerBackedParser`3">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Represents a tokenizer backed parser.</summary>
      <typeparam name="TTokenizer">The type of tokenizer.</typeparam>
      <typeparam name="TSymbol">The type of symbol.</typeparam>
      <typeparam name="TSymbolType">The type of SymbolType.</typeparam>
    </member>
    <member name="M:System.Web.Razor.Parser.TokenizerBackedParser`3.#ctor">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Initializes a new instance of the <see cref="T:System.Web.Razor.Parser.TokenizerBackedParser`3" /> class.</summary>
    </member>
    <member name="M:System.Web.Razor.Parser.TokenizerBackedParser`3.Accept(System.Collections.Generic.IEnumerable{`1})">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Accepts the list of symbols</summary>
      <param name="symbols">The list of symbols.</param>
    </member>
    <member name="M:System.Web.Razor.Parser.TokenizerBackedParser`3.Accept(`1)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Accepts the specified symbol.</summary>
      <param name="symbol">The symbol to accept.</param>
    </member>
    <member name="M:System.Web.Razor.Parser.TokenizerBackedParser`3.AcceptAll(`2[])">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Determines whether the parser accepts all types of tokenizer.</summary>
      <returns>true of the parser accepts all types of tokenizer; otherwise, false.</returns>
      <param name="types">The types.</param>
    </member>
    <member name="M:System.Web.Razor.Parser.TokenizerBackedParser`3.AcceptAndMoveNext">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Determines whether the parser accepts and moves to the next tokenizer.</summary>
      <returns>true if the parser accepts and moves to the next tokenizer; otherwise, false.</returns>
    </member>
    <member name="M:System.Web.Razor.Parser.TokenizerBackedParser`3.AcceptSingleWhiteSpaceCharacter">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Determines whether the parser accepts single whitespace character.</summary>
      <returns>true if the parser accepts single whitespace character; otherwise, false.</returns>
    </member>
    <member name="M:System.Web.Razor.Parser.TokenizerBackedParser`3.AcceptUntil(`2)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Accepts token until a token of the given type is found.</summary>
      <param name="type">The type of the token.</param>
    </member>
    <member name="M:System.Web.Razor.Parser.TokenizerBackedParser`3.AcceptUntil(`2,`2)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Accepts token until a token of the given type is found and it will backup so that the next token is of the given type.</summary>
      <param name="type1">The type of the first token.</param>
      <param name="type2">The type of the second token.</param>
    </member>
    <member name="M:System.Web.Razor.Parser.TokenizerBackedParser`3.AcceptUntil(`2,`2,`2)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Accepts the given tokens until a token of the given type is found.</summary>
      <param name="type1">The type of the first token.</param>
      <param name="type2">The type of the second token.</param>
      <param name="type3">The type of the third token.</param>
    </member>
    <member name="M:System.Web.Razor.Parser.TokenizerBackedParser`3.AcceptUntil(`2[])">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Accepts token until a token of the given types is found.</summary>
      <param name="types">The types of the token.</param>
    </member>
    <member name="M:System.Web.Razor.Parser.TokenizerBackedParser`3.AcceptWhile(System.Func{`1,System.Boolean})">
      <summary>Accepts token while the condition has been reached.</summary>
      <param name="condition">The condition.</param>
    </member>
    <member name="M:System.Web.Razor.Parser.TokenizerBackedParser`3.AcceptWhile(`2)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Accepts the token while a token of the given type is not found.</summary>
      <param name="type">The type of the token.</param>
    </member>
    <member name="M:System.Web.Razor.Parser.TokenizerBackedParser`3.AcceptWhile(`2,`2)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Accepts token while the token of the given type has been reached.</summary>
      <param name="type1">The type of the first token.</param>
      <param name="type2">The type of the second token.</param>
    </member>
    <member name="M:System.Web.Razor.Parser.TokenizerBackedParser`3.AcceptWhile(`2,`2,`2)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Accepts token while the token of the given type has been reached.</summary>
      <param name="type1">The type of the first token.</param>
      <param name="type2">The type of the second token.</param>
      <param name="type3">The type of the third token.</param>
    </member>
    <member name="M:System.Web.Razor.Parser.TokenizerBackedParser`3.AcceptWhile(`2[])">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Accepts token while the token of the given types has been reached.</summary>
      <param name="types">The types.</param>
    </member>
    <member name="M:System.Web.Razor.Parser.TokenizerBackedParser`3.AcceptWhiteSpaceInLines">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Determines whether the parser accepts whitespace in lines.</summary>
      <returns>true if the parser accepts whitespace in lines; otherwise, false.</returns>
    </member>
    <member name="M:System.Web.Razor.Parser.TokenizerBackedParser`3.AddMarkerSymbolIfNecessary">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Adds a marker symbol if necessary.</summary>
    </member>
    <member name="M:System.Web.Razor.Parser.TokenizerBackedParser`3.AddMarkerSymbolIfNecessary(System.Web.Razor.Text.SourceLocation)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Adds a marker symbol if necessary.</summary>
      <param name="location">The location where to add the symbol.</param>
    </member>
    <member name="M:System.Web.Razor.Parser.TokenizerBackedParser`3.At(`2)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Determines whether the token is at the specified type.</summary>
      <returns>true if the token is at the specified type; otherwise, false.</returns>
      <param name="type">The type.</param>
    </member>
    <member name="M:System.Web.Razor.Parser.TokenizerBackedParser`3.AtIdentifier(System.Boolean)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Determines whether the token is at the specified identifier.</summary>
      <returns>true if the token is at the specified identifier; otherwise, false.</returns>
      <param name="allowKeywords">true to allow keywords; otherwise, false.</param>
    </member>
    <member name="M:System.Web.Razor.Parser.TokenizerBackedParser`3.Balance(System.Web.Razor.Parser.BalancingModes)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Determines whether the parsing is balance.</summary>
      <returns>true if the parsing is balance; otherwise, false.</returns>
      <param name="mode">The balancing mode.</param>
    </member>
    <member name="M:System.Web.Razor.Parser.TokenizerBackedParser`3.Balance(System.Web.Razor.Parser.BalancingModes,`2,`2,System.Web.Razor.Text.SourceLocation)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Determines whether the parsing is balance.</summary>
      <returns>true if the parsing is balance; otherwise, false.</returns>
      <param name="mode">The balancing mode.</param>
      <param name="left">The left parse.</param>
      <param name="right">The right parse.</param>
      <param name="start">The start of the mode.</param>
    </member>
    <member name="M:System.Web.Razor.Parser.TokenizerBackedParser`3.BuildSpan(System.Web.Razor.Parser.SyntaxTree.SpanBuilder,System.Web.Razor.Text.SourceLocation,System.String)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Builds a specified span.</summary>
      <param name="span">The span to build.</param>
      <param name="start">The start location to build the span.</param>
      <param name="content">The content of the span.</param>
    </member>
    <member name="M:System.Web.Razor.Parser.TokenizerBackedParser`3.ConfigureSpan(System.Action{System.Web.Razor.Parser.SyntaxTree.SpanBuilder})">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Configures the span.</summary>
      <param name="config">The configuration.</param>
    </member>
    <member name="M:System.Web.Razor.Parser.TokenizerBackedParser`3.ConfigureSpan(System.Action{System.Web.Razor.Parser.SyntaxTree.SpanBuilder,System.Action{System.Web.Razor.Parser.SyntaxTree.SpanBuilder}})">
      <summary>Configures the span.</summary>
      <param name="config">The configuration.</param>
    </member>
    <member name="P:System.Web.Razor.Parser.TokenizerBackedParser`3.CurrentLocation">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets the current location of the current instance.</summary>
      <returns>The current location of the current instance.</returns>
    </member>
    <member name="P:System.Web.Razor.Parser.TokenizerBackedParser`3.CurrentSymbol">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets the current symbol of this instance.</summary>
      <returns>The current symbol of this instance.</returns>
    </member>
    <member name="P:System.Web.Razor.Parser.TokenizerBackedParser`3.EndOfFile">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets a value indicating whether the tokenizer is in the end of file.</summary>
      <returns>true if the tokenizer is in the end of file; otherwise, false.</returns>
    </member>
    <member name="M:System.Web.Razor.Parser.TokenizerBackedParser`3.EnsureCurrent">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Determines whether to ensure the current parser.</summary>
      <returns>true if to ensure the current parser; otherwise, false.</returns>
    </member>
    <member name="M:System.Web.Razor.Parser.TokenizerBackedParser`3.Expected(System.Web.Razor.Tokenizer.Symbols.KnownSymbolType)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Indicates the expected token with the given type.</summary>
      <param name="type">The type.</param>
    </member>
    <member name="M:System.Web.Razor.Parser.TokenizerBackedParser`3.Expected(`2[])">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Indicates the expected token with the given types.</summary>
      <param name="types">The types.</param>
    </member>
    <member name="M:System.Web.Razor.Parser.TokenizerBackedParser`3.HandleEmbeddedTransition">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Handles the embedded transition.</summary>
    </member>
    <member name="M:System.Web.Razor.Parser.TokenizerBackedParser`3.Initialize(System.Web.Razor.Parser.SyntaxTree.SpanBuilder)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Initializes a specified span.</summary>
      <param name="span">The span to initialize.</param>
    </member>
    <member name="M:System.Web.Razor.Parser.TokenizerBackedParser`3.IsAtEmbeddedTransition(System.Boolean,System.Boolean)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Determines whether this instance is at embedded transition.</summary>
      <returns>true if this instance is at embedded transition; otherwise, false.</returns>
      <param name="allowTemplatesAndComments">true to allow templates and comments; otherwise, false.</param>
      <param name="allowTransitions">true to allow transitions; otherwise, false.</param>
    </member>
    <member name="P:System.Web.Razor.Parser.TokenizerBackedParser`3.Language">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets the language used for parsing.</summary>
      <returns>The language used for parsing.</returns>
    </member>
    <member name="M:System.Web.Razor.Parser.TokenizerBackedParser`3.NextIs(System.Func{`1,System.Boolean})">
      <summary>Determines whether the token with the given condition would pass.</summary>
      <returns>true if the token with the given condition would pass; otherwise, false.</returns>
      <param name="condition">The condition.</param>
    </member>
    <member name="M:System.Web.Razor.Parser.TokenizerBackedParser`3.NextIs(`2)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Determines whether the token with the given type would pass.</summary>
      <returns>true if the token with the give type would pass; otherwise, false.</returns>
      <param name="type">The type of the token.</param>
    </member>
    <member name="M:System.Web.Razor.Parser.TokenizerBackedParser`3.NextIs(`2[])">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Determines whether the token with the given types would pass.</summary>
      <returns>true if the token with the given types would pass; otherwise, false.</returns>
      <param name="types">The types.</param>
    </member>
    <member name="M:System.Web.Razor.Parser.TokenizerBackedParser`3.NextToken">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Determines whether the parser advances to the next token.</summary>
      <returns>true if the parser advances to the next token; otherwise, false.</returns>
    </member>
    <member name="M:System.Web.Razor.Parser.TokenizerBackedParser`3.Optional(System.Web.Razor.Tokenizer.Symbols.KnownSymbolType)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Determines whether parsing a token with the given type is optional.</summary>
      <returns>true if parsing a token with the given type is optional; otherwise, false.</returns>
      <param name="type">The type of the token.</param>
    </member>
    <member name="M:System.Web.Razor.Parser.TokenizerBackedParser`3.Optional(`2)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Determines whether parsing a token with the given type is optional.</summary>
      <returns>true if parsing a token with the given type is optional; otherwise, false.</returns>
      <param name="type">The type of the token.</param>
    </member>
    <member name="M:System.Web.Razor.Parser.TokenizerBackedParser`3.Output(System.Web.Razor.Parser.SyntaxTree.AcceptedCharacters)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Outputs a token with accepted characters.</summary>
      <param name="accepts">The accepted characters.</param>
    </member>
    <member name="M:System.Web.Razor.Parser.TokenizerBackedParser`3.Output(System.Web.Razor.Parser.SyntaxTree.SpanKind)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Outputs a token with span kind.</summary>
      <param name="kind">The span kind.</param>
    </member>
    <member name="M:System.Web.Razor.Parser.TokenizerBackedParser`3.Output(System.Web.Razor.Parser.SyntaxTree.SpanKind,System.Web.Razor.Parser.SyntaxTree.AcceptedCharacters)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Outputs a token with a given span kind and accepted characters.</summary>
      <param name="kind">The span kind.</param>
      <param name="accepts">The accepted characters.</param>
    </member>
    <member name="M:System.Web.Razor.Parser.TokenizerBackedParser`3.OutputSpanBeforeRazorComment">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Outputs a span before the razor comment.</summary>
    </member>
    <member name="P:System.Web.Razor.Parser.TokenizerBackedParser`3.PreviousSymbol">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code..Gets the previous symbol of this instance.</summary>
    </member>
    <member name="M:System.Web.Razor.Parser.TokenizerBackedParser`3.PushSpanConfig">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Pushes the span configuration.</summary>
      <returns>An <see cref="T:System.IDisposable" /> that shuts down the configuration.</returns>
    </member>
    <member name="M:System.Web.Razor.Parser.TokenizerBackedParser`3.PushSpanConfig(System.Action{System.Web.Razor.Parser.SyntaxTree.SpanBuilder})">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Pushes the span configuration.</summary>
      <returns>An <see cref="T:System.IDisposable" /> that shuts down the configuration.</returns>
      <param name="newConfig">The new configuration.</param>
    </member>
    <member name="M:System.Web.Razor.Parser.TokenizerBackedParser`3.PushSpanConfig(System.Action{System.Web.Razor.Parser.SyntaxTree.SpanBuilder,System.Action{System.Web.Razor.Parser.SyntaxTree.SpanBuilder}})">
      <summary>Pushes the span configuration.</summary>
      <returns>An <see cref="T:System.IDisposable" /> that shuts down the configuration.</returns>
      <param name="newConfig">The new configuration.</param>
    </member>
    <member name="M:System.Web.Razor.Parser.TokenizerBackedParser`3.PutBack(System.Collections.Generic.IEnumerable{`1})">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Puts the transition back.</summary>
      <param name="symbols">The symbols.</param>
    </member>
    <member name="M:System.Web.Razor.Parser.TokenizerBackedParser`3.PutBack(`1)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Puts the transition back.</summary>
      <param name="symbol">The symbol.</param>
    </member>
    <member name="M:System.Web.Razor.Parser.TokenizerBackedParser`3.PutCurrentBack">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Puts the current transition back.</summary>
    </member>
    <member name="M:System.Web.Razor.Parser.TokenizerBackedParser`3.RazorComment">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Displays the razor comment.</summary>
    </member>
    <member name="M:System.Web.Razor.Parser.TokenizerBackedParser`3.ReadWhile(System.Func{`1,System.Boolean})">
      <summary>Reads a token while the condition is not reached.</summary>
      <returns>The token to read.</returns>
      <param name="condition">The condition.</param>
    </member>
    <member name="M:System.Web.Razor.Parser.TokenizerBackedParser`3.Required(`2,System.Boolean,System.String)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Determines whether the expected token is required.</summary>
      <returns>true if the expected token is required; otherwise, false.</returns>
      <param name="expected">The expected token.</param>
      <param name="errorIfNotFound">true to display an error if not found; otherwise, false.</param>
      <param name="errorBase">The error base.</param>
    </member>
    <member name="P:System.Web.Razor.Parser.TokenizerBackedParser`3.Span">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets or sets the <see cref="T:System.Web.Razor.Parser.SyntaxTree.SpanBuilder" /> associated with this instance.</summary>
      <returns>The <see cref="T:System.Web.Razor.Parser.SyntaxTree.SpanBuilder" /> associated with this instance.</returns>
    </member>
    <member name="P:System.Web.Razor.Parser.TokenizerBackedParser`3.SpanConfig">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets or sets the span configuration.</summary>
      <returns>The span configuration.</returns>
    </member>
    <member name="P:System.Web.Razor.Parser.TokenizerBackedParser`3.Tokenizer">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets the tokenizer.</summary>
      <returns>The tokenizer.</returns>
    </member>
    <member name="M:System.Web.Razor.Parser.TokenizerBackedParser`3.Was(`2)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Determines whether the token with the given type was parsed.</summary>
      <returns>true if the token with the given type was parsed; otherwise, false.</returns>
      <param name="type">The type of the token.</param>
    </member>
    <member name="T:System.Web.Razor.Parser.VBCodeParser">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Represents a Visual Basic code parser.</summary>
    </member>
    <member name="M:System.Web.Razor.Parser.VBCodeParser.#ctor">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Initializes a new instance of the <see cref="T:System.Web.Razor.Parser.VBCodeParser" /> class.</summary>
    </member>
    <member name="M:System.Web.Razor.Parser.VBCodeParser.AcceptVBSpaces">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Accepts spaces in the VB code.</summary>
    </member>
    <member name="M:System.Web.Razor.Parser.VBCodeParser.Assert(System.Web.Razor.Tokenizer.Symbols.VBKeyword)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Checks for a condition and displays a keyword in the code.</summary>
      <param name="keyword">The keyword.</param>
    </member>
    <member name="M:System.Web.Razor.Parser.VBCodeParser.AssertDirective(System.String)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Asserts the given directive.</summary>
      <param name="directive">The directive to assert.</param>
    </member>
    <member name="M:System.Web.Razor.Parser.VBCodeParser.At(System.String)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Determines whether the directive is ‘AT’ directive.</summary>
      <returns>true if the directive is an ‘AT’ directive; otherwise, false.</returns>
      <param name="directive">The directive.</param>
    </member>
    <member name="M:System.Web.Razor.Parser.VBCodeParser.At(System.Web.Razor.Tokenizer.Symbols.VBKeyword)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Determines whether the given keyword is ‘AT’.</summary>
      <returns>true if the given keyword is ‘AT’; otherwise, false.</returns>
      <param name="keyword">The keyword.</param>
    </member>
    <member name="M:System.Web.Razor.Parser.VBCodeParser.EndTerminatedDirective(System.String,System.Web.Razor.Parser.SyntaxTree.BlockType,System.Web.Razor.Generator.SpanCodeGenerator,System.Boolean)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Ends a terminated directive.</summary>
      <returns>The function that ends the terminated directive.</returns>
      <param name="directive">The directive.</param>
      <param name="blockType">The block type.</param>
      <param name="codeGenerator">The code generator.</param>
      <param name="allowMarkup">true to allow markup; otherwise, false.</param>
    </member>
    <member name="M:System.Web.Razor.Parser.VBCodeParser.EndTerminatedDirectiveBody(System.String,System.Web.Razor.Text.SourceLocation,System.Boolean)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Determines whether the termination of directive body is ended.</summary>
      <returns>true if the termination of directive body is ended; otherwise, false.</returns>
      <param name="directive">The directive.</param>
      <param name="blockStart">The block start.</param>
      <param name="allowAllTransitions">true to allow all transitions; otherwise, false.</param>
    </member>
    <member name="M:System.Web.Razor.Parser.VBCodeParser.EndTerminatedStatement(System.Web.Razor.Tokenizer.Symbols.VBKeyword,System.Boolean,System.Boolean)">
      <summary>Ends a termination of statement.</summary>
      <returns>The function that ends the termination.</returns>
      <param name="keyword">The keyword.</param>
      <param name="supportsExit">true if the termination supports exit; otherwise, false.</param>
      <param name="supportsContinue">true if the termination supports continue; otherwise, false.</param>
    </member>
    <member name="M:System.Web.Razor.Parser.VBCodeParser.EndTerminatedStatement(System.Web.Razor.Tokenizer.Symbols.VBKeyword,System.Boolean,System.Boolean,System.String)">
      <summary>Ends a termination of statement.</summary>
      <returns>The function that ends the termination.</returns>
      <param name="keyword">The keyword.</param>
      <param name="supportsExit">true if the termination supports exit; otherwise, false.</param>
      <param name="supportsContinue">true if the termination supports continue; otherwise, false.</param>
      <param name="blockName">The block name.</param>
    </member>
    <member name="M:System.Web.Razor.Parser.VBCodeParser.HandleEmbeddedTransition">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Handles the embedded transition.</summary>
    </member>
    <member name="M:System.Web.Razor.Parser.VBCodeParser.HandleEmbeddedTransition(System.Web.Razor.Tokenizer.Symbols.VBSymbol)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Handles the embedded transition.</summary>
      <param name="lastWhiteSpace">The last white space.</param>
    </member>
    <member name="M:System.Web.Razor.Parser.VBCodeParser.HandleExitOrContinue(System.Web.Razor.Tokenizer.Symbols.VBKeyword)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Indicates the code that handles the Exit or Continue keyword.</summary>
      <param name="keyword">The keyword.</param>
    </member>
    <member name="M:System.Web.Razor.Parser.VBCodeParser.HandleTransition(System.Web.Razor.Tokenizer.Symbols.VBSymbol)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Indicates a code that handles a transition.</summary>
      <param name="lastWhiteSpace">The last white space.</param>
    </member>
    <member name="M:System.Web.Razor.Parser.VBCodeParser.HelperDirective">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Indicates whether the code is a helper directive.</summary>
      <returns>true if the code is a helper directive; otherwise, false.</returns>
    </member>
    <member name="M:System.Web.Razor.Parser.VBCodeParser.ImportsStatement">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Determines whether the code imports a statement.</summary>
      <returns>true if the code imports a statement; otherwise, false.</returns>
    </member>
    <member name="M:System.Web.Razor.Parser.VBCodeParser.InheritsStatement">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Determines whether the code inherits a statement.</summary>
      <returns>true if the code inherits a statement; otherwise, false.</returns>
    </member>
    <member name="M:System.Web.Razor.Parser.VBCodeParser.IsAtEmbeddedTransition(System.Boolean,System.Boolean)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Determines whether the code is at embedded transition.</summary>
      <returns>true if the code is at embedded transition; otherwise, false.</returns>
      <param name="allowTemplatesAndComments">true to allow templates and comments; otherwise, false.</param>
      <param name="allowTransitions">true to allow transitions; otherwise, false.</param>
    </member>
    <member name="M:System.Web.Razor.Parser.VBCodeParser.IsDirectiveDefined(System.String)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Determines whether the code is directive defined.</summary>
      <returns>true if the code is directive defined; otherwise, false.</returns>
      <param name="directive">The directive.</param>
    </member>
    <member name="P:System.Web.Razor.Parser.VBCodeParser.Keywords">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets the keywords associated with the code.</summary>
      <returns>The keywords associated with the code.</returns>
    </member>
    <member name="M:System.Web.Razor.Parser.VBCodeParser.KeywordTerminatedStatement(System.Web.Razor.Tokenizer.Symbols.VBKeyword,System.Web.Razor.Tokenizer.Symbols.VBKeyword,System.Boolean,System.Boolean)">
      <summary>Indicates a keyword that terminates a statement.</summary>
      <returns>The function that terminates the statement.</returns>
      <param name="start">The start.</param>
      <param name="terminator">The terminator.</param>
      <param name="supportsExit">true if the termination supports exit; otherwise, false.</param>
      <param name="supportsContinue">true if the termination supports continue; otherwise, false.</param>
    </member>
    <member name="P:System.Web.Razor.Parser.VBCodeParser.Language">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets the language for the parser.</summary>
      <returns>The language for the parser.</returns>
    </member>
    <member name="M:System.Web.Razor.Parser.VBCodeParser.LayoutDirective">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Determines whether the code is a layout directive.</summary>
      <returns>true if the code is a layout directive; otherwise, false.</returns>
    </member>
    <member name="M:System.Web.Razor.Parser.VBCodeParser.MapDirective(System.String,System.Func{System.Boolean})">
      <summary>Maps a given directive.</summary>
      <param name="directive">The directive.</param>
      <param name="action">The action whether to map a given directive.</param>
    </member>
    <member name="M:System.Web.Razor.Parser.VBCodeParser.MapKeyword(System.Web.Razor.Tokenizer.Symbols.VBKeyword,System.Func{System.Boolean})">
      <summary>Maps a given keyword.</summary>
      <param name="keyword">The keyword.</param>
      <param name="action">The action whether to map a given keyword.</param>
    </member>
    <member name="M:System.Web.Razor.Parser.VBCodeParser.NestedBlock">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Indicates a nested block.</summary>
    </member>
    <member name="M:System.Web.Razor.Parser.VBCodeParser.Optional(System.Web.Razor.Tokenizer.Symbols.VBKeyword)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Determines whether the keyword from the code is optional.</summary>
      <returns>true if the keyword from the code is optional; otherwise, false.</returns>
      <param name="keyword">The keyword.</param>
    </member>
    <member name="M:System.Web.Razor.Parser.VBCodeParser.OptionStatement">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Determines whether the code is an option statement.</summary>
      <returns>true if the code is an option statement; otherwise, false.</returns>
    </member>
    <member name="P:System.Web.Razor.Parser.VBCodeParser.OtherParser">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets the other parser.</summary>
      <returns>The other parser.</returns>
    </member>
    <member name="M:System.Web.Razor.Parser.VBCodeParser.OtherParserBlock">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Indicates the parser block.</summary>
    </member>
    <member name="M:System.Web.Razor.Parser.VBCodeParser.OtherParserBlock(System.String,System.String)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Indicates the parser block.</summary>
      <param name="startSequence">The start sequence.</param>
      <param name="endSequence">The end sequence.</param>
    </member>
    <member name="M:System.Web.Razor.Parser.VBCodeParser.OutputSpanBeforeRazorComment">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Spans the output before Razor comment.</summary>
    </member>
    <member name="M:System.Web.Razor.Parser.VBCodeParser.ParseBlock">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Blocks the parsing.</summary>
    </member>
    <member name="M:System.Web.Razor.Parser.VBCodeParser.ReadVBSpaces">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Reads a list of Visual Basic spaces.</summary>
      <returns>A list of Visual Basic spaces.</returns>
    </member>
    <member name="M:System.Web.Razor.Parser.VBCodeParser.Required(System.Web.Razor.Tokenizer.Symbols.VBSymbolType,System.String)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Determines whether the expected symbol is required.</summary>
      <returns>true if the expected symbol is required; otherwise, false.</returns>
      <param name="expected">The expected symbol.</param>
      <param name="errorBase">The error base.</param>
    </member>
    <member name="M:System.Web.Razor.Parser.VBCodeParser.ReservedWord">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Determines whether the code is a reserved word.</summary>
      <returns>true if the code is a reserved word; otherwise, false.</returns>
    </member>
    <member name="M:System.Web.Razor.Parser.VBCodeParser.SectionDirective">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Determines whether the code is a section directive.</summary>
      <returns>true if the code is a section directive; otherwise, false.</returns>
    </member>
    <member name="M:System.Web.Razor.Parser.VBCodeParser.SessionStateDirective">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Determines whether the code has a session state directive.</summary>
      <returns>true if the code has a session state directive; otherwise, false.</returns>
    </member>
    <member name="T:System.Web.Razor.Parser.VBLanguageCharacteristics">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Represents the characteristics of the Visual Basic language.</summary>
    </member>
    <member name="M:System.Web.Razor.Parser.VBLanguageCharacteristics.CreateMarkerSymbol(System.Web.Razor.Text.SourceLocation)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Creates a Visual Basic marker symbol.</summary>
      <returns>The created Visual Basic marker symbol.</returns>
      <param name="location">The location to create the symbol.</param>
    </member>
    <member name="M:System.Web.Razor.Parser.VBLanguageCharacteristics.CreateSymbol(System.Web.Razor.Text.SourceLocation,System.String,System.Web.Razor.Tokenizer.Symbols.VBSymbolType,System.Collections.Generic.IEnumerable{System.Web.Razor.Parser.SyntaxTree.RazorError})">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Creates a Visual Basic symbol.</summary>
      <returns>The created <see cref="T:System.Web.Razor.Tokenizer.Symbols.VBSymbol" />.</returns>
      <param name="location">The location to create the symbol.</param>
      <param name="content">The content.</param>
      <param name="type">The type of the symbol.</param>
      <param name="errors">The errors.</param>
    </member>
    <member name="M:System.Web.Razor.Parser.VBLanguageCharacteristics.CreateTokenizer(System.Web.Razor.Text.ITextDocument)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Creates a Visual Basic tokenizer.</summary>
      <returns>The created <see cref="T:System.Web.Razor.Tokenizer.VBTokenizer" />.</returns>
      <param name="source">The source where to create the tokenizer.</param>
    </member>
    <member name="M:System.Web.Razor.Parser.VBLanguageCharacteristics.FlipBracket(System.Web.Razor.Tokenizer.Symbols.VBSymbolType)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Flips the given bracket.</summary>
      <returns>The type of the Visual Basic symbol.</returns>
      <param name="bracket">The bracket to flip.</param>
    </member>
    <member name="M:System.Web.Razor.Parser.VBLanguageCharacteristics.GetKnownSymbolType(System.Web.Razor.Tokenizer.Symbols.KnownSymbolType)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Retrieves the type of the known symbol.</summary>
      <returns>The type of the known symbol.</returns>
      <param name="type">The type to retrieve.</param>
    </member>
    <member name="M:System.Web.Razor.Parser.VBLanguageCharacteristics.GetSample(System.Web.Razor.Tokenizer.Symbols.VBSymbolType)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets a sample symbol with the given type.</summary>
      <returns>A sample symbol with the given type.</returns>
      <param name="type">The type of the symbol.</param>
    </member>
    <member name="P:System.Web.Razor.Parser.VBLanguageCharacteristics.Instance">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets an instance of this <see cref="T:System.Web.Razor.Parser.VBLanguageCharacteristics" />.</summary>
      <returns>An instance of <see cref="T:System.Web.Razor.Parser.VBLanguageCharacteristics" />.</returns>
    </member>
    <member name="T:System.Web.Razor.Parser.SyntaxTree.AcceptedCharacters">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Parser.SyntaxTree.AcceptedCharacters.AllWhiteSpace">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Parser.SyntaxTree.AcceptedCharacters.Any">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Parser.SyntaxTree.AcceptedCharacters.AnyExceptNewline">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Parser.SyntaxTree.AcceptedCharacters.NewLine">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Parser.SyntaxTree.AcceptedCharacters.None">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Parser.SyntaxTree.AcceptedCharacters.NonWhiteSpace">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Parser.SyntaxTree.AcceptedCharacters.WhiteSpace">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="T:System.Web.Razor.Parser.SyntaxTree.AutoCompleteEditHandler">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Represents the auto-complete editing handler class.</summary>
    </member>
    <member name="M:System.Web.Razor.Parser.SyntaxTree.AutoCompleteEditHandler.#ctor(System.Func{System.String,System.Collections.Generic.IEnumerable{System.Web.Razor.Tokenizer.Symbols.ISymbol}})">
      <summary>Initializes a new instance of the <see cref="T:System.Web.Razor.Parser.SyntaxTree.AutoCompleteEditHandler" /> class.</summary>
      <param name="tokenizer">The tokenizer.</param>
    </member>
    <member name="M:System.Web.Razor.Parser.SyntaxTree.AutoCompleteEditHandler.#ctor(System.Func{System.String,System.Collections.Generic.IEnumerable{System.Web.Razor.Tokenizer.Symbols.ISymbol}},System.Web.Razor.Parser.SyntaxTree.AcceptedCharacters)">
      <summary>Initializes a new instance of the <see cref="T:System.Web.Razor.Parser.SyntaxTree.AutoCompleteEditHandler" /> class.</summary>
      <param name="tokenizer">The tokenizer.</param>
      <param name="accepted">The accepted characters.</param>
    </member>
    <member name="P:System.Web.Razor.Parser.SyntaxTree.AutoCompleteEditHandler.AutoCompleteAtEndOfSpan">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets or sets a value that indicates whether the auto-complete function is at the end of this span.</summary>
      <returns>true if the auto-complete function is at the end of this span; otherwise, false.</returns>
    </member>
    <member name="P:System.Web.Razor.Parser.SyntaxTree.AutoCompleteEditHandler.AutoCompleteString">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets or sets a string value to auto-complete.</summary>
      <returns>A string value to auto-complete.</returns>
    </member>
    <member name="M:System.Web.Razor.Parser.SyntaxTree.AutoCompleteEditHandler.CanAcceptChange(System.Web.Razor.Parser.SyntaxTree.Span,System.Web.Razor.Text.TextChange)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Indicates a parse result that can accept changes.</summary>
      <param name="target">The phase of the target.</param>
      <param name="normalizedChange">The normalized <see cref="T:System.Web.Razor.Text.TextChange" />.</param>
    </member>
    <member name="M:System.Web.Razor.Parser.SyntaxTree.AutoCompleteEditHandler.Equals(System.Object)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Indicates whether this instance and a specified object are equal.</summary>
      <returns>true if <paramref name="obj" /> and this instance are the same type and represent the same value; otherwise, false.</returns>
      <param name="obj">The object.</param>
    </member>
    <member name="M:System.Web.Razor.Parser.SyntaxTree.AutoCompleteEditHandler.GetHashCode">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Returns the hash code for this instance.</summary>
      <returns>A 32-bit signed integer that is the hash code for this instance.</returns>
    </member>
    <member name="M:System.Web.Razor.Parser.SyntaxTree.AutoCompleteEditHandler.ToString">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Returns the fully qualified type name of this instance.</summary>
      <returns>A String containing a fully qualified type name.</returns>
    </member>
    <member name="T:System.Web.Razor.Parser.SyntaxTree.Block">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Represents the block for creating webpages.</summary>
    </member>
    <member name="M:System.Web.Razor.Parser.SyntaxTree.Block.#ctor(System.Web.Razor.Parser.SyntaxTree.BlockBuilder)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Initializes a new instance of the <see cref="T:System.Web.Razor.Parser.SyntaxTree.Block" /> class.</summary>
      <param name="source">The source for the block builder.</param>
    </member>
    <member name="M:System.Web.Razor.Parser.SyntaxTree.Block.Accept(System.Web.Razor.Parser.ParserVisitor)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Accepts the parser visitor of the block.</summary>
      <param name="visitor">The parser visitor.</param>
    </member>
    <member name="P:System.Web.Razor.Parser.SyntaxTree.Block.Children">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets a collection of SyntaxTreeNode to view the children of the block.</summary>
      <returns>A collection of SyntaxTreeNode to view the children of the block.</returns>
    </member>
    <member name="P:System.Web.Razor.Parser.SyntaxTree.Block.CodeGenerator">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets the IBlockCodeGenerator to generate codes for the elements.</summary>
      <returns>The IBlockCodeGenerator to generate codes for the elements.</returns>
    </member>
    <member name="M:System.Web.Razor.Parser.SyntaxTree.Block.Equals(System.Object)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Determines whether the specified object is equal to the current block.</summary>
      <returns>true if the specified object is equal to the current block; otherwise, false.</returns>
      <param name="obj">The object to compare with the current object.</param>
    </member>
    <member name="M:System.Web.Razor.Parser.SyntaxTree.Block.EquivalentTo(System.Web.Razor.Parser.SyntaxTree.SyntaxTreeNode)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Returns a value indicating whether the block is equivalent to the same element.</summary>
      <returns>true if the block is equivalent to the same element; otherwise, false.</returns>
      <param name="node">The syntax tree node.</param>
    </member>
    <member name="M:System.Web.Razor.Parser.SyntaxTree.Block.FindFirstDescendentSpan">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Finds the first descendent span of the block.</summary>
      <returns>The first descendent span of the block.</returns>
    </member>
    <member name="M:System.Web.Razor.Parser.SyntaxTree.Block.FindLastDescendentSpan">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Finds the last descendent span of the block.</summary>
      <returns>The last descendent span of the block.</returns>
    </member>
    <member name="M:System.Web.Razor.Parser.SyntaxTree.Block.Flatten">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Flattens a collection of a specified type for the block.</summary>
      <returns>A collection of a specified type for the block to flatten.</returns>
    </member>
    <member name="M:System.Web.Razor.Parser.SyntaxTree.Block.GetHashCode">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Returns the hash code for this instance.</summary>
      <returns>The hash code for this instance.</returns>
    </member>
    <member name="P:System.Web.Razor.Parser.SyntaxTree.Block.IsBlock">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets a value that indicates whether the object is a block-level object.</summary>
      <returns>true if the object is a block-level object; otherwise, false.</returns>
    </member>
    <member name="P:System.Web.Razor.Parser.SyntaxTree.Block.Length">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets the length value of the block.</summary>
      <returns>The length value of the block.</returns>
    </member>
    <member name="M:System.Web.Razor.Parser.SyntaxTree.Block.LocateOwner(System.Web.Razor.Text.TextChange)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Locates the owner of the block.</summary>
      <returns>The owner of the block to locate.</returns>
      <param name="change">The text change.</param>
    </member>
    <member name="P:System.Web.Razor.Parser.SyntaxTree.Block.Name">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets the string name of the block.</summary>
      <returns>The string name of the block.</returns>
    </member>
    <member name="P:System.Web.Razor.Parser.SyntaxTree.Block.Start">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets the start to identify the specific location of the block.</summary>
      <returns>The start to identify the specific location of the block.</returns>
    </member>
    <member name="M:System.Web.Razor.Parser.SyntaxTree.Block.ToString">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Returns a string that represents the current object.</summary>
      <returns>A string that represents the current object.</returns>
    </member>
    <member name="P:System.Web.Razor.Parser.SyntaxTree.Block.Type">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets the type of code block.</summary>
      <returns>The type of code block.</returns>
    </member>
    <member name="T:System.Web.Razor.Parser.SyntaxTree.BlockBuilder">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Represents the block builder for the webpages.</summary>
    </member>
    <member name="M:System.Web.Razor.Parser.SyntaxTree.BlockBuilder.#ctor">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Initializes a new instance of the <see cref="T:System.Web.Razor.Parser.SyntaxTree.BlockBuilder" /> class.</summary>
    </member>
    <member name="M:System.Web.Razor.Parser.SyntaxTree.BlockBuilder.#ctor(System.Web.Razor.Parser.SyntaxTree.Block)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Initializes a new instance of the <see cref="T:System.Web.Razor.Parser.SyntaxTree.BlockBuilder" /> class.</summary>
      <param name="original">The original block builder.</param>
    </member>
    <member name="M:System.Web.Razor.Parser.SyntaxTree.BlockBuilder.Build">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Builds a block for this instance.</summary>
      <returns>A block builds for this instance.</returns>
    </member>
    <member name="P:System.Web.Razor.Parser.SyntaxTree.BlockBuilder.Children">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets the collection of child elements of the block builder.</summary>
      <returns>The collection of child elements of the block builder.</returns>
    </member>
    <member name="P:System.Web.Razor.Parser.SyntaxTree.BlockBuilder.CodeGenerator">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets or sets the code generator for the block builder.</summary>
      <returns>The code generator for the block builder.</returns>
    </member>
    <member name="P:System.Web.Razor.Parser.SyntaxTree.BlockBuilder.Name">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets or sets the string name for the block builder.</summary>
      <returns>The string name for the block builder.</returns>
    </member>
    <member name="M:System.Web.Razor.Parser.SyntaxTree.BlockBuilder.Reset">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Resets the block builder to its original position.</summary>
    </member>
    <member name="P:System.Web.Razor.Parser.SyntaxTree.BlockBuilder.Type">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets or sets a block type that can be assigned null.</summary>
      <returns>A block type that can be assigned null.</returns>
    </member>
    <member name="T:System.Web.Razor.Parser.SyntaxTree.BlockType">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Parser.SyntaxTree.BlockType.Comment">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Parser.SyntaxTree.BlockType.Directive">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Parser.SyntaxTree.BlockType.Expression">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Parser.SyntaxTree.BlockType.Functions">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Parser.SyntaxTree.BlockType.Helper">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Parser.SyntaxTree.BlockType.Markup">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Parser.SyntaxTree.BlockType.Section">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Parser.SyntaxTree.BlockType.Statement">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Parser.SyntaxTree.BlockType.Template">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="T:System.Web.Razor.Parser.SyntaxTree.RazorError">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Represents a parsing error in Razor.</summary>
    </member>
    <member name="M:System.Web.Razor.Parser.SyntaxTree.RazorError.#ctor(System.String,System.Int32,System.Int32,System.Int32)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Initializes a new instance of the <see cref="T:System.Web.Razor.Parser.SyntaxTree.RazorError" /> class.</summary>
      <param name="message">The error message.</param>
      <param name="absoluteIndex">The absolute index of the source location.</param>
      <param name="lineIndex">The line index of the source location.</param>
      <param name="columnIndex">The column index of the source location.</param>
    </member>
    <member name="M:System.Web.Razor.Parser.SyntaxTree.RazorError.#ctor(System.String,System.Int32,System.Int32,System.Int32,System.Int32)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Initializes a new instance of the <see cref="T:System.Web.Razor.Parser.SyntaxTree.RazorError" /> class.</summary>
      <param name="message">The error message.</param>
      <param name="absoluteIndex">The absolute index of the source location.</param>
      <param name="lineIndex">The line index of the source location.</param>
      <param name="columnIndex">The column index of the source location.</param>
      <param name="length">The length for the error.</param>
    </member>
    <member name="M:System.Web.Razor.Parser.SyntaxTree.RazorError.#ctor(System.String,System.Web.Razor.Text.SourceLocation)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Initializes a new instance of the <see cref="T:System.Web.Razor.Parser.SyntaxTree.RazorError" /> class.</summary>
      <param name="message">The error message.</param>
      <param name="location">The source location of the error.</param>
    </member>
    <member name="M:System.Web.Razor.Parser.SyntaxTree.RazorError.#ctor(System.String,System.Web.Razor.Text.SourceLocation,System.Int32)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Initializes a new instance of the <see cref="T:System.Web.Razor.Parser.SyntaxTree.RazorError" /> class.</summary>
      <param name="message">The error message.</param>
      <param name="location">The source location of the error.</param>
      <param name="length">The length for the error.</param>
    </member>
    <member name="M:System.Web.Razor.Parser.SyntaxTree.RazorError.Equals(System.Object)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Determines whether the specified object is equal to this instance.</summary>
      <returns>true if the specified object is equal to this instance; otherwise, false.</returns>
      <param name="obj">The object to compare to this instance.</param>
    </member>
    <member name="M:System.Web.Razor.Parser.SyntaxTree.RazorError.Equals(System.Web.Razor.Parser.SyntaxTree.RazorError)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Determines whether the specified object is equal to this instance.</summary>
      <returns>true if the specified object is equal to this instance; otherwise, false.</returns>
      <param name="other">The object to compare to this instance.</param>
    </member>
    <member name="M:System.Web.Razor.Parser.SyntaxTree.RazorError.GetHashCode">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Returns the hash code for the current instance.</summary>
      <returns>The hash code for the current instance.</returns>
    </member>
    <member name="P:System.Web.Razor.Parser.SyntaxTree.RazorError.Length">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Gets or sets the length for the error.</summary>
      <returns>The length for the error.</returns>
    </member>
    <member name="P:System.Web.Razor.Parser.SyntaxTree.RazorError.Location">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Gets the source location of the error.</summary>
      <returns>The source location of the error.</returns>
    </member>
    <member name="P:System.Web.Razor.Parser.SyntaxTree.RazorError.Message">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Gets or sets the error message.</summary>
      <returns>The error message.</returns>
    </member>
    <member name="M:System.Web.Razor.Parser.SyntaxTree.RazorError.ToString">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Returns the string representation of this error instance.</summary>
      <returns>The string representation of this error instance.</returns>
    </member>
    <member name="T:System.Web.Razor.Parser.SyntaxTree.Span">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Represents a Razor parse tree node that contains the all the content of a block node.</summary>
    </member>
    <member name="M:System.Web.Razor.Parser.SyntaxTree.Span.#ctor(System.Web.Razor.Parser.SyntaxTree.SpanBuilder)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Initializes a new instance of the <see cref="T:System.Web.Razor.Parser.SyntaxTree.Span" /> class.</summary>
      <param name="builder">The builder to use for this span.</param>
    </member>
    <member name="M:System.Web.Razor.Parser.SyntaxTree.Span.Accept(System.Web.Razor.Parser.ParserVisitor)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Accepts visit from the specified visitor.</summary>
      <param name="visitor">The object that performs the visit.</param>
    </member>
    <member name="M:System.Web.Razor.Parser.SyntaxTree.Span.Change(System.Action{System.Web.Razor.Parser.SyntaxTree.SpanBuilder})">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Changes the span builder for this span.</summary>
      <param name="changes">A delegate that will be executed along with this change.</param>
    </member>
    <member name="M:System.Web.Razor.Parser.SyntaxTree.Span.ChangeStart(System.Web.Razor.Text.SourceLocation)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Sets the start character location of this span.</summary>
      <param name="newStart">The new start location to set for this span.</param>
    </member>
    <member name="P:System.Web.Razor.Parser.SyntaxTree.Span.CodeGenerator">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Gets or sets the code generator for the span.</summary>
      <returns>The code generator for the span.</returns>
    </member>
    <member name="P:System.Web.Razor.Parser.SyntaxTree.Span.Content">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Gets or sets the content of the span.</summary>
      <returns>The content of the span.</returns>
    </member>
    <member name="P:System.Web.Razor.Parser.SyntaxTree.Span.EditHandler">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Gets or sets the handler for span edits.</summary>
      <returns>The handler for span edits.</returns>
    </member>
    <member name="M:System.Web.Razor.Parser.SyntaxTree.Span.Equals(System.Object)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Determines whether the specified object is equal to this span.</summary>
      <returns>true if the specified object is equal to this span; otherwise, false.</returns>
      <param name="obj">The object to compare to this span.</param>
    </member>
    <member name="M:System.Web.Razor.Parser.SyntaxTree.Span.EquivalentTo(System.Web.Razor.Parser.SyntaxTree.SyntaxTreeNode)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Determines whether the specified node is equivalent to this span.</summary>
      <returns>true if the specified node is equal to this span; otherwise, false.</returns>
      <param name="node">The node to compare with this span.</param>
    </member>
    <member name="M:System.Web.Razor.Parser.SyntaxTree.Span.GetHashCode">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Returns the hash code for this current span.</summary>
      <returns>The hash code for this current span.</returns>
    </member>
    <member name="P:System.Web.Razor.Parser.SyntaxTree.Span.IsBlock">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Gets or sets a value that indicates whether this node is a block node.</summary>
      <returns>false.</returns>
    </member>
    <member name="P:System.Web.Razor.Parser.SyntaxTree.Span.Kind">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Gets or sets the kind for this span.</summary>
      <returns>One of the values of the <see cref="T:System.Web.Razor.Parser.SyntaxTree.SpanKind" /> enumeration.</returns>
    </member>
    <member name="P:System.Web.Razor.Parser.SyntaxTree.Span.Length">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Gets or sets the length of the span content.</summary>
      <returns>The length of the span content.</returns>
    </member>
    <member name="P:System.Web.Razor.Parser.SyntaxTree.Span.Next">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Gets or sets the next span in the tree node.</summary>
      <returns>The next span in the tree node.</returns>
    </member>
    <member name="P:System.Web.Razor.Parser.SyntaxTree.Span.Previous">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Gets or sets the previous span in the tree node.</summary>
      <returns>The previous span in the tree node.</returns>
    </member>
    <member name="M:System.Web.Razor.Parser.SyntaxTree.Span.ReplaceWith(System.Web.Razor.Parser.SyntaxTree.SpanBuilder)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Replaces the span builder for this span with the specified span builder.</summary>
      <param name="builder">The new builder to use for this span.</param>
    </member>
    <member name="P:System.Web.Razor.Parser.SyntaxTree.Span.Start">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Gets or sets the start character location of the span.</summary>
      <returns>The start character location of the span.</returns>
    </member>
    <member name="P:System.Web.Razor.Parser.SyntaxTree.Span.Symbols">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Gets or sets the symbols used to generate the code for the span.</summary>
      <returns>The symbols used to generate the code for the span.</returns>
    </member>
    <member name="M:System.Web.Razor.Parser.SyntaxTree.Span.ToString">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Returns the string representation of this current span.</summary>
      <returns>The string representation of this current span.</returns>
    </member>
    <member name="T:System.Web.Razor.Parser.SyntaxTree.SpanBuilder">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Represents the span builder for the syntax tree.</summary>
    </member>
    <member name="M:System.Web.Razor.Parser.SyntaxTree.SpanBuilder.#ctor">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Initializes a new instance of the <see cref="T:System.Web.Razor.Parser.SyntaxTree.SpanBuilder" /> class.</summary>
    </member>
    <member name="M:System.Web.Razor.Parser.SyntaxTree.SpanBuilder.#ctor(System.Web.Razor.Parser.SyntaxTree.Span)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Initializes a new instance of the <see cref="T:System.Web.Razor.Parser.SyntaxTree.SpanBuilder" /> class.</summary>
      <param name="original">The original span.</param>
    </member>
    <member name="M:System.Web.Razor.Parser.SyntaxTree.SpanBuilder.Accept(System.Web.Razor.Tokenizer.Symbols.ISymbol)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Accepts the given symbol for the span builder.</summary>
      <param name="symbol">The symbol builder.</param>
    </member>
    <member name="M:System.Web.Razor.Parser.SyntaxTree.SpanBuilder.Build">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Builds a span builder for this instance.</summary>
      <returns>A span builder for this instance.</returns>
    </member>
    <member name="M:System.Web.Razor.Parser.SyntaxTree.SpanBuilder.ClearSymbols">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Clears the symbols of the span builder.</summary>
    </member>
    <member name="P:System.Web.Razor.Parser.SyntaxTree.SpanBuilder.CodeGenerator">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets or sets the span code generator.</summary>
      <returns>The span code generator.</returns>
    </member>
    <member name="P:System.Web.Razor.Parser.SyntaxTree.SpanBuilder.EditHandler">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets or sets the span edit handler of the builder.</summary>
      <returns>The span edit handler of the builder.</returns>
    </member>
    <member name="P:System.Web.Razor.Parser.SyntaxTree.SpanBuilder.Kind">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets or sets the span kind of the span builder.</summary>
      <returns>The span kind of the span builder.</returns>
    </member>
    <member name="M:System.Web.Razor.Parser.SyntaxTree.SpanBuilder.Reset">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Resets the span builder.</summary>
    </member>
    <member name="P:System.Web.Razor.Parser.SyntaxTree.SpanBuilder.Start">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets or sets the source location of the span builder.</summary>
      <returns>The source location of the span builder.</returns>
    </member>
    <member name="P:System.Web.Razor.Parser.SyntaxTree.SpanBuilder.Symbols">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets the symbols for a generic read-only collection.</summary>
      <returns>The symbols for a generic read-only collection.</returns>
    </member>
    <member name="T:System.Web.Razor.Parser.SyntaxTree.SpanKind">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Parser.SyntaxTree.SpanKind.Code">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Parser.SyntaxTree.SpanKind.Comment">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Parser.SyntaxTree.SpanKind.Markup">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Parser.SyntaxTree.SpanKind.MetaCode">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Parser.SyntaxTree.SpanKind.Transition">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="T:System.Web.Razor.Parser.SyntaxTree.SyntaxTreeNode">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Represents the node for the syntax tree.</summary>
    </member>
    <member name="M:System.Web.Razor.Parser.SyntaxTree.SyntaxTreeNode.#ctor">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Initializes a new instance of the <see cref="T:System.Web.Razor.Parser.SyntaxTree.SyntaxTreeNode" /> class.</summary>
    </member>
    <member name="M:System.Web.Razor.Parser.SyntaxTree.SyntaxTreeNode.Accept(System.Web.Razor.Parser.ParserVisitor)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Accepts the visitor of the tree node.</summary>
      <param name="visitor">The parser visitor.</param>
    </member>
    <member name="M:System.Web.Razor.Parser.SyntaxTree.SyntaxTreeNode.EquivalentTo(System.Web.Razor.Parser.SyntaxTree.SyntaxTreeNode)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Indicates whether the syntax tree node is equivalent to given node.</summary>
      <returns>true the syntax tree node is equivalent to given node; false.</returns>
      <param name="node">The given node.</param>
    </member>
    <member name="P:System.Web.Razor.Parser.SyntaxTree.SyntaxTreeNode.IsBlock">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets a value that indicates whether the syntax tree node is a block-level object.</summary>
      <returns>true if the syntax tree node is a block-level object; otherwise, false.</returns>
    </member>
    <member name="P:System.Web.Razor.Parser.SyntaxTree.SyntaxTreeNode.Length">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets the length of the syntax tree node.</summary>
      <returns>The length of the syntax tree node.</returns>
    </member>
    <member name="P:System.Web.Razor.Parser.SyntaxTree.SyntaxTreeNode.Parent">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets the parent tree node of the current tree node.</summary>
      <returns>The parent tree node of the current tree node.</returns>
    </member>
    <member name="P:System.Web.Razor.Parser.SyntaxTree.SyntaxTreeNode.Start">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets the specific source location for the syntax tree node.</summary>
      <returns>The specific source location for the syntax tree node.</returns>
    </member>
    <member name="T:System.Web.Razor.Text.BufferingTextReader">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Provides a lookahead buffer for the text reader.</summary>
    </member>
    <member name="M:System.Web.Razor.Text.BufferingTextReader.#ctor(System.IO.TextReader)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Initializes a new instance of the <see cref="T:System.Web.Razor.Text.BufferingTextReader" /> class.</summary>
      <param name="source">The text reader for the buffer.</param>
    </member>
    <member name="M:System.Web.Razor.Text.BufferingTextReader.BeginLookahead">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Begins the lookahead buffering operation for this <see cref="T:System.Web.Razor.Text.BufferingTextReader" />.</summary>
      <returns>A disposable action that ends the lookahead buffering.</returns>
    </member>
    <member name="M:System.Web.Razor.Text.BufferingTextReader.CancelBacktrack">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Discards the backtrack context associated the lookahead buffering operation.</summary>
    </member>
    <member name="P:System.Web.Razor.Text.BufferingTextReader.CurrentCharacter">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Gets the current character in the buffer.</summary>
      <returns>The current character in the buffer.</returns>
    </member>
    <member name="P:System.Web.Razor.Text.BufferingTextReader.CurrentLocation">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Gets or sets the current location of the character in the buffer.</summary>
      <returns>The current location of the character in the buffer.</returns>
    </member>
    <member name="M:System.Web.Razor.Text.BufferingTextReader.Dispose(System.Boolean)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Releases the unmanaged resources used by the current instance of this class, and optionally releases the managed resources.</summary>
      <param name="disposing">true to release both managed and unmanaged resources; false to release only unmanaged resources.</param>
    </member>
    <member name="M:System.Web.Razor.Text.BufferingTextReader.ExpandBuffer">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Reads the next character from the text reader and appends it to the lookahead buffer.</summary>
      <returns>true if a character was read from the text reader; otherwise, false.</returns>
    </member>
    <member name="M:System.Web.Razor.Text.BufferingTextReader.NextCharacter">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Advances the buffer position to the next character.</summary>
    </member>
    <member name="M:System.Web.Razor.Text.BufferingTextReader.Peek">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Returns the current character in the buffer.</summary>
      <returns>The current character in the buffer.</returns>
    </member>
    <member name="M:System.Web.Razor.Text.BufferingTextReader.Read">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Returns the current character from the buffer and advances the buffer position to the next character.</summary>
      <returns>The current character from the buffer.</returns>
    </member>
    <member name="T:System.Web.Razor.Text.ITextBuffer">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="P:System.Web.Razor.Text.ITextBuffer.Length">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="M:System.Web.Razor.Text.ITextBuffer.Peek">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="P:System.Web.Razor.Text.ITextBuffer.Position">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="M:System.Web.Razor.Text.ITextBuffer.Read">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="T:System.Web.Razor.Text.ITextDocument">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="P:System.Web.Razor.Text.ITextDocument.Location">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="T:System.Web.Razor.Text.LocationTagged`1">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Represents a location tagged.</summary>
      <typeparam name="T">The type of the location tagged.</typeparam>
    </member>
    <member name="M:System.Web.Razor.Text.LocationTagged`1.#ctor(`0,System.Int32,System.Int32,System.Int32)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Initializes a new instance of the <see cref="T:System.Web.Razor.Text.LocationTagged`1" /> class.</summary>
      <param name="value">The value of the source.</param>
      <param name="offset">The offset.</param>
      <param name="line">The line.</param>
      <param name="col">The column location of the source.</param>
    </member>
    <member name="M:System.Web.Razor.Text.LocationTagged`1.#ctor(`0,System.Web.Razor.Text.SourceLocation)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Initializes a new instance of the <see cref="T:System.Web.Razor.Text.LocationTagged`1" /> class.</summary>
      <param name="value">The value of the source.</param>
      <param name="location">The location of the source.</param>
    </member>
    <member name="M:System.Web.Razor.Text.LocationTagged`1.Equals(System.Object)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Determines whether the specified object is equal to the current object.</summary>
      <returns>true if the specified object is equal to the current object; otherwise, false.</returns>
      <param name="obj">The object to compare to.</param>
    </member>
    <member name="M:System.Web.Razor.Text.LocationTagged`1.GetHashCode">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Returns the hash code for the current instance.</summary>
      <returns>The hash code for the current instance.</returns>
    </member>
    <member name="P:System.Web.Razor.Text.LocationTagged`1.Location">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets or sets the location of the source.</summary>
      <returns>The location of the source.</returns>
    </member>
    <member name="M:System.Web.Razor.Text.LocationTagged`1.op_Equality(System.Web.Razor.Text.LocationTagged{`0},System.Web.Razor.Text.LocationTagged{`0})">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Determines whether the two <see cref="T:System.Web.Razor.Text.LocationTagged{`0}" /> object are equal.</summary>
      <returns>true if the two object are equal; otherwise, false.</returns>
      <param name="left">The first object to compare.</param>
      <param name="right">The second object to compare.</param>
    </member>
    <member name="M:System.Web.Razor.Text.LocationTagged`1.op_Implicit(System.Web.Razor.Text.LocationTagged{`0})~`0">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Converts the specified value to a <see cref="T:System.Web.Razor.Text.LocationTagged`1" /> object.</summary>
      <returns>true if successfully converted; otherwise, false.</returns>
      <param name="value">The value to convert.</param>
    </member>
    <member name="M:System.Web.Razor.Text.LocationTagged`1.op_Inequality(System.Web.Razor.Text.LocationTagged{`0},System.Web.Razor.Text.LocationTagged{`0})">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Determines whether the two <see cref="T:System.Web.Razor.Text.LocationTagged{`0}" /> object are not equal.</summary>
      <returns>true if the two object are not equal; otherwise, false.</returns>
      <param name="left">The first object to compare.</param>
      <param name="right">The second objet to compare.</param>
    </member>
    <member name="M:System.Web.Razor.Text.LocationTagged`1.ToString">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Returns a string representation of the current instance.</summary>
      <returns>The string that represents the current instance.</returns>
    </member>
    <member name="M:System.Web.Razor.Text.LocationTagged`1.ToString(System.String,System.IFormatProvider)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Returns a string representation of the current instance.</summary>
      <returns>A string that represents the current instance.</returns>
      <param name="format">The format.</param>
      <param name="formatProvider">The format provider.</param>
    </member>
    <member name="P:System.Web.Razor.Text.LocationTagged`1.Value">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets or sets the value of the source.</summary>
      <returns>The value of the source.</returns>
    </member>
    <member name="T:System.Web.Razor.Text.LookaheadTextReader">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="M:System.Web.Razor.Text.LookaheadTextReader.#ctor">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="M:System.Web.Razor.Text.LookaheadTextReader.BeginLookahead">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="M:System.Web.Razor.Text.LookaheadTextReader.CancelBacktrack">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="P:System.Web.Razor.Text.LookaheadTextReader.CurrentLocation">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="T:System.Web.Razor.Text.LookaheadToken">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Represents the token to look for the razor.</summary>
    </member>
    <member name="M:System.Web.Razor.Text.LookaheadToken.#ctor(System.Action)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Initializes a new instance of the <see cref="T:System.Web.Razor.Text.LookaheadToken" /> class.</summary>
      <param name="cancelAction">The action to cancel.</param>
    </member>
    <member name="M:System.Web.Razor.Text.LookaheadToken.Accept">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Accepts the token.</summary>
    </member>
    <member name="M:System.Web.Razor.Text.LookaheadToken.Dispose">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Releases the resources used by the current instance of the <see cref="T:System.Web.Razor.Text.LookaheadToken" /> class.</summary>
    </member>
    <member name="M:System.Web.Razor.Text.LookaheadToken.Dispose(System.Boolean)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Releases the unmanaged resources used by the <see cref="T:System.Web.Razor.Text.LookaheadToken" /> and optionally releases the managed resources.</summary>
      <param name="disposing">true to release both managed and unmanaged resources; false to release only unmanaged resources.</param>
    </member>
    <member name="T:System.Web.Razor.Text.SeekableTextReader">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Represents a reader </summary>
    </member>
    <member name="M:System.Web.Razor.Text.SeekableTextReader.#ctor(System.IO.TextReader)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Initializes a new instance of the <see cref="T:System.Web.Razor.Text.SeekableTextReader" /> class.</summary>
      <param name="source">The source reader.</param>
    </member>
    <member name="M:System.Web.Razor.Text.SeekableTextReader.#ctor(System.String)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Initializes a new instance of the <see cref="T:System.Web.Razor.Text.SeekableTextReader" /> class.</summary>
      <param name="content">The string content.</param>
    </member>
    <member name="M:System.Web.Razor.Text.SeekableTextReader.#ctor(System.Web.Razor.Text.ITextBuffer)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Initializes a new instance of the <see cref="T:System.Web.Razor.Text.SeekableTextReader" /> class.</summary>
      <param name="buffer">The text buffering.</param>
    </member>
    <member name="P:System.Web.Razor.Text.SeekableTextReader.Length">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets the length of the text to read.</summary>
      <returns>The length of the text to read.</returns>
    </member>
    <member name="P:System.Web.Razor.Text.SeekableTextReader.Location">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets the source of location for the text reader.</summary>
      <returns>The source of location for the text reader.</returns>
    </member>
    <member name="M:System.Web.Razor.Text.SeekableTextReader.Peek">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Reads the next character without changing the state of the reader or the character source.</summary>
      <returns>An integer representing the next character to be read.</returns>
    </member>
    <member name="P:System.Web.Razor.Text.SeekableTextReader.Position">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets or sets the position to seek the text reader.</summary>
      <returns>The position to seek the text reader.</returns>
    </member>
    <member name="M:System.Web.Razor.Text.SeekableTextReader.Read">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Reads the next character from the text reader and advances the character position by one character.</summary>
      <returns>The next character from the text reader, or -1 if no more characters are available.</returns>
    </member>
    <member name="T:System.Web.Razor.Text.SourceLocation">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Represents a source location.</summary>
    </member>
    <member name="M:System.Web.Razor.Text.SourceLocation.#ctor(System.Int32,System.Int32,System.Int32)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Initializes a new instance of the <see cref="T:System.Web.Razor.Text.SourceLocation" /> class.</summary>
      <param name="absoluteIndex">The absolute index.</param>
      <param name="lineIndex">The line index.</param>
      <param name="characterIndex">The character index.</param>
    </member>
    <member name="P:System.Web.Razor.Text.SourceLocation.AbsoluteIndex">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets the absolute index for the source location.</summary>
      <returns>The absolute index for the source location.</returns>
    </member>
    <member name="M:System.Web.Razor.Text.SourceLocation.Add(System.Web.Razor.Text.SourceLocation,System.Web.Razor.Text.SourceLocation)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Adds the two <see cref="T:System.Web.Razor.Text.SourceLocation" /> object.</summary>
      <returns>The sum of the two <see cref="T:System.Web.Razor.Text.SourceLocation" /> object.</returns>
      <param name="left">The first object to add.</param>
      <param name="right">The second object to add.</param>
    </member>
    <member name="M:System.Web.Razor.Text.SourceLocation.Advance(System.Web.Razor.Text.SourceLocation,System.String)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Advances the specified object to the given location.</summary>
      <returns>The source location.</returns>
      <param name="left">The location where to advance the object.</param>
      <param name="text">The text that advances to the given location.</param>
    </member>
    <member name="P:System.Web.Razor.Text.SourceLocation.CharacterIndex">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets the character index for the source location.</summary>
      <returns>The character index for the source location.</returns>
    </member>
    <member name="M:System.Web.Razor.Text.SourceLocation.CompareTo(System.Web.Razor.Text.SourceLocation)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Compares current object to the other object.</summary>
      <returns>The value of the objects compared.</returns>
      <param name="other">The object to compare.</param>
    </member>
    <member name="M:System.Web.Razor.Text.SourceLocation.Equals(System.Object)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Determines whether the specified object is equal to the current object.</summary>
      <returns>true if the specified object is equal to the current object; otherwise, false.</returns>
      <param name="obj">The object to compare to.</param>
    </member>
    <member name="M:System.Web.Razor.Text.SourceLocation.Equals(System.Web.Razor.Text.SourceLocation)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Determines whether the current <see cref="T:System.Web.Razor.Text.SourceLocation" /> object is equal to the other <see cref="T:System.Web.Razor.Text.SourceLocation" /> object.</summary>
      <returns>true if the current object is equal to the other object; otherwise, false.</returns>
      <param name="other">The object to compare to.</param>
    </member>
    <member name="M:System.Web.Razor.Text.SourceLocation.GetHashCode">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Returns the hash code for this instance.</summary>
      <returns>The hash code for this instance.</returns>
    </member>
    <member name="P:System.Web.Razor.Text.SourceLocation.LineIndex">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets the line index for the source location.</summary>
      <returns>The line index for the source location.</returns>
    </member>
    <member name="M:System.Web.Razor.Text.SourceLocation.op_Addition(System.Web.Razor.Text.SourceLocation,System.Web.Razor.Text.SourceLocation)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Adds the two <see cref="T:System.Web.Razor.Text.SourceLocation" /> object.</summary>
      <returns>The <see cref="T:System.Web.Razor.Text.SourceLocation" /> that is the sum of the two object.</returns>
      <param name="left">The object to add.</param>
      <param name="right">The object to add.</param>
    </member>
    <member name="M:System.Web.Razor.Text.SourceLocation.op_Equality(System.Web.Razor.Text.SourceLocation,System.Web.Razor.Text.SourceLocation)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Determines whether the two objects are equal.</summary>
      <returns>true if the two objects are equal; otherwise, false.</returns>
      <param name="left">The first object to compare.</param>
      <param name="right">The second object to compare.</param>
    </member>
    <member name="M:System.Web.Razor.Text.SourceLocation.op_GreaterThan(System.Web.Razor.Text.SourceLocation,System.Web.Razor.Text.SourceLocation)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Determines whether the first object is greater than the second object.</summary>
      <returns>true if the first object is greater than the second object; otherwise, false.</returns>
      <param name="left">The first object.</param>
      <param name="right">The second object.</param>
    </member>
    <member name="M:System.Web.Razor.Text.SourceLocation.op_Inequality(System.Web.Razor.Text.SourceLocation,System.Web.Razor.Text.SourceLocation)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Determines whether the two <see cref="T:System.Web.Razor.Text.SourceLocation" />object are not equal.</summary>
      <returns>true if the two objects are not equal; otherwise, false.</returns>
      <param name="left">The object to compare.</param>
      <param name="right">The object to compare.</param>
    </member>
    <member name="M:System.Web.Razor.Text.SourceLocation.op_LessThan(System.Web.Razor.Text.SourceLocation,System.Web.Razor.Text.SourceLocation)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Determines whether the first object is less than the second object.</summary>
      <returns>true if the first object is greater than the second object; otherwise, false.</returns>
      <param name="left">The first object.</param>
      <param name="right">The second object.</param>
    </member>
    <member name="M:System.Web.Razor.Text.SourceLocation.op_Subtraction(System.Web.Razor.Text.SourceLocation,System.Web.Razor.Text.SourceLocation)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
      <returns>Returns <see cref="T:System.Web.Razor.Text.SourceLocation" />.</returns>
    </member>
    <member name="M:System.Web.Razor.Text.SourceLocation.Subtract(System.Web.Razor.Text.SourceLocation,System.Web.Razor.Text.SourceLocation)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Subtracts the first object to the second object.</summary>
      <returns>The difference of the two objects.</returns>
      <param name="left">The first object.</param>
      <param name="right">The second object.</param>
    </member>
    <member name="M:System.Web.Razor.Text.SourceLocation.ToString">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Returns a string representation of the source location.</summary>
      <returns>A string representation of the source location.</returns>
    </member>
    <member name="F:System.Web.Razor.Text.SourceLocation.Undefined">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Text.SourceLocation.Zero">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="T:System.Web.Razor.Text.SourceLocationTracker">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Provides a source location tracker.</summary>
    </member>
    <member name="M:System.Web.Razor.Text.SourceLocationTracker.#ctor">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Initializes a new instance of the <see cref="T:System.Web.Razor.Text.SourceLocationTracker" /> class.</summary>
    </member>
    <member name="M:System.Web.Razor.Text.SourceLocationTracker.#ctor(System.Web.Razor.Text.SourceLocation)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Initializes a new instance of the <see cref="T:System.Web.Razor.Text.SourceLocationTracker" /> class.</summary>
      <param name="currentLocation">The current location of the source.</param>
    </member>
    <member name="M:System.Web.Razor.Text.SourceLocationTracker.CalculateNewLocation(System.Web.Razor.Text.SourceLocation,System.String)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Calculates the new location of the source.</summary>
      <returns>The new source location.</returns>
      <param name="lastPosition">The last position.</param>
      <param name="newContent">The new content.</param>
    </member>
    <member name="P:System.Web.Razor.Text.SourceLocationTracker.CurrentLocation">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets or sets the current location of the source.</summary>
      <returns>The current location of the source.</returns>
    </member>
    <member name="M:System.Web.Razor.Text.SourceLocationTracker.UpdateLocation(System.Char,System.Char)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Updates the source location.</summary>
      <param name="characterRead">The character to read.</param>
      <param name="nextCharacter">The character to update.</param>
    </member>
    <member name="M:System.Web.Razor.Text.SourceLocationTracker.UpdateLocation(System.String)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Updates the location of the source.</summary>
      <returns>The <see cref="T:System.Web.Razor.Text.SourceLocationTracker" /> object.</returns>
      <param name="content">The content of the source.</param>
    </member>
    <member name="T:System.Web.Razor.Text.TextBufferReader">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Provides a reader for text buffer.</summary>
    </member>
    <member name="M:System.Web.Razor.Text.TextBufferReader.#ctor(System.Web.Razor.Text.ITextBuffer)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Initializes a new instance of the <see cref="T:System.Web.Razor.Text.TextBufferReader" /> class.</summary>
      <param name="buffer">The text buffer to read.</param>
    </member>
    <member name="M:System.Web.Razor.Text.TextBufferReader.BeginLookahead">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Begins reading the current text buffer.</summary>
      <returns>An <see cref="T:System.IDisposable" /> instance that stops the text buffer.</returns>
    </member>
    <member name="M:System.Web.Razor.Text.TextBufferReader.CancelBacktrack">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Cancels backtrack.</summary>
    </member>
    <member name="P:System.Web.Razor.Text.TextBufferReader.CurrentLocation">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets the current location of the text buffer.</summary>
      <returns>The current location of the text buffer.</returns>
    </member>
    <member name="M:System.Web.Razor.Text.TextBufferReader.Dispose(System.Boolean)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Releases the unmanaged resources used by the <see cref="T:System.Web.Razor.Text.TextBufferReader" /> class and optionally releases the managed resources.</summary>
      <param name="disposing">true to release both managed and unmanaged resources; false to release only unmanaged resources.</param>
    </member>
    <member name="M:System.Web.Razor.Text.TextBufferReader.Peek">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Returns the next text buffer to read.</summary>
      <returns>The next text buffer to read.</returns>
    </member>
    <member name="M:System.Web.Razor.Text.TextBufferReader.Read">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Reads the current text buffer.</summary>
      <returns>The current text buffer.</returns>
    </member>
    <member name="T:System.Web.Razor.Text.TextChange">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Describes a text change operation.</summary>
    </member>
    <member name="M:System.Web.Razor.Text.TextChange.#ctor(System.Int32,System.Int32,System.Web.Razor.Text.ITextBuffer,System.Int32,System.Int32,System.Web.Razor.Text.ITextBuffer)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Initializes a new instance of the <see cref="T:System.Web.Razor.Text.TextChange" /> class.</summary>
      <param name="oldPosition">The position of the text change in the snapshot immediately before the change.</param>
      <param name="oldLength">The length of the old text.</param>
      <param name="oldBuffer">An old text buffer.</param>
      <param name="newPosition">The position of the text change in the snapshot immediately after the change.</param>
      <param name="newLength">The length of the new text.</param>
      <param name="newBuffer">A new text buffer.</param>
    </member>
    <member name="M:System.Web.Razor.Text.TextChange.ApplyChange(System.String,System.Int32)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Applies the specified text change.</summary>
      <returns>A string that contains the value of the text.</returns>
      <param name="content">The content of the text.</param>
      <param name="changeOffset">The change offset.</param>
    </member>
    <member name="M:System.Web.Razor.Text.TextChange.ApplyChange(System.Web.Razor.Parser.SyntaxTree.Span)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Applies the specified text change.</summary>
      <returns>A string that contains the value of the text.</returns>
      <param name="span">The span of the text change.</param>
    </member>
    <member name="M:System.Web.Razor.Text.TextChange.Equals(System.Object)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Determines whether the specified object is equal to the current object.</summary>
      <returns>true if the specified object is equal to the current object; otherwise, false.</returns>
      <param name="obj">The object to compare to.</param>
    </member>
    <member name="M:System.Web.Razor.Text.TextChange.GetHashCode">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets the hash code for this text change.</summary>
      <returns>The hash code for this text change.</returns>
    </member>
    <member name="P:System.Web.Razor.Text.TextChange.IsDelete">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets a value that indicates whether this text change is a delete.</summary>
      <returns>true if this text change is a delete; otherwise, false.</returns>
    </member>
    <member name="P:System.Web.Razor.Text.TextChange.IsInsert">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets a value that indicates whether this text change is an insert.</summary>
      <returns>true if this text change is an insert; otherwise, false.</returns>
    </member>
    <member name="P:System.Web.Razor.Text.TextChange.IsReplace">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets a value that indicates whether this text change is a replace.</summary>
      <returns>true if this text change is a replace; otherwise, false.</returns>
    </member>
    <member name="P:System.Web.Razor.Text.TextChange.NewBuffer">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets or sets a new text buffer.</summary>
      <returns>A new text buffer.</returns>
    </member>
    <member name="P:System.Web.Razor.Text.TextChange.NewLength">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets or sets the length of the new text.</summary>
      <returns>The length of the new text.</returns>
    </member>
    <member name="P:System.Web.Razor.Text.TextChange.NewPosition">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets or sets the position of the text change in the snapshot immediately after the change.</summary>
      <returns>The position of the text change in the snapshot immediately after the change.</returns>
    </member>
    <member name="P:System.Web.Razor.Text.TextChange.NewText">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets or sets the text that replaced the old text.</summary>
      <returns>The text that replaced the old text.</returns>
    </member>
    <member name="M:System.Web.Razor.Text.TextChange.Normalize">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Returns a normalized value of this text change.</summary>
      <returns>A normalized value of this text change.</returns>
    </member>
    <member name="P:System.Web.Razor.Text.TextChange.OldBuffer">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets or sets an old text buffer.</summary>
      <returns>An old text buffer.</returns>
    </member>
    <member name="P:System.Web.Razor.Text.TextChange.OldLength">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets or sets the length of the old text.</summary>
      <returns>The length of the old text.</returns>
    </member>
    <member name="P:System.Web.Razor.Text.TextChange.OldPosition">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets or sets the position of the text change in the snapshot immediately before the change.</summary>
      <returns>The position of the text change in the snapshot immediately before the change.</returns>
    </member>
    <member name="P:System.Web.Razor.Text.TextChange.OldText">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets or sets the text that was replaced.</summary>
      <returns>The text that was replaced.</returns>
    </member>
    <member name="M:System.Web.Razor.Text.TextChange.op_Equality(System.Web.Razor.Text.TextChange,System.Web.Razor.Text.TextChange)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Determines whether the two text change are equal.</summary>
      <returns>true if the two text change are equal; otherwise, false.</returns>
      <param name="left">The left text change.</param>
      <param name="right">The right text change.</param>
    </member>
    <member name="M:System.Web.Razor.Text.TextChange.op_Inequality(System.Web.Razor.Text.TextChange,System.Web.Razor.Text.TextChange)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Determines whether the two text change are not equal.</summary>
      <returns>true if the two text change are not equal; otherwise, false.</returns>
      <param name="left">The left text change.</param>
      <param name="right">The right text change.</param>
    </member>
    <member name="M:System.Web.Razor.Text.TextChange.ToString">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Returns a string representation of the text change.</summary>
      <returns>A string representation of the text change.</returns>
    </member>
    <member name="T:System.Web.Razor.Text.TextChangeType">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Text.TextChangeType.Insert">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Text.TextChangeType.Remove">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="T:System.Web.Razor.Text.TextDocumentReader">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Provides reader for text document.</summary>
    </member>
    <member name="M:System.Web.Razor.Text.TextDocumentReader.#ctor(System.Web.Razor.Text.ITextDocument)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Initializes a new instance of the <see cref="T:System.Web.Razor.Text.TextDocumentReader" /> class.</summary>
      <param name="source">The source to read.</param>
    </member>
    <member name="P:System.Web.Razor.Text.TextDocumentReader.Length">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets the length of the document.</summary>
      <returns>The length of the document.</returns>
    </member>
    <member name="P:System.Web.Razor.Text.TextDocumentReader.Location">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets the location of the document.</summary>
      <returns>The location of the document.</returns>
    </member>
    <member name="M:System.Web.Razor.Text.TextDocumentReader.Peek">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Returns the next text document to read.</summary>
      <returns>The next text document to read.</returns>
    </member>
    <member name="P:System.Web.Razor.Text.TextDocumentReader.Position">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets or sets the position of the text document.</summary>
      <returns>The position of the text document.</returns>
    </member>
    <member name="M:System.Web.Razor.Text.TextDocumentReader.Read">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Reads a specified text document.</summary>
      <returns>The text document.</returns>
    </member>
    <member name="T:System.Web.Razor.Tokenizer.CSharpHelpers">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Provides helper functions for the CSharp tokenizer.</summary>
    </member>
    <member name="M:System.Web.Razor.Tokenizer.CSharpHelpers.IsIdentifierPart(System.Char)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Determines whether the specified character can be used for identifier.</summary>
      <returns>true if the specified character can be used for identifier; otherwise, false.</returns>
      <param name="character">The character to check.</param>
    </member>
    <member name="M:System.Web.Razor.Tokenizer.CSharpHelpers.IsIdentifierStart(System.Char)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Determines whether the specified character can be used as an identifier start character.</summary>
      <returns>true if the specified character can be used as an identifier start character; otherwise, false.</returns>
      <param name="character">The character to check.</param>
    </member>
    <member name="M:System.Web.Razor.Tokenizer.CSharpHelpers.IsRealLiteralSuffix(System.Char)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Determines whether the specified character is a literal suffix for real numbers.</summary>
      <returns>true if the specified character is a literal suffix for real numbers; otherwise, false.</returns>
      <param name="character">The character to check.</param>
    </member>
    <member name="T:System.Web.Razor.Tokenizer.CSharpTokenizer">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Represents a CSharp tokenizer.</summary>
    </member>
    <member name="M:System.Web.Razor.Tokenizer.CSharpTokenizer.#ctor(System.Web.Razor.Text.ITextDocument)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Initializes a new instance of the <see cref="T:System.Web.Razor.Tokenizer.CSharpTokenizer" /> class.</summary>
      <param name="source">The source.</param>
    </member>
    <member name="M:System.Web.Razor.Tokenizer.CSharpTokenizer.CreateSymbol(System.Web.Razor.Text.SourceLocation,System.String,System.Web.Razor.Tokenizer.Symbols.CSharpSymbolType,System.Collections.Generic.IEnumerable{System.Web.Razor.Parser.SyntaxTree.RazorError})">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Creates a CSharp tokenizer symbol.</summary>
      <returns>A CSharp tokenizer symbol.</returns>
      <param name="start">The beginning of the source location.</param>
      <param name="content">The contents.</param>
      <param name="type">The CSharp symbol type.</param>
      <param name="errors">A collection of razor errors.</param>
    </member>
    <member name="P:System.Web.Razor.Tokenizer.CSharpTokenizer.RazorCommentStarType">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets the star type of the <see cref="T:System.Web.Razor.Tokenizer.Symbols.CSharpSymbolType" />.</summary>
      <returns>The star type of the <see cref="T:System.Web.Razor.Tokenizer.Symbols.CSharpSymbolType" />.</returns>
    </member>
    <member name="P:System.Web.Razor.Tokenizer.CSharpTokenizer.RazorCommentTransitionType">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets the razor comment transition type for the <see cref="T:System.Web.Razor.Tokenizer.Symbols.CSharpSymbolType" />.</summary>
      <returns>The razor comment transition type for the <see cref="T:System.Web.Razor.Tokenizer.Symbols.CSharpSymbolType" />.</returns>
    </member>
    <member name="P:System.Web.Razor.Tokenizer.CSharpTokenizer.RazorCommentType">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets the razor comment type for the <see cref="T:System.Web.Razor.Tokenizer.Symbols.CSharpSymbolType" />.</summary>
      <returns>The razor comment type for the <see cref="T:System.Web.Razor.Tokenizer.Symbols.CSharpSymbolType" />.</returns>
    </member>
    <member name="P:System.Web.Razor.Tokenizer.CSharpTokenizer.StartState">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets the state of the machine.</summary>
      <returns>The state of the machine.</returns>
    </member>
    <member name="T:System.Web.Razor.Tokenizer.HtmlTokenizer">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Represents the html tokenizer of the razor.</summary>
    </member>
    <member name="M:System.Web.Razor.Tokenizer.HtmlTokenizer.#ctor(System.Web.Razor.Text.ITextDocument)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Initializes a new instance of the <see cref="T:System.Web.Razor.Tokenizer.HtmlTokenizer" /> class.</summary>
      <param name="source">The source for the text document.</param>
    </member>
    <member name="M:System.Web.Razor.Tokenizer.HtmlTokenizer.CreateSymbol(System.Web.Razor.Text.SourceLocation,System.String,System.Web.Razor.Tokenizer.Symbols.HtmlSymbolType,System.Collections.Generic.IEnumerable{System.Web.Razor.Parser.SyntaxTree.RazorError})">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Creates a symbol for the specified parameters of the html tokenizer.</summary>
      <returns>A symbol to create for the specified parameters of the html tokenizer.</returns>
      <param name="start">The source location.</param>
      <param name="content">The content string.</param>
      <param name="type">The type of html symbol.</param>
      <param name="errors">The razor errors.</param>
    </member>
    <member name="P:System.Web.Razor.Tokenizer.HtmlTokenizer.RazorCommentStarType">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets the html symbols for the razor comment star type.</summary>
      <returns>The html symbols for the razor comment star type.</returns>
    </member>
    <member name="P:System.Web.Razor.Tokenizer.HtmlTokenizer.RazorCommentTransitionType">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets the html symbols for the razor comment transition type.</summary>
      <returns>The html symbols for the razor comment transition type.</returns>
    </member>
    <member name="P:System.Web.Razor.Tokenizer.HtmlTokenizer.RazorCommentType">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets the html symbols for the razor comment type.</summary>
      <returns>The html symbols for the razor comment type.</returns>
    </member>
    <member name="P:System.Web.Razor.Tokenizer.HtmlTokenizer.StartState">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets the start of the state machine for the html.</summary>
      <returns>The start of the state machine for the html.</returns>
    </member>
    <member name="T:System.Web.Razor.Tokenizer.ITokenizer">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="M:System.Web.Razor.Tokenizer.ITokenizer.NextSymbol">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="T:System.Web.Razor.Tokenizer.Tokenizer`2">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
      <typeparam name="TSymbol">The type for the language symbol.</typeparam>
      <typeparam name="TSymbolType">The enumeration type for the language symbol.</typeparam>
    </member>
    <member name="M:System.Web.Razor.Tokenizer.Tokenizer`2.#ctor(System.Web.Razor.Text.ITextDocument)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Initializes a new instance of the <see cref="T:System.Web.Razor.Tokenizer.Tokenizer`2" /> class.</summary>
      <param name="source">The source.</param>
    </member>
    <member name="M:System.Web.Razor.Tokenizer.Tokenizer`2.AfterRazorCommentTransition">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Returns a result after the razor comment transition.</summary>
      <returns>The result.</returns>
    </member>
    <member name="M:System.Web.Razor.Tokenizer.Tokenizer`2.At(System.String,System.Boolean)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Determines whether the lookahead buffer contains the expected string.</summary>
      <returns>true if the lookahead buffer contains the expected string; otherwise, false.</returns>
      <param name="expected">The string to check.</param>
      <param name="caseSensitive">true to indicate comparison is case sensitive; otherwise, false.</param>
    </member>
    <member name="P:System.Web.Razor.Tokenizer.Tokenizer`2.Buffer">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets or sets the buffer for the tokenizer.</summary>
      <returns>The buffer for the tokenizer.</returns>
    </member>
    <member name="M:System.Web.Razor.Tokenizer.Tokenizer`2.CharOrWhiteSpace(System.Char)">
      <summary>Returns a function delegate, that accepts a character parameter and returns a value that indicates whether the character parameter is equal to specified character or white space.</summary>
      <returns>A function delegate.</returns>
      <param name="character">The character used to compare.</param>
    </member>
    <member name="M:System.Web.Razor.Tokenizer.Tokenizer`2.CreateSymbol(System.Web.Razor.Text.SourceLocation,System.String,`1,System.Collections.Generic.IEnumerable{System.Web.Razor.Parser.SyntaxTree.RazorError})">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Creates a language symbol type for the tokenizer with the specified content.</summary>
      <returns>A language symbol type for the tokenizer.</returns>
      <param name="start">The start of the source location.</param>
      <param name="content">The content value.</param>
      <param name="type">The symbol type.</param>
      <param name="errors">The razor error.</param>
    </member>
    <member name="P:System.Web.Razor.Tokenizer.Tokenizer`2.CurrentCharacter">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets the current character in the tokenizer.</summary>
      <returns>The current character.</returns>
    </member>
    <member name="P:System.Web.Razor.Tokenizer.Tokenizer`2.CurrentErrors">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets a list of the current razor errors.</summary>
      <returns>A list of the current errors.</returns>
    </member>
    <member name="P:System.Web.Razor.Tokenizer.Tokenizer`2.CurrentLocation">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets the current source location.</summary>
      <returns>The current source location.</returns>
    </member>
    <member name="P:System.Web.Razor.Tokenizer.Tokenizer`2.CurrentStart">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets the current start of the source location.</summary>
      <returns>The current start of the source location.</returns>
    </member>
    <member name="P:System.Web.Razor.Tokenizer.Tokenizer`2.EndOfFile">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets a value whether the tokenizer current location is at the end of the file.</summary>
      <returns>true if the tokenizer current location is at the end of the file; otherwise, false.</returns>
    </member>
    <member name="M:System.Web.Razor.Tokenizer.Tokenizer`2.EndSymbol(System.Web.Razor.Text.SourceLocation,`1)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Returns the language end symbol type used by the tokenizer.</summary>
      <returns>The language end symbol type.</returns>
      <param name="start">The start of the source location.</param>
      <param name="type">The enumeration type for the language symbol.</param>
    </member>
    <member name="M:System.Web.Razor.Tokenizer.Tokenizer`2.EndSymbol(`1)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Returns the language end symbol type used by the tokenizer.</summary>
      <returns>The language end symbol type.</returns>
      <param name="type">The enumeration type for the language symbol.</param>
    </member>
    <member name="P:System.Web.Razor.Tokenizer.Tokenizer`2.HaveContent">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets a value whether the tokenizer have content.</summary>
      <returns>true if the tokenizer have content; otherwise, false.</returns>
    </member>
    <member name="M:System.Web.Razor.Tokenizer.Tokenizer`2.MoveNext">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Reads to the next character from the code reader.</summary>
    </member>
    <member name="M:System.Web.Razor.Tokenizer.Tokenizer`2.NextSymbol">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Shows the next symbol to be used.</summary>
      <returns>The next symbol to be used.</returns>
    </member>
    <member name="M:System.Web.Razor.Tokenizer.Tokenizer`2.Peek">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Reads the next symbol in the code.</summary>
      <returns>The next symbol to read.</returns>
    </member>
    <member name="M:System.Web.Razor.Tokenizer.Tokenizer`2.RazorCommentBody">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Parses the Razor comment body.</summary>
      <returns>The object that represent the state of the result.</returns>
    </member>
    <member name="P:System.Web.Razor.Tokenizer.Tokenizer`2.RazorCommentStarType">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets the star type for the razor comment.</summary>
      <returns>The star type for the razor comment.</returns>
    </member>
    <member name="P:System.Web.Razor.Tokenizer.Tokenizer`2.RazorCommentTransitionType">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets the transition type for the razor comment.</summary>
      <returns>The transition type for the razor comment.</returns>
    </member>
    <member name="P:System.Web.Razor.Tokenizer.Tokenizer`2.RazorCommentType">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets the type of razor comment.</summary>
      <returns>The type of razor comment.</returns>
    </member>
    <member name="M:System.Web.Razor.Tokenizer.Tokenizer`2.Reset">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Sets the tokenizer status to its initial state.</summary>
    </member>
    <member name="M:System.Web.Razor.Tokenizer.Tokenizer`2.ResumeSymbol(`0)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Resumes using the previous language symbol type.</summary>
      <param name="previous">The previous language symbol type.</param>
    </member>
    <member name="M:System.Web.Razor.Tokenizer.Tokenizer`2.Single(`1)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Uses a single type of symbol.</summary>
      <returns>A single type of symbol.</returns>
      <param name="type">The type of symbol.</param>
    </member>
    <member name="P:System.Web.Razor.Tokenizer.Tokenizer`2.Source">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets the source of the text document.</summary>
      <returns>The source of the source document.</returns>
    </member>
    <member name="M:System.Web.Razor.Tokenizer.Tokenizer`2.StartSymbol">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Returns the start symbol used in this class.</summary>
    </member>
    <member name="M:System.Web.Razor.Tokenizer.Tokenizer`2.System#Web#Razor#Tokenizer#ITokenizer#NextSymbol">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Returns the next language symbol type.</summary>
      <returns>The next language symbol type.</returns>
    </member>
    <member name="M:System.Web.Razor.Tokenizer.Tokenizer`2.TakeAll(System.String,System.Boolean)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Takes the string if found in the lookahead buffer into the tokenizer buffer.</summary>
      <returns>true if the lookahead buffer contains the expected string; otherwise, false.</returns>
      <param name="expected">The string to match.</param>
      <param name="caseSensitive">true to indicate comparison is case sensitive; otherwise, false.</param>
    </member>
    <member name="M:System.Web.Razor.Tokenizer.Tokenizer`2.TakeCurrent">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Accepts the current character into the buffer.</summary>
    </member>
    <member name="M:System.Web.Razor.Tokenizer.Tokenizer`2.TakeString(System.String,System.Boolean)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Accepts the given input string into the buffer.</summary>
      <returns>true if the whole input string was accepted; false, if only a substring was accepted.</returns>
      <param name="input">The input string.</param>
      <param name="caseSensitive">true to indicate comparison is case sensitive; otherwise, false.</param>
    </member>
    <member name="M:System.Web.Razor.Tokenizer.Tokenizer`2.TakeUntil(System.Func{System.Char,System.Boolean})">
      <summary>Parses the source document until the condition specified by predicate is met or end file is reached.</summary>
      <returns>true if the predicate condition is met; false if end of file is reached.</returns>
      <param name="predicate">The predicate that specifies the processing condition.</param>
    </member>
    <member name="T:System.Web.Razor.Tokenizer.TokenizerView`3">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Represents the specified parameters for the tokenizer view.</summary>
      <typeparam name="TTokenizer">The type tokenizer.</typeparam>
      <typeparam name="TSymbol">The type symbol.</typeparam>
      <typeparam name="TSymbolType">The token symbol type.</typeparam>
    </member>
    <member name="M:System.Web.Razor.Tokenizer.TokenizerView`3.#ctor(`0)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Initializes a new instance of the <see cref="T:System.Web.Razor.Tokenizer.TokenizerView`3" /> class.</summary>
      <param name="tokenizer">The tokenizer view.</param>
    </member>
    <member name="P:System.Web.Razor.Tokenizer.TokenizerView`3.Current">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets the current view of the TSymbol.</summary>
      <returns>The current view of the TSymbol.</returns>
    </member>
    <member name="P:System.Web.Razor.Tokenizer.TokenizerView`3.EndOfFile">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets a value that indicates whether the view can reach the end of a file.</summary>
      <returns>true if the view can reach the end of a file; otherwise, false.</returns>
    </member>
    <member name="M:System.Web.Razor.Tokenizer.TokenizerView`3.Next">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Determines whether the tokenizer moves to the next view.</summary>
      <returns>true if the tokenizer moves to the next view; false.</returns>
    </member>
    <member name="M:System.Web.Razor.Tokenizer.TokenizerView`3.PutBack(`1)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Puts a specified symbol into the tokenizer view.</summary>
      <param name="symbol">The symbol.</param>
    </member>
    <member name="P:System.Web.Razor.Tokenizer.TokenizerView`3.Source">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets the source of the text document for the tokenizer view.</summary>
      <returns>The source of the text document for the tokenizer view.</returns>
    </member>
    <member name="P:System.Web.Razor.Tokenizer.TokenizerView`3.Tokenizer">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets the tokenizer to view the symbols for the razor.</summary>
      <returns>The tokenizer to view the symbols for the razor.</returns>
    </member>
    <member name="T:System.Web.Razor.Tokenizer.VBHelpers">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Represents a set of characters as helpers in VB.</summary>
    </member>
    <member name="M:System.Web.Razor.Tokenizer.VBHelpers.IsDoubleQuote(System.Char)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Indicates a value whether a specified character is enclosed in double quotation marks (").</summary>
      <returns>true if the character is enclosed in double quotation marks ("); otherwise, false.</returns>
      <param name="character">The character.</param>
    </member>
    <member name="M:System.Web.Razor.Tokenizer.VBHelpers.IsOctalDigit(System.Char)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Indicates a value whether a character is in octal digit.</summary>
      <returns>true if a character is in octal digit; otherwise, false.</returns>
      <param name="character">The character.</param>
    </member>
    <member name="M:System.Web.Razor.Tokenizer.VBHelpers.IsSingleQuote(System.Char)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Indicates a value whether a specified character is enclosed in a single quotation mark (').</summary>
      <returns>true if the character is enclosed in a single quotation mark ('); otherwise, false.</returns>
      <param name="character">The character.</param>
    </member>
    <member name="T:System.Web.Razor.Tokenizer.VBTokenizer">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Allows an application to break a VB symbol into tokens.</summary>
    </member>
    <member name="M:System.Web.Razor.Tokenizer.VBTokenizer.#ctor(System.Web.Razor.Text.ITextDocument)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Initializes a new instance of the <see cref="T:System.Web.Razor.Tokenizer.VBTokenizer" /> class.</summary>
      <param name="source">The source of text.</param>
    </member>
    <member name="M:System.Web.Razor.Tokenizer.VBTokenizer.CreateSymbol(System.Web.Razor.Text.SourceLocation,System.String,System.Web.Razor.Tokenizer.Symbols.VBSymbolType,System.Collections.Generic.IEnumerable{System.Web.Razor.Parser.SyntaxTree.RazorError})">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Creates a domain of symbols.</summary>
      <returns>A domain of symbols.</returns>
      <param name="start">The source location.</param>
      <param name="content">The content value.</param>
      <param name="type">The <see cref="T:System.Web.Razor.Tokenizer.Symbols.VBSymbolType" />.</param>
      <param name="errors">The razor error.</param>
    </member>
    <member name="P:System.Web.Razor.Tokenizer.VBTokenizer.RazorCommentStarType">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets the VB symbol type.</summary>
      <returns>The VB symbol type.</returns>
    </member>
    <member name="P:System.Web.Razor.Tokenizer.VBTokenizer.RazorCommentTransitionType">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets the transition style of the VB symbol.</summary>
      <returns>The transition style of the VB symbol.</returns>
    </member>
    <member name="P:System.Web.Razor.Tokenizer.VBTokenizer.RazorCommentType">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets the razor type comment of the <see cref="T:System.Web.Razor.Tokenizer.Symbols.VBSymbolType" />.</summary>
      <returns>The razor type comment of the <see cref="T:System.Web.Razor.Tokenizer.Symbols.VBSymbolType" />.</returns>
    </member>
    <member name="P:System.Web.Razor.Tokenizer.VBTokenizer.StartState">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets the start state of the machine.</summary>
      <returns>The start state of the machine.</returns>
    </member>
    <member name="T:System.Web.Razor.Tokenizer.Symbols.CSharpKeyword">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.CSharpKeyword.Abstract">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.CSharpKeyword.As">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.CSharpKeyword.Base">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.CSharpKeyword.Bool">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.CSharpKeyword.Break">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.CSharpKeyword.Byte">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.CSharpKeyword.Case">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.CSharpKeyword.Catch">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.CSharpKeyword.Char">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.CSharpKeyword.Checked">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.CSharpKeyword.Class">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.CSharpKeyword.Const">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.CSharpKeyword.Continue">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.CSharpKeyword.Decimal">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.CSharpKeyword.Default">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.CSharpKeyword.Delegate">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.CSharpKeyword.Do">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.CSharpKeyword.Double">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.CSharpKeyword.Else">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.CSharpKeyword.Enum">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.CSharpKeyword.Event">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.CSharpKeyword.Explicit">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.CSharpKeyword.Extern">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.CSharpKeyword.False">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.CSharpKeyword.Finally">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.CSharpKeyword.Fixed">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.CSharpKeyword.Float">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.CSharpKeyword.For">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.CSharpKeyword.Foreach">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.CSharpKeyword.Goto">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.CSharpKeyword.If">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.CSharpKeyword.Implicit">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.CSharpKeyword.In">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.CSharpKeyword.Int">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.CSharpKeyword.Interface">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.CSharpKeyword.Internal">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.CSharpKeyword.Is">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.CSharpKeyword.Lock">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.CSharpKeyword.Long">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.CSharpKeyword.Namespace">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.CSharpKeyword.New">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.CSharpKeyword.Null">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.CSharpKeyword.Object">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.CSharpKeyword.Operator">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.CSharpKeyword.Out">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.CSharpKeyword.Override">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.CSharpKeyword.Params">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.CSharpKeyword.Private">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.CSharpKeyword.Protected">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.CSharpKeyword.Public">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.CSharpKeyword.Readonly">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.CSharpKeyword.Ref">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.CSharpKeyword.Return">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.CSharpKeyword.Sbyte">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.CSharpKeyword.Sealed">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.CSharpKeyword.Short">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.CSharpKeyword.Sizeof">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.CSharpKeyword.Stackalloc">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.CSharpKeyword.Static">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.CSharpKeyword.String">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.CSharpKeyword.Struct">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.CSharpKeyword.Switch">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.CSharpKeyword.This">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.CSharpKeyword.Throw">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.CSharpKeyword.True">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.CSharpKeyword.Try">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.CSharpKeyword.Typeof">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.CSharpKeyword.Uint">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.CSharpKeyword.Ulong">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.CSharpKeyword.Unchecked">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.CSharpKeyword.Unsafe">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.CSharpKeyword.Ushort">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.CSharpKeyword.Using">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.CSharpKeyword.Virtual">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.CSharpKeyword.Void">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.CSharpKeyword.Volatile">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.CSharpKeyword.While">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="T:System.Web.Razor.Tokenizer.Symbols.CSharpSymbol">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Represents a C sharp symbol for the razor tokenizer.</summary>
    </member>
    <member name="M:System.Web.Razor.Tokenizer.Symbols.CSharpSymbol.#ctor(System.Int32,System.Int32,System.Int32,System.String,System.Web.Razor.Tokenizer.Symbols.CSharpSymbolType)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Initializes a new instance of the <see cref="T:System.Web.Razor.Tokenizer.Symbols.CSharpSymbol" /> class.</summary>
      <param name="offset">The symbol’s offset.</param>
      <param name="line">The line.</param>
      <param name="column">The column</param>
      <param name="content">The content of the symbol.</param>
      <param name="type">The type of the symbol.</param>
    </member>
    <member name="M:System.Web.Razor.Tokenizer.Symbols.CSharpSymbol.#ctor(System.Int32,System.Int32,System.Int32,System.String,System.Web.Razor.Tokenizer.Symbols.CSharpSymbolType,System.Collections.Generic.IEnumerable{System.Web.Razor.Parser.SyntaxTree.RazorError})">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Initializes a new instance of the <see cref="T:System.Web.Razor.Tokenizer.Symbols.CSharpSymbol" /> class.</summary>
      <param name="offset">The symbol’s offset.</param>
      <param name="line">The line.</param>
      <param name="column">The column</param>
      <param name="content">The content of the symbol.</param>
      <param name="type">The type of the symbol.</param>
      <param name="errors">A list of errors.</param>
    </member>
    <member name="M:System.Web.Razor.Tokenizer.Symbols.CSharpSymbol.#ctor(System.Web.Razor.Text.SourceLocation,System.String,System.Web.Razor.Tokenizer.Symbols.CSharpSymbolType)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Initializes a new instance of the <see cref="T:System.Web.Razor.Tokenizer.Symbols.CSharpSymbol" /> class.</summary>
      <param name="start">The location to start the symbol.</param>
      <param name="content">The content of the symbol.</param>
      <param name="type">The type of the symbol.</param>
    </member>
    <member name="M:System.Web.Razor.Tokenizer.Symbols.CSharpSymbol.#ctor(System.Web.Razor.Text.SourceLocation,System.String,System.Web.Razor.Tokenizer.Symbols.CSharpSymbolType,System.Collections.Generic.IEnumerable{System.Web.Razor.Parser.SyntaxTree.RazorError})">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Initializes a new instance of the <see cref="T:System.Web.Razor.Tokenizer.Symbols.CSharpSymbol" /> class.</summary>
      <param name="start">The location to start the symbol.</param>
      <param name="content">The content of the symbol.</param>
      <param name="type">The type of the symbol.</param>
      <param name="errors">A list of errors.</param>
    </member>
    <member name="M:System.Web.Razor.Tokenizer.Symbols.CSharpSymbol.Equals(System.Object)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Determines whether the specified object is equal to the current object.</summary>
      <returns>true if the specified object is equal to the current object; otherwise, false.</returns>
      <param name="obj">The object to compare to.</param>
    </member>
    <member name="P:System.Web.Razor.Tokenizer.Symbols.CSharpSymbol.EscapedIdentifier">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets or sets a value that indicates whether the symbol has an escaped identifier.</summary>
      <returns>true if the symbol has an escaped identifier; otherwise, false.</returns>
    </member>
    <member name="M:System.Web.Razor.Tokenizer.Symbols.CSharpSymbol.GetHashCode">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Returns the hash code for this current instance.</summary>
      <returns>The hash code for this current instance.</returns>
    </member>
    <member name="P:System.Web.Razor.Tokenizer.Symbols.CSharpSymbol.Keyword">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets or sets the language keyword.</summary>
      <returns>The language keyword.</returns>
    </member>
    <member name="T:System.Web.Razor.Tokenizer.Symbols.CSharpSymbolType">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.CSharpSymbolType.And">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.CSharpSymbolType.AndAssign">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.CSharpSymbolType.Arrow">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.CSharpSymbolType.Assign">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.CSharpSymbolType.CharacterLiteral">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.CSharpSymbolType.Colon">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.CSharpSymbolType.Comma">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.CSharpSymbolType.Comment">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.CSharpSymbolType.Decrement">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.CSharpSymbolType.DivideAssign">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.CSharpSymbolType.Dot">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.CSharpSymbolType.DoubleAnd">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.CSharpSymbolType.DoubleColon">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.CSharpSymbolType.DoubleOr">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.CSharpSymbolType.Equals">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.CSharpSymbolType.GreaterThan">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.CSharpSymbolType.GreaterThanEqual">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.CSharpSymbolType.Hash">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.CSharpSymbolType.Identifier">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.CSharpSymbolType.Increment">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.CSharpSymbolType.IntegerLiteral">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.CSharpSymbolType.Keyword">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.CSharpSymbolType.LeftBrace">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.CSharpSymbolType.LeftBracket">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.CSharpSymbolType.LeftParenthesis">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.CSharpSymbolType.LeftShift">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.CSharpSymbolType.LeftShiftAssign">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.CSharpSymbolType.LessThan">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.CSharpSymbolType.LessThanEqual">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.CSharpSymbolType.Minus">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.CSharpSymbolType.MinusAssign">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.CSharpSymbolType.Modulo">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.CSharpSymbolType.ModuloAssign">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.CSharpSymbolType.MultiplyAssign">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.CSharpSymbolType.NewLine">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.CSharpSymbolType.Not">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.CSharpSymbolType.NotEqual">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.CSharpSymbolType.NullCoalesce">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.CSharpSymbolType.Or">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.CSharpSymbolType.OrAssign">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.CSharpSymbolType.Plus">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.CSharpSymbolType.PlusAssign">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.CSharpSymbolType.QuestionMark">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.CSharpSymbolType.RazorComment">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.CSharpSymbolType.RazorCommentStar">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.CSharpSymbolType.RazorCommentTransition">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.CSharpSymbolType.RealLiteral">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.CSharpSymbolType.RightBrace">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.CSharpSymbolType.RightBracket">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.CSharpSymbolType.RightParenthesis">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.CSharpSymbolType.RightShift">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.CSharpSymbolType.RightShiftAssign">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.CSharpSymbolType.Semicolon">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.CSharpSymbolType.Slash">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.CSharpSymbolType.Star">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.CSharpSymbolType.StringLiteral">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.CSharpSymbolType.Tilde">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.CSharpSymbolType.Transition">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.CSharpSymbolType.Unknown">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.CSharpSymbolType.WhiteSpace">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.CSharpSymbolType.Xor">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.CSharpSymbolType.XorAssign">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="T:System.Web.Razor.Tokenizer.Symbols.HtmlSymbol">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Represents the Html symbols.</summary>
    </member>
    <member name="M:System.Web.Razor.Tokenizer.Symbols.HtmlSymbol.#ctor(System.Int32,System.Int32,System.Int32,System.String,System.Web.Razor.Tokenizer.Symbols.HtmlSymbolType)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Initializes a new instance of the <see cref="T:System.Web.Razor.Tokenizer.Symbols.HtmlSymbol" /> class.</summary>
      <param name="offset">The location of the symbol.</param>
      <param name="line">The exact line the symbol is found.</param>
      <param name="column">The column number the symbol is found.</param>
      <param name="content">The content value.</param>
      <param name="type">The <see cref="T:System.Web.Razor.Tokenizer.Symbols.HtmlSymbolType" />.</param>
    </member>
    <member name="M:System.Web.Razor.Tokenizer.Symbols.HtmlSymbol.#ctor(System.Int32,System.Int32,System.Int32,System.String,System.Web.Razor.Tokenizer.Symbols.HtmlSymbolType,System.Collections.Generic.IEnumerable{System.Web.Razor.Parser.SyntaxTree.RazorError})">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Initializes a new instance of the <see cref="T:System.Web.Razor.Tokenizer.Symbols.HtmlSymbol" /> class.</summary>
      <param name="offset">The location of the symbol.</param>
      <param name="line">The exact line the symbol is found.</param>
      <param name="column">The column number the symbol is found.</param>
      <param name="content">The content value.</param>
      <param name="type">The <see cref="T:System.Web.Razor.Tokenizer.Symbols.HtmlSymbolType" />.</param>
      <param name="errors">The razor error.</param>
    </member>
    <member name="M:System.Web.Razor.Tokenizer.Symbols.HtmlSymbol.#ctor(System.Web.Razor.Text.SourceLocation,System.String,System.Web.Razor.Tokenizer.Symbols.HtmlSymbolType)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Initializes a new instance of the <see cref="T:System.Web.Razor.Tokenizer.Symbols.HtmlSymbol" /> class.</summary>
      <param name="start">The start of the source location.</param>
      <param name="content">The content value.</param>
      <param name="type">The <see cref="T:System.Web.Razor.Tokenizer.Symbols.HtmlSymbolType" />.</param>
    </member>
    <member name="M:System.Web.Razor.Tokenizer.Symbols.HtmlSymbol.#ctor(System.Web.Razor.Text.SourceLocation,System.String,System.Web.Razor.Tokenizer.Symbols.HtmlSymbolType,System.Collections.Generic.IEnumerable{System.Web.Razor.Parser.SyntaxTree.RazorError})">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Initializes a new instance of the <see cref="T:System.Web.Razor.Tokenizer.Symbols.HtmlSymbol" /> class.</summary>
      <param name="start">The start of the source location.</param>
      <param name="content">The content value.</param>
      <param name="type">The <see cref="T:System.Web.Razor.Tokenizer.Symbols.HtmlSymbolType" />.</param>
      <param name="errors">The razor error.</param>
    </member>
    <member name="T:System.Web.Razor.Tokenizer.Symbols.HtmlSymbolType">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.HtmlSymbolType.Bang">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.HtmlSymbolType.CloseAngle">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.HtmlSymbolType.Colon">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.HtmlSymbolType.DoubleHyphen">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.HtmlSymbolType.DoubleQuote">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.HtmlSymbolType.Equals">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.HtmlSymbolType.LeftBracket">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.HtmlSymbolType.NewLine">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.HtmlSymbolType.OpenAngle">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.HtmlSymbolType.QuestionMark">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.HtmlSymbolType.RazorComment">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.HtmlSymbolType.RazorCommentStar">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.HtmlSymbolType.RazorCommentTransition">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.HtmlSymbolType.RightBracket">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.HtmlSymbolType.SingleQuote">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.HtmlSymbolType.Solidus">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.HtmlSymbolType.Text">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.HtmlSymbolType.Transition">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.HtmlSymbolType.Unknown">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.HtmlSymbolType.WhiteSpace">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="T:System.Web.Razor.Tokenizer.Symbols.ISymbol">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Represents an interface for the web razor symbol.</summary>
    </member>
    <member name="M:System.Web.Razor.Tokenizer.Symbols.ISymbol.ChangeStart(System.Web.Razor.Text.SourceLocation)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Changes the location of the symbol.</summary>
      <param name="newStart">The new location of the symbol.</param>
    </member>
    <member name="P:System.Web.Razor.Tokenizer.Symbols.ISymbol.Content">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets the content of the symbol.</summary>
      <returns>The content of the symbol.</returns>
    </member>
    <member name="M:System.Web.Razor.Tokenizer.Symbols.ISymbol.OffsetStart(System.Web.Razor.Text.SourceLocation)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Indicates the starting offset of the symbol.</summary>
      <param name="documentStart">The location where to start the document.</param>
    </member>
    <member name="P:System.Web.Razor.Tokenizer.Symbols.ISymbol.Start">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets the location of the symbol.</summary>
      <returns>The location of the symbol.</returns>
    </member>
    <member name="T:System.Web.Razor.Tokenizer.Symbols.KnownSymbolType">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.KnownSymbolType.CommentBody">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.KnownSymbolType.CommentStar">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.KnownSymbolType.CommentStart">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.KnownSymbolType.Identifier">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.KnownSymbolType.Keyword">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.KnownSymbolType.NewLine">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.KnownSymbolType.Transition">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.KnownSymbolType.Unknown">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.KnownSymbolType.WhiteSpace">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="T:System.Web.Razor.Tokenizer.Symbols.SymbolBase`1">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Represents a new instance of symbols.</summary>
      <typeparam name="TType">The generic type.</typeparam>
    </member>
    <member name="M:System.Web.Razor.Tokenizer.Symbols.SymbolBase`1.#ctor(System.Web.Razor.Text.SourceLocation,System.String,`0,System.Collections.Generic.IEnumerable{System.Web.Razor.Parser.SyntaxTree.RazorError})">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Initializes a new instance of the <see cref="T:System.Web.Razor.Tokenizer.Symbols.SymbolBase`1" /> class.</summary>
      <param name="start">The source location.</param>
      <param name="content">The content value.</param>
      <param name="type">The type.</param>
      <param name="errors">The razor error.</param>
    </member>
    <member name="M:System.Web.Razor.Tokenizer.Symbols.SymbolBase`1.ChangeStart(System.Web.Razor.Text.SourceLocation)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Changes the start of the machine.</summary>
      <param name="newStart">The new start.</param>
    </member>
    <member name="P:System.Web.Razor.Tokenizer.Symbols.SymbolBase`1.Content">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets the content of a <see cref="T:System.Web.Razor.Tokenizer.Symbols.SymbolBase`1" />.</summary>
      <returns>The content of a <see cref="T:System.Web.Razor.Tokenizer.Symbols.SymbolBase`1" />.</returns>
    </member>
    <member name="M:System.Web.Razor.Tokenizer.Symbols.SymbolBase`1.Equals(System.Object)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Determines whether the specified Object is equal to the current Object.</summary>
      <returns>true if the specified Object is equal to the current Object; otherwise, false.</returns>
      <param name="obj">The object.</param>
    </member>
    <member name="P:System.Web.Razor.Tokenizer.Symbols.SymbolBase`1.Errors">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets the razor error.</summary>
      <returns>The razor error.</returns>
    </member>
    <member name="M:System.Web.Razor.Tokenizer.Symbols.SymbolBase`1.GetHashCode">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Retrieves a hash code based on the current <see cref="T:System.Web.Razor.Tokenizer.Symbols.SymbolBase`1" /> object.</summary>
      <returns>A hash of the current <see cref="T:System.Web.Razor.Tokenizer.Symbols.SymbolBase`1" /> object.</returns>
    </member>
    <member name="M:System.Web.Razor.Tokenizer.Symbols.SymbolBase`1.OffsetStart(System.Web.Razor.Text.SourceLocation)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Starts the time’s offset for the source location.</summary>
      <param name="documentStart">The document start.</param>
    </member>
    <member name="P:System.Web.Razor.Tokenizer.Symbols.SymbolBase`1.Start">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets the starting point of the source location.</summary>
      <returns>The starting point of the source location.</returns>
    </member>
    <member name="M:System.Web.Razor.Tokenizer.Symbols.SymbolBase`1.ToString">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Generates a string representation of the current <see cref="T:System.Web.Razor.Tokenizer.Symbols.SymbolBase`1" /> object.</summary>
      <returns>A string representation of the current <see cref="T:System.Web.Razor.Tokenizer.Symbols.SymbolBase`1" /> object.</returns>
    </member>
    <member name="P:System.Web.Razor.Tokenizer.Symbols.SymbolBase`1.Type">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets a Type that inherits from the base Type.</summary>
      <returns>A Type that inherits from the base Type.</returns>
    </member>
    <member name="T:System.Web.Razor.Tokenizer.Symbols.SymbolExtensions">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Represents the symbol extensions for the web tokenizer.</summary>
    </member>
    <member name="M:System.Web.Razor.Tokenizer.Symbols.SymbolExtensions.GetContent(System.Collections.Generic.IEnumerable{System.Web.Razor.Tokenizer.Symbols.ISymbol},System.Web.Razor.Text.SourceLocation)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets the content of this <see cref="T:System.Web.Razor.Tokenizer.Symbols.SymbolExtensions" /> class.</summary>
      <returns>The content of this <see cref="T:System.Web.Razor.Tokenizer.Symbols.SymbolExtensions" /> class.</returns>
      <param name="symbols">The symbols to provide.</param>
      <param name="spanStart">The starting index of the span.</param>
    </member>
    <member name="M:System.Web.Razor.Tokenizer.Symbols.SymbolExtensions.GetContent(System.Web.Razor.Parser.SyntaxTree.SpanBuilder)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets the content of this <see cref="T:System.Web.Razor.Tokenizer.Symbols.SymbolExtensions" /> class.</summary>
      <returns>The content of this <see cref="T:System.Web.Razor.Tokenizer.Symbols.SymbolExtensions" /> class.</returns>
      <param name="span">The intersection with the given span.</param>
    </member>
    <member name="M:System.Web.Razor.Tokenizer.Symbols.SymbolExtensions.GetContent(System.Web.Razor.Parser.SyntaxTree.SpanBuilder,System.Func{System.Collections.Generic.IEnumerable{System.Web.Razor.Tokenizer.Symbols.ISymbol},System.Collections.Generic.IEnumerable{System.Web.Razor.Tokenizer.Symbols.ISymbol}})">
      <summary>Gets the content of this <see cref="T:System.Web.Razor.Tokenizer.Symbols.SymbolExtensions" /> class.</summary>
      <returns>The content of this <see cref="T:System.Web.Razor.Tokenizer.Symbols.SymbolExtensions" /> class.</returns>
      <param name="span">The intersection with the given span.</param>
      <param name="filter">A list of chosen symbols.</param>
    </member>
    <member name="M:System.Web.Razor.Tokenizer.Symbols.SymbolExtensions.GetContent(System.Web.Razor.Tokenizer.Symbols.ISymbol)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets the content of this <see cref="T:System.Web.Razor.Tokenizer.Symbols.SymbolExtensions" /> class.</summary>
      <returns>The content of this <see cref="T:System.Web.Razor.Tokenizer.Symbols.SymbolExtensions" /> class.</returns>
      <param name="symbol">The provided symbols.</param>
    </member>
    <member name="T:System.Web.Razor.Tokenizer.Symbols.VBKeyword">
      <summary>Enumerates the list of Visual Basic keywords.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.VBKeyword.AddHandler">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.VBKeyword.AddressOf">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.VBKeyword.Alias">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.VBKeyword.And">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.VBKeyword.AndAlso">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.VBKeyword.As">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.VBKeyword.Boolean">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.VBKeyword.ByRef">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.VBKeyword.Byte">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.VBKeyword.ByVal">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.VBKeyword.Call">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.VBKeyword.Case">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.VBKeyword.Catch">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.VBKeyword.CBool">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.VBKeyword.CByte">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.VBKeyword.CChar">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.VBKeyword.CDate">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.VBKeyword.CDbl">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.VBKeyword.CDec">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.VBKeyword.Char">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.VBKeyword.CInt">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.VBKeyword.Class">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.VBKeyword.CLng">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.VBKeyword.CObj">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.VBKeyword.Const">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.VBKeyword.Continue">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.VBKeyword.CSByte">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.VBKeyword.CShort">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.VBKeyword.CSng">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.VBKeyword.CStr">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.VBKeyword.CType">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.VBKeyword.CUInt">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.VBKeyword.CULng">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.VBKeyword.CUShort">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.VBKeyword.Date">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.VBKeyword.Decimal">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.VBKeyword.Declare">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.VBKeyword.Default">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.VBKeyword.Delegate">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.VBKeyword.Dim">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.VBKeyword.DirectCast">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.VBKeyword.Do">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.VBKeyword.Double">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.VBKeyword.Each">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.VBKeyword.Else">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.VBKeyword.ElseIf">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.VBKeyword.End">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.VBKeyword.EndIf">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.VBKeyword.Enum">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.VBKeyword.Erase">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.VBKeyword.Error">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.VBKeyword.Event">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.VBKeyword.Exit">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.VBKeyword.False">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.VBKeyword.Finally">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.VBKeyword.For">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.VBKeyword.Friend">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.VBKeyword.Function">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.VBKeyword.Get">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.VBKeyword.GetType">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.VBKeyword.GetXmlNamespace">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.VBKeyword.Global">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.VBKeyword.GoSub">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.VBKeyword.GoTo">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.VBKeyword.Handles">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.VBKeyword.If">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.VBKeyword.Implements">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.VBKeyword.Imports">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.VBKeyword.In">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.VBKeyword.Inherits">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.VBKeyword.Integer">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.VBKeyword.Interface">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.VBKeyword.Is">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.VBKeyword.IsNot">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.VBKeyword.Let">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.VBKeyword.Lib">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.VBKeyword.Like">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.VBKeyword.Long">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.VBKeyword.Loop">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.VBKeyword.Me">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.VBKeyword.Mod">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.VBKeyword.Module">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.VBKeyword.MustInherit">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.VBKeyword.MustOverride">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.VBKeyword.MyBase">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.VBKeyword.MyClass">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.VBKeyword.Namespace">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.VBKeyword.Narrowing">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.VBKeyword.New">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.VBKeyword.Next">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.VBKeyword.Not">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.VBKeyword.Nothing">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.VBKeyword.NotInheritable">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.VBKeyword.NotOverridable">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.VBKeyword.Object">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.VBKeyword.Of">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.VBKeyword.On">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.VBKeyword.Operator">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.VBKeyword.Option">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.VBKeyword.Optional">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.VBKeyword.Or">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.VBKeyword.OrElse">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.VBKeyword.Overloads">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.VBKeyword.Overridable">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.VBKeyword.Overrides">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.VBKeyword.ParamArray">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.VBKeyword.Partial">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.VBKeyword.Private">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.VBKeyword.Property">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.VBKeyword.Protected">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.VBKeyword.Public">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.VBKeyword.RaiseEvent">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.VBKeyword.ReadOnly">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.VBKeyword.ReDim">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.VBKeyword.Rem">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.VBKeyword.RemoveHandler">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.VBKeyword.Resume">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.VBKeyword.Return">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.VBKeyword.SByte">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.VBKeyword.Select">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.VBKeyword.Set">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.VBKeyword.Shadows">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.VBKeyword.Shared">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.VBKeyword.Short">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.VBKeyword.Single">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.VBKeyword.Static">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.VBKeyword.Step">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.VBKeyword.Stop">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.VBKeyword.String">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.VBKeyword.Structure">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.VBKeyword.Sub">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.VBKeyword.SyncLock">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.VBKeyword.Then">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.VBKeyword.Throw">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.VBKeyword.To">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.VBKeyword.True">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.VBKeyword.Try">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.VBKeyword.TryCast">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.VBKeyword.TypeOf">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.VBKeyword.UInteger">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.VBKeyword.ULong">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.VBKeyword.UShort">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.VBKeyword.Using">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.VBKeyword.Variant">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.VBKeyword.Wend">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.VBKeyword.When">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.VBKeyword.While">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.VBKeyword.Widening">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.VBKeyword.With">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.VBKeyword.WithEvents">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.VBKeyword.WriteOnly">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.VBKeyword.Xor">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="T:System.Web.Razor.Tokenizer.Symbols.VBSymbol">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Represents the VB symbol components.</summary>
    </member>
    <member name="M:System.Web.Razor.Tokenizer.Symbols.VBSymbol.#ctor(System.Int32,System.Int32,System.Int32,System.String,System.Web.Razor.Tokenizer.Symbols.VBSymbolType)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Initializes a new instance of the <see cref="T:System.Web.Razor.Tokenizer.Symbols.VBSymbol" /> class.</summary>
      <param name="offset">The offset value.</param>
      <param name="line">The line value.</param>
      <param name="column">The column value.</param>
      <param name="content">The content String value.</param>
      <param name="type">The <see cref="T:System.Web.Razor.Tokenizer.Symbols.VBSymbolType" />.</param>
    </member>
    <member name="M:System.Web.Razor.Tokenizer.Symbols.VBSymbol.#ctor(System.Int32,System.Int32,System.Int32,System.String,System.Web.Razor.Tokenizer.Symbols.VBSymbolType,System.Collections.Generic.IEnumerable{System.Web.Razor.Parser.SyntaxTree.RazorError})">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Initializes a new instance of the <see cref="T:System.Web.Razor.Tokenizer.Symbols.VBSymbol" /> class.</summary>
      <param name="offset">The offset value.</param>
      <param name="line">The line value.</param>
      <param name="column">The column value.</param>
      <param name="content">The content String value.</param>
      <param name="type">The <see cref="T:System.Web.Razor.Tokenizer.Symbols.VBSymbolType" />.</param>
      <param name="errors">List of razor errors.</param>
    </member>
    <member name="M:System.Web.Razor.Tokenizer.Symbols.VBSymbol.#ctor(System.Web.Razor.Text.SourceLocation,System.String,System.Web.Razor.Tokenizer.Symbols.VBSymbolType)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Initializes a new instance of the <see cref="T:System.Web.Razor.Tokenizer.Symbols.VBSymbol" /> class.</summary>
      <param name="start">The start of the source location.</param>
      <param name="content">The content String value.</param>
      <param name="type">The <see cref="T:System.Web.Razor.Tokenizer.Symbols.VBSymbolType" />.</param>
    </member>
    <member name="M:System.Web.Razor.Tokenizer.Symbols.VBSymbol.#ctor(System.Web.Razor.Text.SourceLocation,System.String,System.Web.Razor.Tokenizer.Symbols.VBSymbolType,System.Collections.Generic.IEnumerable{System.Web.Razor.Parser.SyntaxTree.RazorError})">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Initializes a new instance of the <see cref="T:System.Web.Razor.Tokenizer.Symbols.VBSymbol" /> class.</summary>
      <param name="start">The start of the source location.</param>
      <param name="content">The content String value.</param>
      <param name="type">The <see cref="T:System.Web.Razor.Tokenizer.Symbols.VBSymbolType" />.</param>
      <param name="errors">List of razor errors.</param>
    </member>
    <member name="M:System.Web.Razor.Tokenizer.Symbols.VBSymbol.Equals(System.Object)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Indicates a value whether the current object is equal to the new object.</summary>
      <returns>true if the current object is equal to the new object; otherwise, false.</returns>
      <param name="obj">The object to compare.</param>
    </member>
    <member name="M:System.Web.Razor.Tokenizer.Symbols.VBSymbol.GetHashCode">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Returns the hash code for this instance.</summary>
      <returns>The hash code to return.</returns>
    </member>
    <member name="M:System.Web.Razor.Tokenizer.Symbols.VBSymbol.GetSample(System.Web.Razor.Tokenizer.Symbols.VBSymbolType)">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets the specified data sample from the object.</summary>
      <returns>The specified data sample from the object.</returns>
      <param name="type">The <see cref="T:System.Web.Razor.Tokenizer.Symbols.VBSymbolType" />.</param>
    </member>
    <member name="P:System.Web.Razor.Tokenizer.Symbols.VBSymbol.Keyword">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets or sets the keyword used in the VB.</summary>
      <returns>The keyword used.</returns>
    </member>
    <member name="T:System.Web.Razor.Tokenizer.Symbols.VBSymbolType">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.VBSymbolType.Add">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.VBSymbolType.Bang">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.VBSymbolType.CharacterLiteral">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.VBSymbolType.Colon">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.VBSymbolType.Comma">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.VBSymbolType.Comment">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.VBSymbolType.Concatenation">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.VBSymbolType.DateLiteral">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.VBSymbolType.Divide">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.VBSymbolType.Dollar">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.VBSymbolType.Dot">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.VBSymbolType.Equal">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.VBSymbolType.Exponentiation">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.VBSymbolType.FloatingPointLiteral">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.VBSymbolType.GreaterThan">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.VBSymbolType.Hash">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.VBSymbolType.Identifier">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.VBSymbolType.IntegerDivide">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.VBSymbolType.IntegerLiteral">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.VBSymbolType.Keyword">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.VBSymbolType.LeftBrace">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.VBSymbolType.LeftBracket">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.VBSymbolType.LeftParenthesis">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.VBSymbolType.LessThan">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.VBSymbolType.LineContinuation">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.VBSymbolType.Multiply">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.VBSymbolType.NewLine">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.VBSymbolType.QuestionMark">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.VBSymbolType.RazorComment">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.VBSymbolType.RazorCommentStar">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.VBSymbolType.RazorCommentTransition">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.VBSymbolType.RightBrace">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.VBSymbolType.RightBracket">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.VBSymbolType.RightParenthesis">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.VBSymbolType.StringLiteral">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.VBSymbolType.Subtract">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.VBSymbolType.Transition">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.VBSymbolType.Unknown">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
    <member name="F:System.Web.Razor.Tokenizer.Symbols.VBSymbolType.WhiteSpace">
      <summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
    </member>
  </members>
</doc>

Commits for ChrisCompleteCodeTrunk/ActionTireCo/ActionTireCo.Crm/bin/System.Web.Razor.xml

Diff revisions: vs.
Revision Author Commited Message
1 BBDSCHRIS picture BBDSCHRIS Wed 22 Aug, 2018 20:08:03 +0000