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
<?xml version="1.0"?>
<doc>
    <assembly>
        <name>Microsoft.AspNetCore.Razor.Language</name>
    </assembly>
    <members>
        <member name="F:Microsoft.AspNetCore.Razor.Language.AllowedChildTagDescriptorComparer.Default">
            <summary>
            A default instance of the <see cref="T:Microsoft.AspNetCore.Razor.Language.AllowedChildTagDescriptorComparer"/>.
            </summary>
        </member>
        <member name="F:Microsoft.AspNetCore.Razor.Language.AllowedChildTagDescriptorComparer.CaseSensitive">
            <summary>
            A default instance of the <see cref="T:Microsoft.AspNetCore.Razor.Language.AllowedChildTagDescriptorComparer"/> that does case-sensitive comparison.
            </summary>
        </member>
        <member name="M:Microsoft.AspNetCore.Razor.Language.AllowedChildTagDescriptorComparer.Equals(Microsoft.AspNetCore.Razor.Language.AllowedChildTagDescriptor,Microsoft.AspNetCore.Razor.Language.AllowedChildTagDescriptor)">
            <inheritdoc />
        </member>
        <member name="M:Microsoft.AspNetCore.Razor.Language.AllowedChildTagDescriptorComparer.GetHashCode(Microsoft.AspNetCore.Razor.Language.AllowedChildTagDescriptor)">
            <inheritdoc />
        </member>
        <member name="T:Microsoft.AspNetCore.Razor.Language.BoundAttributeDescriptor">
            <summary>
            A metadata class describing a tag helper attribute.
            </summary>
        </member>
        <member name="F:Microsoft.AspNetCore.Razor.Language.BoundAttributeDescriptorComparer.Default">
            <summary>
            A default instance of the <see cref="T:Microsoft.AspNetCore.Razor.Language.BoundAttributeDescriptorComparer"/>.
            </summary>
        </member>
        <member name="F:Microsoft.AspNetCore.Razor.Language.BoundAttributeDescriptorComparer.CaseSensitive">
            <summary>
            A default instance of the <see cref="T:Microsoft.AspNetCore.Razor.Language.BoundAttributeDescriptorComparer"/> that does case-sensitive comparison.
            </summary>
        </member>
        <member name="M:Microsoft.AspNetCore.Razor.Language.DefaultRazorProjectItem.#ctor(System.String,System.String,System.String,System.IO.FileInfo)">
            <summary>
            Initializes a new instance of <see cref="T:Microsoft.AspNetCore.Razor.Language.DefaultRazorProjectItem"/>.
            </summary>
            <param name="basePath">The base path.</param>
            <param name="relativePhysicalPath">The physical path of the base path.</param>
            <param name="filePath">The path.</param>
            <param name="file">The <see cref="T:System.IO.FileInfo"/>.</param>
        </member>
        <member name="T:Microsoft.AspNetCore.Razor.Language.DirectiveDescriptor">
            <summary>
            A descriptor type for a directive that can be parsed by the Razor parser.
            </summary>
        </member>
        <member name="P:Microsoft.AspNetCore.Razor.Language.DirectiveDescriptor.Description">
            <summary>
            Gets the description of the directive.
            </summary>
            <remarks>
            The description is used for information purposes, and has no effect on parsing.
            </remarks>
        </member>
        <member name="P:Microsoft.AspNetCore.Razor.Language.DirectiveDescriptor.Directive">
            <summary>
            Gets the directive keyword without the leading <c>@</c> token.
            </summary>
        </member>
        <member name="P:Microsoft.AspNetCore.Razor.Language.DirectiveDescriptor.DisplayName">
            <summary>
            Gets the display name of the directive.
            </summary>
            <remarks>
            The display name is used for information purposes, and has no effect on parsing.
            </remarks>
        </member>
        <member name="P:Microsoft.AspNetCore.Razor.Language.DirectiveDescriptor.Kind">
            <summary>
            Gets the kind of the directive. The kind determines whether or not a directive has an associated block.
            </summary>
        </member>
        <member name="P:Microsoft.AspNetCore.Razor.Language.DirectiveDescriptor.Usage">
            <summary>
            Gets the way a directive can be used. The usage determines how many, and where directives can exist per document.
            </summary>
        </member>
        <member name="P:Microsoft.AspNetCore.Razor.Language.DirectiveDescriptor.Tokens">
            <summary>
            Gets the list of directive tokens that can follow the directive keyword.
            </summary>
        </member>
        <member name="M:Microsoft.AspNetCore.Razor.Language.DirectiveDescriptor.CreateDirective(System.String,Microsoft.AspNetCore.Razor.Language.DirectiveKind)">
            <summary>
            Creates a new <see cref="T:Microsoft.AspNetCore.Razor.Language.DirectiveDescriptor"/>.
            </summary>
            <param name="directive">The directive keyword.</param>
            <param name="kind">The directive kind.</param>
            <returns>A <see cref="T:Microsoft.AspNetCore.Razor.Language.DirectiveDescriptor"/> for the created directive.</returns>
        </member>
        <member name="M:Microsoft.AspNetCore.Razor.Language.DirectiveDescriptor.CreateDirective(System.String,Microsoft.AspNetCore.Razor.Language.DirectiveKind,System.Action{Microsoft.AspNetCore.Razor.Language.IDirectiveDescriptorBuilder})">
            <summary>
            Creates a new <see cref="T:Microsoft.AspNetCore.Razor.Language.DirectiveDescriptor"/>.
            </summary>
            <param name="directive">The directive keyword.</param>
            <param name="kind">The directive kind.</param>
            <param name="configure">A configuration delegate for the directive.</param>
            <returns>A <see cref="T:Microsoft.AspNetCore.Razor.Language.DirectiveDescriptor"/> for the created directive.</returns>
        </member>
        <member name="M:Microsoft.AspNetCore.Razor.Language.DirectiveDescriptor.CreateSingleLineDirective(System.String)">
            <summary>
            Creates a new <see cref="T:Microsoft.AspNetCore.Razor.Language.DirectiveDescriptor"/> with <see cref="P:Microsoft.AspNetCore.Razor.Language.DirectiveDescriptor.Kind"/> set to <see cref="F:Microsoft.AspNetCore.Razor.Language.DirectiveKind.SingleLine"/>
            </summary>
            <param name="directive">The directive keyword.</param>
            <returns>A <see cref="T:Microsoft.AspNetCore.Razor.Language.DirectiveDescriptor"/> for the created directive.</returns>
        </member>
        <member name="M:Microsoft.AspNetCore.Razor.Language.DirectiveDescriptor.CreateSingleLineDirective(System.String,System.Action{Microsoft.AspNetCore.Razor.Language.IDirectiveDescriptorBuilder})">
            <summary>
            Creates a new <see cref="T:Microsoft.AspNetCore.Razor.Language.DirectiveDescriptor"/> with <see cref="P:Microsoft.AspNetCore.Razor.Language.DirectiveDescriptor.Kind"/> set to <see cref="F:Microsoft.AspNetCore.Razor.Language.DirectiveKind.SingleLine"/>
            </summary>
            <param name="directive">The directive keyword.</param>
            <param name="configure">A configuration delegate for the directive.</param>
            <returns>A <see cref="T:Microsoft.AspNetCore.Razor.Language.DirectiveDescriptor"/> for the created directive.</returns>
        </member>
        <member name="M:Microsoft.AspNetCore.Razor.Language.DirectiveDescriptor.CreateRazorBlockDirective(System.String)">
            <summary>
            Creates a new <see cref="T:Microsoft.AspNetCore.Razor.Language.DirectiveDescriptor"/> with <see cref="P:Microsoft.AspNetCore.Razor.Language.DirectiveDescriptor.Kind"/> set to <see cref="F:Microsoft.AspNetCore.Razor.Language.DirectiveKind.RazorBlock"/>
            </summary>
            <param name="directive">The directive keyword.</param>
            <returns>A <see cref="T:Microsoft.AspNetCore.Razor.Language.DirectiveDescriptor"/> for the created directive.</returns>
        </member>
        <member name="M:Microsoft.AspNetCore.Razor.Language.DirectiveDescriptor.CreateRazorBlockDirective(System.String,System.Action{Microsoft.AspNetCore.Razor.Language.IDirectiveDescriptorBuilder})">
            <summary>
            Creates a new <see cref="T:Microsoft.AspNetCore.Razor.Language.DirectiveDescriptor"/> with <see cref="P:Microsoft.AspNetCore.Razor.Language.DirectiveDescriptor.Kind"/> set to <see cref="F:Microsoft.AspNetCore.Razor.Language.DirectiveKind.RazorBlock"/>
            </summary>
            <param name="directive">The directive keyword.</param>
            <param name="configure">A configuration delegate for the directive.</param>
            <returns>A <see cref="T:Microsoft.AspNetCore.Razor.Language.DirectiveDescriptor"/> for the created directive.</returns>
        </member>
        <member name="M:Microsoft.AspNetCore.Razor.Language.DirectiveDescriptor.CreateCodeBlockDirective(System.String)">
            <summary>
            Creates a new <see cref="T:Microsoft.AspNetCore.Razor.Language.DirectiveDescriptor"/> with <see cref="P:Microsoft.AspNetCore.Razor.Language.DirectiveDescriptor.Kind"/> set to <see cref="F:Microsoft.AspNetCore.Razor.Language.DirectiveKind.CodeBlock"/>
            </summary>
            <param name="directive">The directive keyword.</param>
            <returns>A <see cref="T:Microsoft.AspNetCore.Razor.Language.DirectiveDescriptor"/> for the created directive.</returns>
        </member>
        <member name="M:Microsoft.AspNetCore.Razor.Language.DirectiveDescriptor.CreateCodeBlockDirective(System.String,System.Action{Microsoft.AspNetCore.Razor.Language.IDirectiveDescriptorBuilder})">
            <summary>
            Creates a new <see cref="T:Microsoft.AspNetCore.Razor.Language.DirectiveDescriptor"/> with <see cref="P:Microsoft.AspNetCore.Razor.Language.DirectiveDescriptor.Kind"/> set to <see cref="F:Microsoft.AspNetCore.Razor.Language.DirectiveKind.CodeBlock"/>
            </summary>
            <param name="directive">The directive keyword.</param>
            <param name="configure">A configuration delegate for the directive.</param>
            <returns>A <see cref="T:Microsoft.AspNetCore.Razor.Language.DirectiveDescriptor"/> for the created directive.</returns>
        </member>
        <member name="T:Microsoft.AspNetCore.Razor.Language.DirectiveUsage">
            <summary>
            The way a directive can be used. The usage determines how many, and where directives can exist per file.
            </summary>
        </member>
        <member name="F:Microsoft.AspNetCore.Razor.Language.DirectiveUsage.Unrestricted">
            <summary>
            Directive can exist anywhere in the file.
            </summary>
        </member>
        <member name="F:Microsoft.AspNetCore.Razor.Language.DirectiveUsage.FileScopedSinglyOccurring">
            <summary>
            Directive must exist prior to any HTML or code and have no duplicates. When importing the directive, if it is 
            <see cref="F:Microsoft.AspNetCore.Razor.Language.DirectiveKind.SingleLine"/>, the last occurrence of the directive is imported.
            </summary>
        </member>
        <member name="F:Microsoft.AspNetCore.Razor.Language.DirectiveUsage.FileScopedMultipleOccurring">
            <summary>
            Directive must exist prior to any HTML or code.
            </summary>
        </member>
        <member name="T:Microsoft.AspNetCore.Razor.Language.Extensions.RazorCompiledItemMetadataAttributeIntermediateNode">
            <summary>
            An <see cref="T:Microsoft.AspNetCore.Razor.Language.Intermediate.ExtensionIntermediateNode"/> that generates code for <c>RazorCompiledItemMetadataAttribute</c>.
            </summary>
        </member>
        <member name="P:Microsoft.AspNetCore.Razor.Language.Extensions.RazorCompiledItemMetadataAttributeIntermediateNode.Key">
            <summary>
            Gets or sets the attribute key.
            </summary>
        </member>
        <member name="P:Microsoft.AspNetCore.Razor.Language.Extensions.RazorCompiledItemMetadataAttributeIntermediateNode.Value">
            <summary>
            Gets or sets the attribute value.
            </summary>
        </member>
        <member name="M:Microsoft.AspNetCore.Razor.Language.HtmlConventions.ToHtmlCase(System.String)">
            <summary>
            Converts from pascal/camel case to lower kebab-case.
            </summary>
            <example>
            SomeThing => some-thing
            capsONInside => caps-on-inside
            CAPSOnOUTSIDE => caps-on-outside
            ALLCAPS => allcaps
            One1Two2Three3 => one1-two2-three3
            ONE1TWO2THREE3 => one1two2three3
            First_Second_ThirdHi => first_second_third-hi
            </example>
        </member>
        <member name="T:Microsoft.AspNetCore.Razor.Language.IDirectiveDescriptorBuilder">
            <summary>
            A builder interface for configuring a <see cref="T:Microsoft.AspNetCore.Razor.Language.DirectiveDescriptor"/>.
            </summary>
        </member>
        <member name="P:Microsoft.AspNetCore.Razor.Language.IDirectiveDescriptorBuilder.Description">
            <summary>
            Gets or sets the description of the directive.
            </summary>
        </member>
        <member name="P:Microsoft.AspNetCore.Razor.Language.IDirectiveDescriptorBuilder.Directive">
            <summary>
            Gets the directive keyword.
            </summary>
        </member>
        <member name="P:Microsoft.AspNetCore.Razor.Language.IDirectiveDescriptorBuilder.DisplayName">
            <summary>
            Gets or sets the display name of the directive.
            </summary>
        </member>
        <member name="P:Microsoft.AspNetCore.Razor.Language.IDirectiveDescriptorBuilder.Kind">
            <summary>
            Gets the directive kind.
            </summary>
        </member>
        <member name="P:Microsoft.AspNetCore.Razor.Language.IDirectiveDescriptorBuilder.Usage">
            <summary>
            Gets or sets the directive usage. The usage determines how many, and where directives can exist per document.
            </summary>
        </member>
        <member name="P:Microsoft.AspNetCore.Razor.Language.IDirectiveDescriptorBuilder.Tokens">
            <summary>
            Gets a list of the directive tokens.
            </summary>
        </member>
        <member name="M:Microsoft.AspNetCore.Razor.Language.IDirectiveDescriptorBuilder.Build">
            <summary>
            Creates a <see cref="T:Microsoft.AspNetCore.Razor.Language.DirectiveDescriptor"/> based on the current property values of the builder.
            </summary>
            <returns>The created <see cref="T:Microsoft.AspNetCore.Razor.Language.DirectiveDescriptor" />.</returns>
        </member>
        <member name="F:Microsoft.AspNetCore.Razor.Language.IntermediateNodePassBase.DefaultFeatureOrder">
            <summary>
            The default implementation of the <see cref="T:Microsoft.AspNetCore.Razor.Language.IRazorEngineFeature"/>s that run in a
            <see cref="T:Microsoft.AspNetCore.Razor.Language.IRazorEnginePhase"/> will use this value for its Order property.
            </summary>
            <remarks>
            This value is chosen in such a way that the default implementation runs after the other
            custom <see cref="T:Microsoft.AspNetCore.Razor.Language.IRazorEngineFeature"/> implementations for a particular <see cref="T:Microsoft.AspNetCore.Razor.Language.IRazorEnginePhase"/>.
            </remarks>
        </member>
        <member name="T:Microsoft.AspNetCore.Razor.Language.IRazorCSharpLoweringPhase">
            <summary>
            Generates C# code using the intermediate node document.
            </summary>
            <remarks>
            After IR processing, the <see cref="T:Microsoft.AspNetCore.Razor.Language.IRazorCSharpLoweringPhase"/> transforms the intermediate node document into
            generated C# code. At this time any directives or other constructs that cannot be understood by code generation
            will result in an error.
            </remarks>
        </member>
        <member name="T:Microsoft.AspNetCore.Razor.Language.IRazorDirectiveClassifierPhase">
            <summary>
            Understands directive nodes and performs the necessary modifications to the document.
            </summary>
            <remarks>
            <para>
            The second phase of intermediate node processing is directive classification. Passes in this phase should interpret
            directives and processing them accordingly by transforming nodes or adding diagnostics. At this time the document 
            kind has been identified, so any directive that can't be applied should trigger
            errors. If implementing a document kind that diverges from the standard structure of Razor documents
            it may be necessary to reimplement processing of default directives.
            </para>
            <para>
            <see cref="T:Microsoft.AspNetCore.Razor.Language.IRazorDirectiveClassifierPass"/> objects are executed according to an ascending ordering of the
            <see cref="P:Microsoft.AspNetCore.Razor.Language.IRazorDirectiveClassifierPass.Order"/> property.
            </para>
            </remarks>
        </member>
        <member name="T:Microsoft.AspNetCore.Razor.Language.IRazorDocumentClassifierPhase">
            <summary>
            Modifies the intermediate node document to a desired structure.
            </summary>
            <remarks>
            <para>
            The first phase of intermediate node procesing is document classification. Passes in this phase should classify the
            document according to any relevant criteria (project configuration, file extension, directive) and modify
            the intermediate node document to suit the desired document shape. Document classifiers should also set
            <see cref="P:Microsoft.AspNetCore.Razor.Language.Intermediate.DocumentIntermediateNode.DocumentKind"/> to prevent other classifiers from running. If no classifier 
            matches the document, then it will be classified as &quot;generic&quot; and processed according to set 
            of reasonable defaults.
            </para>
            <para>
            <see cref="T:Microsoft.AspNetCore.Razor.Language.IRazorDocumentClassifierPass"/> objects are executed according to an ascending ordering of the
            <see cref="P:Microsoft.AspNetCore.Razor.Language.IRazorDocumentClassifierPass.Order"/> property.
            </para>
            </remarks>
        </member>
        <member name="T:Microsoft.AspNetCore.Razor.Language.IRazorIntermediateNodeLoweringPhase">
            <summary>
            Generates the intermediate node document from <see cref="T:Microsoft.AspNetCore.Razor.Language.RazorSyntaxTree"/>.
            </summary>
            <remarks>
            The document is first produced by <see cref="T:Microsoft.AspNetCore.Razor.Language.IRazorIntermediateNodeLoweringPhase"/>. At this point no intermediate node
            passes have been executed. The default <see cref="T:Microsoft.AspNetCore.Razor.Language.IRazorIntermediateNodeLoweringPhase"/> will perform a mechanical
            transformation of the syntax tree to intermediate nodes, resulting in a mostly flat structure. It is up to later phases 
            to give the document structure and semantics according to a document kind. The default 
            <see cref="T:Microsoft.AspNetCore.Razor.Language.IRazorIntermediateNodeLoweringPhase"/> is also responsible for merging nodes from imported documents.
            </remarks>
        </member>
        <member name="T:Microsoft.AspNetCore.Razor.Language.IRazorOptimizationPhase">
            <summary>
            Performs necessary modifications to the <see cref="T:Microsoft.AspNetCore.Razor.Language.Intermediate.DocumentIntermediateNode"/> to complete and
            optimize code generation.
            </summary>
            <remarks>
            <para>
            The last phase of intermediate node document processing is optimization. Passes in this phase perform some 
            kind of transformation on the intermediate node document that optimizes the generated code. The key distinction 
            here is that information may be discarded during this phase.
            </para>
            <para>
            <see cref="T:Microsoft.AspNetCore.Razor.Language.IRazorOptimizationPass"/> objects are executed according to an ascending ordering of the
            <see cref="P:Microsoft.AspNetCore.Razor.Language.IRazorOptimizationPass.Order"/> property.
            </para>
            </remarks>
        </member>
        <member name="M:Microsoft.AspNetCore.Razor.Language.Legacy.AddTagHelperChunkGenerator.Equals(System.Object)">
            <inheritdoc />
        </member>
        <member name="M:Microsoft.AspNetCore.Razor.Language.Legacy.AddTagHelperChunkGenerator.GetHashCode">
            <inheritdoc />
        </member>
        <member name="T:Microsoft.AspNetCore.Razor.Language.Legacy.ErrorSink">
            <summary>
            Used to manage <see cref="T:Microsoft.AspNetCore.Razor.Language.RazorDiagnostic"/>s encountered during the Razor parsing phase.
            </summary>
        </member>
        <member name="M:Microsoft.AspNetCore.Razor.Language.Legacy.ErrorSink.#ctor">
            <summary>
            Instantiates a new instance of <see cref="T:Microsoft.AspNetCore.Razor.Language.Legacy.ErrorSink"/>.
            </summary>
        </member>
        <member name="P:Microsoft.AspNetCore.Razor.Language.Legacy.ErrorSink.Errors">
            <summary>
            <see cref="T:Microsoft.AspNetCore.Razor.Language.RazorDiagnostic"/>s collected.
            </summary>
        </member>
        <member name="M:Microsoft.AspNetCore.Razor.Language.Legacy.ErrorSink.OnError(Microsoft.AspNetCore.Razor.Language.RazorDiagnostic)">
            <summary>
            Tracks the given <paramref name="error"/>.
            </summary>
            <param name="error">The <see cref="T:Microsoft.AspNetCore.Razor.Language.RazorDiagnostic"/> to track.</param>
        </member>
        <member name="M:Microsoft.AspNetCore.Razor.Language.Legacy.HtmlMarkupParser.IsCommentContentEndingInvalid(System.Collections.Generic.IEnumerable{Microsoft.AspNetCore.Razor.Language.Legacy.HtmlSymbol})">
            <summary>
            Verifies, that the sequence doesn't end with the "&lt;!-" HtmlSymbols. Note, the first symbol is an opening bracket symbol
            </summary>
        </member>
        <member name="M:Microsoft.AspNetCore.Razor.Language.Legacy.HtmlMarkupParser.ScanTagInDocumentContext">
            <summary>
            Reads the content of a tag (if present) in the MarkupDocument (or MarkupSection) context,
            where we don't care about maintaining a stack of tags.
            </summary>
        </member>
        <member name="T:Microsoft.AspNetCore.Razor.Language.Legacy.PartialParseResultInternal">
            <summary>
            The result of attempting an incremental parse
            </summary>
            <remarks>
            Either the Accepted or Rejected flag is ALWAYS set.
            Additionally, Provisional may be set with Accepted and SpanContextChanged may be set with Rejected.
            Provisional may NOT be set with Rejected and SpanContextChanged may NOT be set with Accepted.
            </remarks>
        </member>
        <member name="F:Microsoft.AspNetCore.Razor.Language.Legacy.PartialParseResultInternal.Rejected">
            <summary>
            Indicates that the edit could not be accepted and that a reparse is underway.
            </summary>
        </member>
        <member name="F:Microsoft.AspNetCore.Razor.Language.Legacy.PartialParseResultInternal.Accepted">
            <summary>
            Indicates that the edit was accepted and has been added to the parse tree
            </summary>
        </member>
        <member name="F:Microsoft.AspNetCore.Razor.Language.Legacy.PartialParseResultInternal.Provisional">
            <summary>
            Indicates that the edit was accepted, but that a reparse should be forced when idle time is available
            since the edit may be misclassified
            </summary>
            <remarks>
            This generally occurs when a "." is typed in an Implicit Expression, since editors require that this
            be assigned to Code in order to properly support features like IntelliSense.  However, if no further edits
            occur following the ".", it should be treated as Markup.
            </remarks>
        </member>
        <member name="F:Microsoft.AspNetCore.Razor.Language.Legacy.PartialParseResultInternal.SpanContextChanged">
            <summary>
            Indicates that the edit caused a change in the span's context and that if any statement completions were active prior to starting this
            partial parse, they should be reinitialized.
            </summary>
        </member>
        <member name="F:Microsoft.AspNetCore.Razor.Language.Legacy.PartialParseResultInternal.AutoCompleteBlock">
            <summary>
            Indicates that the edit requires an auto completion to occur
            </summary>
        </member>
        <member name="M:Microsoft.AspNetCore.Razor.Language.Legacy.RemoveTagHelperChunkGenerator.Equals(System.Object)">
            <inheritdoc />
        </member>
        <member name="M:Microsoft.AspNetCore.Razor.Language.Legacy.RemoveTagHelperChunkGenerator.GetHashCode">
            <inheritdoc />
        </member>
        <member name="M:Microsoft.AspNetCore.Razor.Language.Legacy.Span.EquivalentTo(Microsoft.AspNetCore.Razor.Language.Legacy.SyntaxTreeNode)">
            <summary>
            Checks that the specified span is equivalent to the other in that it has the same start point and content.
            </summary>
        </member>
        <member name="M:Microsoft.AspNetCore.Razor.Language.Legacy.SpanEditHandler.IsEndDeletion(Microsoft.AspNetCore.Razor.Language.Legacy.Span,Microsoft.AspNetCore.Razor.Language.SourceChange)">
            <summary>
            Returns true if the specified change is an insertion of text at the end of this span.
            </summary>
        </member>
        <member name="M:Microsoft.AspNetCore.Razor.Language.Legacy.SpanEditHandler.IsEndReplace(Microsoft.AspNetCore.Razor.Language.Legacy.Span,Microsoft.AspNetCore.Razor.Language.SourceChange)">
            <summary>
            Returns true if the specified change is a replacement of text at the end of this span.
            </summary>
        </member>
        <member name="M:Microsoft.AspNetCore.Razor.Language.Legacy.SyntaxTreeBuilder.StartBlock(Microsoft.AspNetCore.Razor.Language.Legacy.BlockKindInternal)">
            <summary>
            Starts a block of the specified type
            </summary>
            <param name="blockType">The type of the block to start</param>
        </member>
        <member name="M:Microsoft.AspNetCore.Razor.Language.Legacy.SyntaxTreeBuilder.EndBlock">
            <summary>
            Ends the current block
            </summary>
        </member>
        <member name="P:Microsoft.AspNetCore.Razor.Language.Legacy.SyntaxTreeNode.IsBlock">
            <summary>
            Returns true if this element is a block (to avoid casting)
            </summary>
        </member>
        <member name="P:Microsoft.AspNetCore.Razor.Language.Legacy.SyntaxTreeNode.Length">
            <summary>
            The length of all the content contained in this node
            </summary>
        </member>
        <member name="P:Microsoft.AspNetCore.Razor.Language.Legacy.SyntaxTreeNode.Start">
            <summary>
            The start point of this node
            </summary>
        </member>
        <member name="M:Microsoft.AspNetCore.Razor.Language.Legacy.SyntaxTreeNode.EquivalentTo(Microsoft.AspNetCore.Razor.Language.Legacy.SyntaxTreeNode)">
            <summary>
            Determines if the specified node is equivalent to this node
            </summary>
            <param name="node">The node to compare this node with</param>
            <returns>
            true if the provided node has all the same content and metadata, though the specific quantity and type of
            symbols may be different.
            </returns>
        </member>
        <member name="M:Microsoft.AspNetCore.Razor.Language.Legacy.SyntaxTreeNode.GetEquivalenceHash">
            <summary>
            Determines a hash code for the <see cref="T:Microsoft.AspNetCore.Razor.Language.Legacy.SyntaxTreeNode"/> using only information relevant in
            <see cref="M:Microsoft.AspNetCore.Razor.Language.Legacy.SyntaxTreeNode.EquivalentTo(Microsoft.AspNetCore.Razor.Language.Legacy.SyntaxTreeNode)"/> comparisons.
            </summary>
            <returns>
            A hash code for the <see cref="T:Microsoft.AspNetCore.Razor.Language.Legacy.SyntaxTreeNode"/> using only information relevant in
            <see cref="M:Microsoft.AspNetCore.Razor.Language.Legacy.SyntaxTreeNode.EquivalentTo(Microsoft.AspNetCore.Razor.Language.Legacy.SyntaxTreeNode)"/> comparisons.
            </returns>
        </member>
        <member name="T:Microsoft.AspNetCore.Razor.Language.Legacy.TagHelperBlock">
            <summary>
            A <see cref="T:Microsoft.AspNetCore.Razor.Language.Legacy.Block"/> that reprents a special HTML element.
            </summary>
        </member>
        <member name="M:Microsoft.AspNetCore.Razor.Language.Legacy.TagHelperBlock.#ctor(Microsoft.AspNetCore.Razor.Language.Legacy.TagHelperBlockBuilder)">
            <summary>
            Instantiates a new instance of a <see cref="T:Microsoft.AspNetCore.Razor.Language.Legacy.TagHelperBlock"/>.
            </summary>
            <param name="source">A <see cref="T:Microsoft.AspNetCore.Razor.Language.Legacy.TagHelperBlockBuilder"/> used to construct a valid
            <see cref="T:Microsoft.AspNetCore.Razor.Language.Legacy.TagHelperBlock"/>.</param>
        </member>
        <member name="P:Microsoft.AspNetCore.Razor.Language.Legacy.TagHelperBlock.SourceStartTag">
            <summary>
            Gets the unrewritten source start tag.
            </summary>
            <remarks>This is used by design time to properly format <see cref="T:Microsoft.AspNetCore.Razor.Language.Legacy.TagHelperBlock"/>s.</remarks>
        </member>
        <member name="P:Microsoft.AspNetCore.Razor.Language.Legacy.TagHelperBlock.SourceEndTag">
            <summary>
            Gets the unrewritten source end tag.
            </summary>
            <remarks>This is used by design time to properly format <see cref="T:Microsoft.AspNetCore.Razor.Language.Legacy.TagHelperBlock"/>s.</remarks>
        </member>
        <member name="P:Microsoft.AspNetCore.Razor.Language.Legacy.TagHelperBlock.TagMode">
            <summary>
            Gets the HTML syntax of the element in the Razor source.
            </summary>
        </member>
        <member name="P:Microsoft.AspNetCore.Razor.Language.Legacy.TagHelperBlock.Binding">
            <summary>
            <see cref="T:Microsoft.AspNetCore.Razor.Language.TagHelperDescriptor"/> bindings for the HTML element.
            </summary>
        </member>
        <member name="P:Microsoft.AspNetCore.Razor.Language.Legacy.TagHelperBlock.Attributes">
            <summary>
            The HTML attributes.
            </summary>
        </member>
        <member name="P:Microsoft.AspNetCore.Razor.Language.Legacy.TagHelperBlock.Start">
            <inheritdoc />
        </member>
        <member name="P:Microsoft.AspNetCore.Razor.Language.Legacy.TagHelperBlock.TagName">
            <summary>
            The HTML tag name.
            </summary>
        </member>
        <member name="M:Microsoft.AspNetCore.Razor.Language.Legacy.TagHelperBlock.ToString">
            <inheritdoc />
        </member>
        <member name="M:Microsoft.AspNetCore.Razor.Language.Legacy.TagHelperBlock.Equals(Microsoft.AspNetCore.Razor.Language.Legacy.TagHelperBlock)">
            <summary>
            Determines whether two <see cref="T:Microsoft.AspNetCore.Razor.Language.Legacy.TagHelperBlock"/>s are equal by comparing the <see cref="P:Microsoft.AspNetCore.Razor.Language.Legacy.TagHelperBlock.TagName"/>,
            <see cref="P:Microsoft.AspNetCore.Razor.Language.Legacy.TagHelperBlock.Attributes"/>, <see cref="P:Microsoft.AspNetCore.Razor.Language.Legacy.Block.Type"/>, <see cref="P:Microsoft.AspNetCore.Razor.Language.Legacy.Block.ChunkGenerator"/> and
            <see cref="P:Microsoft.AspNetCore.Razor.Language.Legacy.Block.Children"/>.
            </summary>
            <param name="other">The <see cref="T:Microsoft.AspNetCore.Razor.Language.Legacy.TagHelperBlock"/> to check equality against.</param>
            <returns>
            <c>true</c> if the current <see cref="T:Microsoft.AspNetCore.Razor.Language.Legacy.TagHelperBlock"/> is equivalent to the given
            <paramref name="other"/>, <c>false</c> otherwise.
            </returns>
        </member>
        <member name="M:Microsoft.AspNetCore.Razor.Language.Legacy.TagHelperBlock.GetHashCode">
            <inheritdoc />
        </member>
        <member name="T:Microsoft.AspNetCore.Razor.Language.Legacy.TagHelperBlockBuilder">
            <summary>
            A <see cref="T:Microsoft.AspNetCore.Razor.Language.Legacy.BlockBuilder"/> used to create <see cref="T:Microsoft.AspNetCore.Razor.Language.Legacy.TagHelperBlock"/>s.
            </summary>
        </member>
        <member name="M:Microsoft.AspNetCore.Razor.Language.Legacy.TagHelperBlockBuilder.#ctor(Microsoft.AspNetCore.Razor.Language.Legacy.TagHelperBlock)">
            <summary>
            Instantiates a new <see cref="T:Microsoft.AspNetCore.Razor.Language.Legacy.TagHelperBlockBuilder"/> instance based on the given
            <paramref name="original"/>.
            </summary>
            <param name="original">The original <see cref="T:Microsoft.AspNetCore.Razor.Language.Legacy.TagHelperBlock"/> to copy data from.</param>
        </member>
        <member name="M:Microsoft.AspNetCore.Razor.Language.Legacy.TagHelperBlockBuilder.#ctor(System.String,Microsoft.AspNetCore.Razor.Language.TagMode,Microsoft.AspNetCore.Razor.Language.SourceLocation,System.Collections.Generic.IList{Microsoft.AspNetCore.Razor.Language.Legacy.TagHelperAttributeNode},Microsoft.AspNetCore.Razor.Language.TagHelperBinding)">
            <summary>
            Instantiates a new instance of the <see cref="T:Microsoft.AspNetCore.Razor.Language.Legacy.TagHelperBlockBuilder"/> class
            with the provided values.
            </summary>
            <param name="tagName">An HTML tag name.</param>
            <param name="tagMode">HTML syntax of the element in the Razor source.</param>
            <param name="start">Starting location of the <see cref="T:Microsoft.AspNetCore.Razor.Language.Legacy.TagHelperBlock"/>.</param>
            <param name="attributes">Attributes of the <see cref="T:Microsoft.AspNetCore.Razor.Language.Legacy.TagHelperBlock"/>.</param>
            <param name="bindingResult"></param>
        </member>
        <member name="P:Microsoft.AspNetCore.Razor.Language.Legacy.TagHelperBlockBuilder.SourceStartTag">
            <summary>
            Gets or sets the unrewritten source start tag.
            </summary>
            <remarks>This is used by design time to properly format <see cref="T:Microsoft.AspNetCore.Razor.Language.Legacy.TagHelperBlock"/>s.</remarks>
        </member>
        <member name="P:Microsoft.AspNetCore.Razor.Language.Legacy.TagHelperBlockBuilder.SourceEndTag">
            <summary>
            Gets or sets the unrewritten source end tag.
            </summary>
            <remarks>This is used by design time to properly format <see cref="T:Microsoft.AspNetCore.Razor.Language.Legacy.TagHelperBlock"/>s.</remarks>
        </member>
        <member name="P:Microsoft.AspNetCore.Razor.Language.Legacy.TagHelperBlockBuilder.TagMode">
            <summary>
            Gets the HTML syntax of the element in the Razor source.
            </summary>
        </member>
        <member name="P:Microsoft.AspNetCore.Razor.Language.Legacy.TagHelperBlockBuilder.BindingResult">
            <summary>
            <see cref="T:Microsoft.AspNetCore.Razor.Language.TagHelperDescriptor"/>s for the HTML element.
            </summary>
        </member>
        <member name="P:Microsoft.AspNetCore.Razor.Language.Legacy.TagHelperBlockBuilder.Attributes">
            <summary>
            The HTML attributes.
            </summary>
        </member>
        <member name="P:Microsoft.AspNetCore.Razor.Language.Legacy.TagHelperBlockBuilder.TagName">
            <summary>
            The HTML tag name.
            </summary>
        </member>
        <member name="M:Microsoft.AspNetCore.Razor.Language.Legacy.TagHelperBlockBuilder.Build">
            <summary>
            Constructs a new <see cref="T:Microsoft.AspNetCore.Razor.Language.Legacy.TagHelperBlock"/>.
            </summary>
            <returns>A <see cref="T:Microsoft.AspNetCore.Razor.Language.Legacy.TagHelperBlock"/>.</returns>
        </member>
        <member name="M:Microsoft.AspNetCore.Razor.Language.Legacy.TagHelperBlockBuilder.Reset">
            <inheritdoc />
            <remarks>
            Sets the <see cref="P:Microsoft.AspNetCore.Razor.Language.Legacy.TagHelperBlockBuilder.TagName"/> to <c>null</c> and clears the <see cref="P:Microsoft.AspNetCore.Razor.Language.Legacy.TagHelperBlockBuilder.Attributes"/>.
            </remarks>
        </member>
        <member name="P:Microsoft.AspNetCore.Razor.Language.Legacy.TagHelperBlockBuilder.Start">
            <summary>
            The starting <see cref="T:Microsoft.AspNetCore.Razor.Language.SourceLocation"/> of the tag helper.
            </summary>
        </member>
        <member name="T:Microsoft.AspNetCore.Razor.Language.Legacy.TagHelperDirectiveType">
            <summary>
            The type of tag helper directive.
            </summary>
        </member>
        <member name="F:Microsoft.AspNetCore.Razor.Language.Legacy.TagHelperDirectiveType.AddTagHelper">
            <summary>
            An <c>@addTagHelper</c> directive.
            </summary>
        </member>
        <member name="F:Microsoft.AspNetCore.Razor.Language.Legacy.TagHelperDirectiveType.RemoveTagHelper">
            <summary>
            A <c>@removeTagHelper</c> directive.
            </summary>
        </member>
        <member name="F:Microsoft.AspNetCore.Razor.Language.Legacy.TagHelperDirectiveType.TagHelperPrefix">
            <summary>
            A <c>@tagHelperPrefix</c> directive.
            </summary>
        </member>
        <member name="M:Microsoft.AspNetCore.Razor.Language.Legacy.TagHelperPrefixDirectiveChunkGenerator.Equals(System.Object)">
            <inheritdoc />
        </member>
        <member name="M:Microsoft.AspNetCore.Razor.Language.Legacy.TagHelperPrefixDirectiveChunkGenerator.GetHashCode">
            <inheritdoc />
        </member>
        <member name="M:Microsoft.AspNetCore.Razor.Language.Legacy.Tokenizer`2.Stop">
            <summary>
            Returns a result indicating that the machine should stop executing and return null output.
            </summary>
        </member>
        <member name="M:Microsoft.AspNetCore.Razor.Language.Legacy.Tokenizer`2.Transition(System.Int32)">
            <summary>
            Returns a result indicating that this state has no output and the machine should immediately invoke the specified state
            </summary>
            <remarks>
            By returning no output, the state machine will invoke the next state immediately, before returning
            controller to the caller of <see cref="M:Microsoft.AspNetCore.Razor.Language.Legacy.Tokenizer`2.Turn"/>
            </remarks>
        </member>
        <member name="M:Microsoft.AspNetCore.Razor.Language.Legacy.Tokenizer`2.Transition(System.Int32,`0)">
            <summary>
            Returns a result containing the specified output and indicating that the next call to
            <see cref="M:Microsoft.AspNetCore.Razor.Language.Legacy.Tokenizer`2.Turn"/> should invoke the provided state.
            </summary>
        </member>
        <member name="M:Microsoft.AspNetCore.Razor.Language.Legacy.Tokenizer`2.Stay">
            <summary>
            Returns a result indicating that this state has no output and the machine should remain in this state
            </summary>
            <remarks>
            By returning no output, the state machine will re-invoke the current state again before returning
            controller to the caller of <see cref="M:Microsoft.AspNetCore.Razor.Language.Legacy.Tokenizer`2.Turn"/>
            </remarks>
        </member>
        <member name="M:Microsoft.AspNetCore.Razor.Language.Legacy.Tokenizer`2.Stay(`0)">
            <summary>
            Returns a result containing the specified output and indicating that the next call to
            <see cref="M:Microsoft.AspNetCore.Razor.Language.Legacy.Tokenizer`2.Turn"/> should re-invoke the current state.
            </summary>
        </member>
        <member name="M:Microsoft.AspNetCore.Razor.Language.Legacy.Tokenizer`2.Lookahead(System.String,System.Boolean,System.Boolean)">
            <summary>
            Internal for unit testing
            </summary>
        </member>
        <member name="M:Microsoft.AspNetCore.Razor.Language.Legacy.TokenizerBackedParser`3.LookaheadUntil(System.Func{`1,System.Collections.Generic.IEnumerable{`1},System.Boolean})">
            <summary>
            Looks forward until the specified condition is met.
            </summary>
            <param name="condition">A predicate accepting the symbol being evaluated and the list of symbols which have been looped through.</param>
            <returns>true, if the condition was met. false - if the condition wasn't met and the last symbol has already been processed.</returns>
            <remarks>The list of previous symbols is passed in the reverse order. So the last processed element will be the first one in the list.</remarks>
        </member>
        <member name="M:Microsoft.AspNetCore.Razor.Language.Legacy.TokenizerBackedParser`3.PutBack(System.Collections.Generic.IEnumerable{`1})">
            <summary>
            Put the specified symbols back in the input stream. The provided list MUST be in the ORDER THE SYMBOLS WERE READ. The
            list WILL be reversed and the Putback(TSymbol) will be called on each item.
            </summary>
            <remarks>
            If a document contains symbols: a, b, c, d, e, f
            and AcceptWhile or AcceptUntil is used to collect until d
            the list returned by AcceptWhile/Until will contain: a, b, c IN THAT ORDER
            that is the correct format for providing to this method. The caller of this method would,
            in that case, want to put c, b and a back into the stream, so "a, b, c" is the CORRECT order
            </remarks>
        </member>
        <member name="T:Microsoft.AspNetCore.Razor.Language.NotFoundProjectItem">
            <summary>
            A <see cref="T:Microsoft.AspNetCore.Razor.Language.RazorProjectItem"/> that does not exist.
            </summary>
        </member>
        <member name="M:Microsoft.AspNetCore.Razor.Language.NotFoundProjectItem.#ctor(System.String,System.String)">
            <summary>
            Initializes a new instance of <see cref="T:Microsoft.AspNetCore.Razor.Language.NotFoundProjectItem"/>.
            </summary>
            <param name="basePath">The base path.</param>
            <param name="path">The path.</param>
        </member>
        <member name="P:Microsoft.AspNetCore.Razor.Language.NotFoundProjectItem.BasePath">
            <inheritdoc />
        </member>
        <member name="P:Microsoft.AspNetCore.Razor.Language.NotFoundProjectItem.FilePath">
            <inheritdoc />
        </member>
        <member name="P:Microsoft.AspNetCore.Razor.Language.NotFoundProjectItem.Exists">
            <inheritdoc />
        </member>
        <member name="P:Microsoft.AspNetCore.Razor.Language.NotFoundProjectItem.PhysicalPath">
            <inheritdoc />
        </member>
        <member name="M:Microsoft.AspNetCore.Razor.Language.NotFoundProjectItem.Read">
            <inheritdoc />
        </member>
        <member name="P:Microsoft.AspNetCore.Razor.Language.Resources.AddTagHelperDirective_Description">
            <summary>
            Register Tag Helpers for use in the current document.
            </summary>
        </member>
        <member name="M:Microsoft.AspNetCore.Razor.Language.Resources.FormatAddTagHelperDirective_Description">
            <summary>
            Register Tag Helpers for use in the current document.
            </summary>
        </member>
        <member name="P:Microsoft.AspNetCore.Razor.Language.Resources.AddTagHelperDirective_StringToken_Description">
            <summary>
            Add tag helpers from the specified type name and assembly name. Specify '*' for the type name to include all tag helper types from the specified assembly.
            </summary>
        </member>
        <member name="M:Microsoft.AspNetCore.Razor.Language.Resources.FormatAddTagHelperDirective_StringToken_Description">
            <summary>
            Add tag helpers from the specified type name and assembly name. Specify '*' for the type name to include all tag helper types from the specified assembly.
            </summary>
        </member>
        <member name="P:Microsoft.AspNetCore.Razor.Language.Resources.AddTagHelperDirective_StringToken_Name">
            <summary>
            TypeName, AssemblyName
            </summary>
        </member>
        <member name="M:Microsoft.AspNetCore.Razor.Language.Resources.FormatAddTagHelperDirective_StringToken_Name">
            <summary>
            TypeName, AssemblyName
            </summary>
        </member>
        <member name="P:Microsoft.AspNetCore.Razor.Language.Resources.ArgumentCannotBeNullOrEmpty">
            <summary>
            Value cannot be null or an empty string.
            </summary>
        </member>
        <member name="M:Microsoft.AspNetCore.Razor.Language.Resources.FormatArgumentCannotBeNullOrEmpty">
            <summary>
            Value cannot be null or an empty string.
            </summary>
        </member>
        <member name="P:Microsoft.AspNetCore.Razor.Language.Resources.Block_Type_Not_Specified">
            <summary>
            Block cannot be built because a Type has not been specified in the BlockBuilder
            </summary>
        </member>
        <member name="M:Microsoft.AspNetCore.Razor.Language.Resources.FormatBlock_Type_Not_Specified">
            <summary>
            Block cannot be built because a Type has not been specified in the BlockBuilder
            </summary>
        </member>
        <member name="P:Microsoft.AspNetCore.Razor.Language.Resources.BlockDirectiveCannotBeImported">
            <summary>
            Block directive '{0}' cannot be imported.
            </summary>
        </member>
        <member name="M:Microsoft.AspNetCore.Razor.Language.Resources.FormatBlockDirectiveCannotBeImported(System.Object)">
            <summary>
            Block directive '{0}' cannot be imported.
            </summary>
        </member>
        <member name="P:Microsoft.AspNetCore.Razor.Language.Resources.BlockName_Code">
            <summary>
            code
            </summary>
        </member>
        <member name="M:Microsoft.AspNetCore.Razor.Language.Resources.FormatBlockName_Code">
            <summary>
            code
            </summary>
        </member>
        <member name="P:Microsoft.AspNetCore.Razor.Language.Resources.BlockName_ExplicitExpression">
            <summary>
            explicit expression
            </summary>
        </member>
        <member name="M:Microsoft.AspNetCore.Razor.Language.Resources.FormatBlockName_ExplicitExpression">
            <summary>
            explicit expression
            </summary>
        </member>
        <member name="P:Microsoft.AspNetCore.Razor.Language.Resources.CodeWriter_InvalidNewLine">
            <summary>
            Invalid newline sequence '{0}'. Support newline sequences are '\r\n' and '\n'.
            </summary>
        </member>
        <member name="M:Microsoft.AspNetCore.Razor.Language.Resources.FormatCodeWriter_InvalidNewLine(System.Object)">
            <summary>
            Invalid newline sequence '{0}'. Support newline sequences are '\r\n' and '\n'.
            </summary>
        </member>
        <member name="P:Microsoft.AspNetCore.Razor.Language.Resources.CSharpSymbol_CharacterLiteral">
            <summary>
            &lt;&lt;character literal&gt;&gt;
            </summary>
        </member>
        <member name="M:Microsoft.AspNetCore.Razor.Language.Resources.FormatCSharpSymbol_CharacterLiteral">
            <summary>
            &lt;&lt;character literal&gt;&gt;
            </summary>
        </member>
        <member name="P:Microsoft.AspNetCore.Razor.Language.Resources.CSharpSymbol_Comment">
            <summary>
            &lt;&lt;comment&gt;&gt;
            </summary>
        </member>
        <member name="M:Microsoft.AspNetCore.Razor.Language.Resources.FormatCSharpSymbol_Comment">
            <summary>
            &lt;&lt;comment&gt;&gt;
            </summary>
        </member>
        <member name="P:Microsoft.AspNetCore.Razor.Language.Resources.CSharpSymbol_Identifier">
            <summary>
            &lt;&lt;identifier&gt;&gt;
            </summary>
        </member>
        <member name="M:Microsoft.AspNetCore.Razor.Language.Resources.FormatCSharpSymbol_Identifier">
            <summary>
            &lt;&lt;identifier&gt;&gt;
            </summary>
        </member>
        <member name="P:Microsoft.AspNetCore.Razor.Language.Resources.CSharpSymbol_IntegerLiteral">
            <summary>
            &lt;&lt;integer literal&gt;&gt;
            </summary>
        </member>
        <member name="M:Microsoft.AspNetCore.Razor.Language.Resources.FormatCSharpSymbol_IntegerLiteral">
            <summary>
            &lt;&lt;integer literal&gt;&gt;
            </summary>
        </member>
        <member name="P:Microsoft.AspNetCore.Razor.Language.Resources.CSharpSymbol_Keyword">
            <summary>
            &lt;&lt;keyword&gt;&gt;
            </summary>
        </member>
        <member name="M:Microsoft.AspNetCore.Razor.Language.Resources.FormatCSharpSymbol_Keyword">
            <summary>
            &lt;&lt;keyword&gt;&gt;
            </summary>
        </member>
        <member name="P:Microsoft.AspNetCore.Razor.Language.Resources.CSharpSymbol_Newline">
            <summary>
            &lt;&lt;newline sequence&gt;&gt;
            </summary>
        </member>
        <member name="M:Microsoft.AspNetCore.Razor.Language.Resources.FormatCSharpSymbol_Newline">
            <summary>
            &lt;&lt;newline sequence&gt;&gt;
            </summary>
        </member>
        <member name="P:Microsoft.AspNetCore.Razor.Language.Resources.CSharpSymbol_RealLiteral">
            <summary>
            &lt;&lt;real literal&gt;&gt;
            </summary>
        </member>
        <member name="M:Microsoft.AspNetCore.Razor.Language.Resources.FormatCSharpSymbol_RealLiteral">
            <summary>
            &lt;&lt;real literal&gt;&gt;
            </summary>
        </member>
        <member name="P:Microsoft.AspNetCore.Razor.Language.Resources.CSharpSymbol_StringLiteral">
            <summary>
            &lt;&lt;string literal&gt;&gt;
            </summary>
        </member>
        <member name="M:Microsoft.AspNetCore.Razor.Language.Resources.FormatCSharpSymbol_StringLiteral">
            <summary>
            &lt;&lt;string literal&gt;&gt;
            </summary>
        </member>
        <member name="P:Microsoft.AspNetCore.Razor.Language.Resources.CSharpSymbol_Whitespace">
            <summary>
            &lt;&lt;white space&gt;&gt;
            </summary>
        </member>
        <member name="M:Microsoft.AspNetCore.Razor.Language.Resources.FormatCSharpSymbol_Whitespace">
            <summary>
            &lt;&lt;white space&gt;&gt;
            </summary>
        </member>
        <member name="P:Microsoft.AspNetCore.Razor.Language.Resources.Diagnostic_CodeTarget_UnsupportedExtension">
            <summary>
            The document type '{0}' does not support the extension '{1}'.
            </summary>
        </member>
        <member name="M:Microsoft.AspNetCore.Razor.Language.Resources.FormatDiagnostic_CodeTarget_UnsupportedExtension(System.Object,System.Object)">
            <summary>
            The document type '{0}' does not support the extension '{1}'.
            </summary>
        </member>
        <member name="P:Microsoft.AspNetCore.Razor.Language.Resources.DirectiveDescriptor_InvalidDirectiveKeyword">
            <summary>
            Invalid directive keyword '{0}'. Directives must have a non-empty keyword that consists only of letters.
            </summary>
        </member>
        <member name="M:Microsoft.AspNetCore.Razor.Language.Resources.FormatDirectiveDescriptor_InvalidDirectiveKeyword(System.Object)">
            <summary>
            Invalid directive keyword '{0}'. Directives must have a non-empty keyword that consists only of letters.
            </summary>
        </member>
        <member name="P:Microsoft.AspNetCore.Razor.Language.Resources.DirectiveDescriptor_InvalidNonOptionalToken">
            <summary>
            A non-optional directive token cannot follow an optional directive token.
            </summary>
        </member>
        <member name="M:Microsoft.AspNetCore.Razor.Language.Resources.FormatDirectiveDescriptor_InvalidNonOptionalToken">
            <summary>
            A non-optional directive token cannot follow an optional directive token.
            </summary>
        </member>
        <member name="P:Microsoft.AspNetCore.Razor.Language.Resources.DirectiveExpectsIdentifier">
            <summary>
            The '{0}' directive expects an identifier.
            </summary>
        </member>
        <member name="M:Microsoft.AspNetCore.Razor.Language.Resources.FormatDirectiveExpectsIdentifier(System.Object)">
            <summary>
            The '{0}' directive expects an identifier.
            </summary>
        </member>
        <member name="P:Microsoft.AspNetCore.Razor.Language.Resources.DirectiveExpectsNamespace">
            <summary>
            The '{0}' directive expects a namespace name.
            </summary>
        </member>
        <member name="M:Microsoft.AspNetCore.Razor.Language.Resources.FormatDirectiveExpectsNamespace(System.Object)">
            <summary>
            The '{0}' directive expects a namespace name.
            </summary>
        </member>
        <member name="P:Microsoft.AspNetCore.Razor.Language.Resources.DirectiveExpectsQuotedStringLiteral">
            <summary>
            The '{0}' directive expects a string surrounded by double quotes.
            </summary>
        </member>
        <member name="M:Microsoft.AspNetCore.Razor.Language.Resources.FormatDirectiveExpectsQuotedStringLiteral(System.Object)">
            <summary>
            The '{0}' directive expects a string surrounded by double quotes.
            </summary>
        </member>
        <member name="P:Microsoft.AspNetCore.Razor.Language.Resources.DirectiveExpectsTypeName">
            <summary>
            The '{0}' directive expects a type name.
            </summary>
        </member>
        <member name="M:Microsoft.AspNetCore.Razor.Language.Resources.FormatDirectiveExpectsTypeName(System.Object)">
            <summary>
            The '{0}' directive expects a type name.
            </summary>
        </member>
        <member name="P:Microsoft.AspNetCore.Razor.Language.Resources.DirectiveMustAppearAtStartOfLine">
            <summary>
            The '{0}` directive must appear at the start of the line.
            </summary>
        </member>
        <member name="M:Microsoft.AspNetCore.Razor.Language.Resources.FormatDirectiveMustAppearAtStartOfLine(System.Object)">
            <summary>
            The '{0}` directive must appear at the start of the line.
            </summary>
        </member>
        <member name="P:Microsoft.AspNetCore.Razor.Language.Resources.DirectiveTokensMustBeSeparatedByWhitespace">
            <summary>
            The '{0}' directives value(s) must be separated by whitespace.
            </summary>
        </member>
        <member name="M:Microsoft.AspNetCore.Razor.Language.Resources.FormatDirectiveTokensMustBeSeparatedByWhitespace(System.Object)">
            <summary>
            The '{0}' directives value(s) must be separated by whitespace.
            </summary>
        </member>
        <member name="P:Microsoft.AspNetCore.Razor.Language.Resources.DocumentMissingTarget">
            <summary>
            The document of kind '{0}' does not have a '{1}'. The document classifier must set a value for '{2}'.
            </summary>
        </member>
        <member name="M:Microsoft.AspNetCore.Razor.Language.Resources.FormatDocumentMissingTarget(System.Object,System.Object,System.Object)">
            <summary>
            The document of kind '{0}' does not have a '{1}'. The document classifier must set a value for '{2}'.
            </summary>
        </member>
        <member name="P:Microsoft.AspNetCore.Razor.Language.Resources.DuplicateDirective">
            <summary>
            The '{0}' directive may only occur once per document.
            </summary>
        </member>
        <member name="M:Microsoft.AspNetCore.Razor.Language.Resources.FormatDuplicateDirective(System.Object)">
            <summary>
            The '{0}' directive may only occur once per document.
            </summary>
        </member>
        <member name="P:Microsoft.AspNetCore.Razor.Language.Resources.EndBlock_Called_Without_Matching_StartBlock">
            <summary>
            "EndBlock" was called without a matching call to "StartBlock".
            </summary>
        </member>
        <member name="M:Microsoft.AspNetCore.Razor.Language.Resources.FormatEndBlock_Called_Without_Matching_StartBlock">
            <summary>
            "EndBlock" was called without a matching call to "StartBlock".
            </summary>
        </member>
        <member name="P:Microsoft.AspNetCore.Razor.Language.Resources.ErrorComponent_Newline">
            <summary>
            line break
            </summary>
        </member>
        <member name="M:Microsoft.AspNetCore.Razor.Language.Resources.FormatErrorComponent_Newline">
            <summary>
            line break
            </summary>
        </member>
        <member name="P:Microsoft.AspNetCore.Razor.Language.Resources.FeatureDependencyMissing">
            <summary>
            The '{0}' feature requires a '{1}' provided by the '{2}'.
            </summary>
        </member>
        <member name="M:Microsoft.AspNetCore.Razor.Language.Resources.FormatFeatureDependencyMissing(System.Object,System.Object,System.Object)">
            <summary>
            The '{0}' feature requires a '{1}' provided by the '{2}'.
            </summary>
        </member>
        <member name="P:Microsoft.AspNetCore.Razor.Language.Resources.FeatureMustBeInitialized">
            <summary>
            The feature must be initialized by setting the '{0}' property.
            </summary>
        </member>
        <member name="M:Microsoft.AspNetCore.Razor.Language.Resources.FormatFeatureMustBeInitialized(System.Object)">
            <summary>
            The feature must be initialized by setting the '{0}' property.
            </summary>
        </member>
        <member name="P:Microsoft.AspNetCore.Razor.Language.Resources.FunctionsDirective_Description">
            <summary>
            Specify a C# code block.
            </summary>
        </member>
        <member name="M:Microsoft.AspNetCore.Razor.Language.Resources.FormatFunctionsDirective_Description">
            <summary>
            Specify a C# code block.
            </summary>
        </member>
        <member name="P:Microsoft.AspNetCore.Razor.Language.Resources.HtmlSymbol_NewLine">
            <summary>
            &lt;&lt;newline sequence&gt;&gt;
            </summary>
        </member>
        <member name="M:Microsoft.AspNetCore.Razor.Language.Resources.FormatHtmlSymbol_NewLine">
            <summary>
            &lt;&lt;newline sequence&gt;&gt;
            </summary>
        </member>
        <member name="P:Microsoft.AspNetCore.Razor.Language.Resources.HtmlSymbol_RazorComment">
            <summary>
            &lt;&lt;razor comment&gt;&gt;
            </summary>
        </member>
        <member name="M:Microsoft.AspNetCore.Razor.Language.Resources.FormatHtmlSymbol_RazorComment">
            <summary>
            &lt;&lt;razor comment&gt;&gt;
            </summary>
        </member>
        <member name="P:Microsoft.AspNetCore.Razor.Language.Resources.HtmlSymbol_Text">
            <summary>
            &lt;&lt;text&gt;&gt;
            </summary>
        </member>
        <member name="M:Microsoft.AspNetCore.Razor.Language.Resources.FormatHtmlSymbol_Text">
            <summary>
            &lt;&lt;text&gt;&gt;
            </summary>
        </member>
        <member name="P:Microsoft.AspNetCore.Razor.Language.Resources.HtmlSymbol_WhiteSpace">
            <summary>
            &lt;&lt;white space&gt;&gt;
            </summary>
        </member>
        <member name="M:Microsoft.AspNetCore.Razor.Language.Resources.FormatHtmlSymbol_WhiteSpace">
            <summary>
            &lt;&lt;white space&gt;&gt;
            </summary>
        </member>
        <member name="P:Microsoft.AspNetCore.Razor.Language.Resources.InheritsDirective_Description">
            <summary>
            Specify the base class for the current document.
            </summary>
        </member>
        <member name="M:Microsoft.AspNetCore.Razor.Language.Resources.FormatInheritsDirective_Description">
            <summary>
            Specify the base class for the current document.
            </summary>
        </member>
        <member name="P:Microsoft.AspNetCore.Razor.Language.Resources.InheritsDirective_TypeToken_Description">
            <summary>
            The base type that the current page inherits.
            </summary>
        </member>
        <member name="M:Microsoft.AspNetCore.Razor.Language.Resources.FormatInheritsDirective_TypeToken_Description">
            <summary>
            The base type that the current page inherits.
            </summary>
        </member>
        <member name="P:Microsoft.AspNetCore.Razor.Language.Resources.InheritsDirective_TypeToken_Name">
            <summary>
            TypeName
            </summary>
        </member>
        <member name="M:Microsoft.AspNetCore.Razor.Language.Resources.FormatInheritsDirective_TypeToken_Name">
            <summary>
            TypeName
            </summary>
        </member>
        <member name="P:Microsoft.AspNetCore.Razor.Language.Resources.IntermediateNodeBuilder_PopInvalid">
            <summary>
            The '{0}' operation is not valid when the builder is empty.
            </summary>
        </member>
        <member name="M:Microsoft.AspNetCore.Razor.Language.Resources.FormatIntermediateNodeBuilder_PopInvalid(System.Object)">
            <summary>
            The '{0}' operation is not valid when the builder is empty.
            </summary>
        </member>
        <member name="P:Microsoft.AspNetCore.Razor.Language.Resources.IntermediateNodeReference_CollectionIsReadOnly">
            <summary>
            The node '{0}' has a read-only child collection and cannot be modified.
            </summary>
        </member>
        <member name="M:Microsoft.AspNetCore.Razor.Language.Resources.FormatIntermediateNodeReference_CollectionIsReadOnly(System.Object)">
            <summary>
            The node '{0}' has a read-only child collection and cannot be modified.
            </summary>
        </member>
        <member name="P:Microsoft.AspNetCore.Razor.Language.Resources.IntermediateNodeReference_NodeNotFound">
            <summary>
            The reference is invalid. The node '{0}' could not be found as a child of '{1}'.
            </summary>
        </member>
        <member name="M:Microsoft.AspNetCore.Razor.Language.Resources.FormatIntermediateNodeReference_NodeNotFound(System.Object,System.Object)">
            <summary>
            The reference is invalid. The node '{0}' could not be found as a child of '{1}'.
            </summary>
        </member>
        <member name="P:Microsoft.AspNetCore.Razor.Language.Resources.IntermediateNodeReference_NotInitialized">
            <summary>
            The reference is invalid. References initialized with the default constructor cannot modify nodes.
            </summary>
        </member>
        <member name="M:Microsoft.AspNetCore.Razor.Language.Resources.FormatIntermediateNodeReference_NotInitialized">
            <summary>
            The reference is invalid. References initialized with the default constructor cannot modify nodes.
            </summary>
        </member>
        <member name="P:Microsoft.AspNetCore.Razor.Language.Resources.IntermediateNodes_InvalidParentNode">
            <summary>
            The '{0}' node type can only be used as a direct child of a '{1}' node.
            </summary>
        </member>
        <member name="M:Microsoft.AspNetCore.Razor.Language.Resources.FormatIntermediateNodes_InvalidParentNode(System.Object,System.Object)">
            <summary>
            The '{0}' node type can only be used as a direct child of a '{1}' node.
            </summary>
        </member>
        <member name="P:Microsoft.AspNetCore.Razor.Language.Resources.InvalidOperation_SpanIsNotChangeOwner">
            <summary>
            The node '{0}' is not the owner of change '{1}'.
            </summary>
        </member>
        <member name="M:Microsoft.AspNetCore.Razor.Language.Resources.FormatInvalidOperation_SpanIsNotChangeOwner(System.Object,System.Object)">
            <summary>
            The node '{0}' is not the owner of change '{1}'.
            </summary>
        </member>
        <member name="P:Microsoft.AspNetCore.Razor.Language.Resources.InvalidTagHelperLookupText">
            <summary>
            Invalid tag helper directive look up text '{0}'. The correct look up text format is: "name, assemblyName".
            </summary>
        </member>
        <member name="M:Microsoft.AspNetCore.Razor.Language.Resources.FormatInvalidTagHelperLookupText(System.Object)">
            <summary>
            Invalid tag helper directive look up text '{0}'. The correct look up text format is: "name, assemblyName".
            </summary>
        </member>
        <member name="P:Microsoft.AspNetCore.Razor.Language.Resources.InvalidTagHelperPrefixValue">
            <summary>
            Invalid tag helper directive '{0}' value. '{1}' is not allowed in prefix '{2}'.
            </summary>
        </member>
        <member name="M:Microsoft.AspNetCore.Razor.Language.Resources.FormatInvalidTagHelperPrefixValue(System.Object,System.Object,System.Object)">
            <summary>
            Invalid tag helper directive '{0}' value. '{1}' is not allowed in prefix '{2}'.
            </summary>
        </member>
        <member name="P:Microsoft.AspNetCore.Razor.Language.Resources.KeyMustNotBeNull">
            <summary>
            The key must not be null.
            </summary>
        </member>
        <member name="M:Microsoft.AspNetCore.Razor.Language.Resources.FormatKeyMustNotBeNull">
            <summary>
            The key must not be null.
            </summary>
        </member>
        <member name="P:Microsoft.AspNetCore.Razor.Language.Resources.Language_Does_Not_Support_RazorComment">
            <summary>
            Cannot use built-in RazorComment handler, language characteristics does not define the CommentStart, CommentStar and CommentBody known symbol types or parser does not override TokenizerBackedParser.OutputSpanBeforeRazorComment
            </summary>
        </member>
        <member name="M:Microsoft.AspNetCore.Razor.Language.Resources.FormatLanguage_Does_Not_Support_RazorComment">
            <summary>
            Cannot use built-in RazorComment handler, language characteristics does not define the CommentStart, CommentStar and CommentBody known symbol types or parser does not override TokenizerBackedParser.OutputSpanBeforeRazorComment
            </summary>
        </member>
        <member name="P:Microsoft.AspNetCore.Razor.Language.Resources.MismatchedContentEncoding">
            <summary>
            The specified encoding '{0}' does not match the content's encoding '{1}'.
            </summary>
        </member>
        <member name="M:Microsoft.AspNetCore.Razor.Language.Resources.FormatMismatchedContentEncoding(System.Object,System.Object)">
            <summary>
            The specified encoding '{0}' does not match the content's encoding '{1}'.
            </summary>
        </member>
        <member name="P:Microsoft.AspNetCore.Razor.Language.Resources.ParseError_AtInCode_Must_Be_Followed_By_Colon_Paren_Or_Identifier_Start">
            <summary>
            The "@" character must be followed by a ":", "(", or a C# identifier.  If you intended to switch to markup, use an HTML start tag, for example:
            
            @if(isLoggedIn) {{
                &lt;p&gt;Hello, @user!&lt;/p&gt;
            }}
            </summary>
        </member>
        <member name="M:Microsoft.AspNetCore.Razor.Language.Resources.FormatParseError_AtInCode_Must_Be_Followed_By_Colon_Paren_Or_Identifier_Start">
            <summary>
            The "@" character must be followed by a ":", "(", or a C# identifier.  If you intended to switch to markup, use an HTML start tag, for example:
            
            @if(isLoggedIn) {{
                &lt;p&gt;Hello, @user!&lt;/p&gt;
            }}
            </summary>
        </member>
        <member name="P:Microsoft.AspNetCore.Razor.Language.Resources.ParseError_BlockComment_Not_Terminated">
            <summary>
            End of file was reached before the end of the block comment.  All comments started with "/*" sequence must be terminated with a matching "*/" sequence.
            </summary>
        </member>
        <member name="M:Microsoft.AspNetCore.Razor.Language.Resources.FormatParseError_BlockComment_Not_Terminated">
            <summary>
            End of file was reached before the end of the block comment.  All comments started with "/*" sequence must be terminated with a matching "*/" sequence.
            </summary>
        </member>
        <member name="P:Microsoft.AspNetCore.Razor.Language.Resources.ParseError_DirectiveMustHaveValue">
            <summary>
            Directive '{0}' must have a value.
            </summary>
        </member>
        <member name="M:Microsoft.AspNetCore.Razor.Language.Resources.FormatParseError_DirectiveMustHaveValue(System.Object)">
            <summary>
            Directive '{0}' must have a value.
            </summary>
        </member>
        <member name="P:Microsoft.AspNetCore.Razor.Language.Resources.ParseError_Expected_CloseBracket_Before_EOF">
            <summary>
            An opening "{0}" is missing the corresponding closing "{1}".
            </summary>
        </member>
        <member name="M:Microsoft.AspNetCore.Razor.Language.Resources.FormatParseError_Expected_CloseBracket_Before_EOF(System.Object,System.Object)">
            <summary>
            An opening "{0}" is missing the corresponding closing "{1}".
            </summary>
        </member>
        <member name="P:Microsoft.AspNetCore.Razor.Language.Resources.ParseError_Expected_EndOfBlock_Before_EOF">
            <summary>
            The {0} block is missing a closing "{1}" character.  Make sure you have a matching "{1}" character for all the "{2}" characters within this block, and that none of the "{1}" characters are being interpreted as markup.
            </summary>
        </member>
        <member name="M:Microsoft.AspNetCore.Razor.Language.Resources.FormatParseError_Expected_EndOfBlock_Before_EOF(System.Object,System.Object,System.Object)">
            <summary>
            The {0} block is missing a closing "{1}" character.  Make sure you have a matching "{1}" character for all the "{2}" characters within this block, and that none of the "{1}" characters are being interpreted as markup.
            </summary>
        </member>
        <member name="P:Microsoft.AspNetCore.Razor.Language.Resources.ParseError_HelperDirectiveNotAvailable">
            <summary>
            The {0} directive is not supported.
            </summary>
        </member>
        <member name="M:Microsoft.AspNetCore.Razor.Language.Resources.FormatParseError_HelperDirectiveNotAvailable(System.Object)">
            <summary>
            The {0} directive is not supported.
            </summary>
        </member>
        <member name="P:Microsoft.AspNetCore.Razor.Language.Resources.ParseError_IncompleteQuotesAroundDirective">
            <summary>
            Optional quote around the directive '{0}' is missing the corresponding opening or closing quote.
            </summary>
        </member>
        <member name="M:Microsoft.AspNetCore.Razor.Language.Resources.FormatParseError_IncompleteQuotesAroundDirective(System.Object)">
            <summary>
            Optional quote around the directive '{0}' is missing the corresponding opening or closing quote.
            </summary>
        </member>
        <member name="P:Microsoft.AspNetCore.Razor.Language.Resources.ParseError_InlineMarkup_Blocks_Cannot_Be_Nested">
            <summary>
            Inline markup blocks (@&lt;p&gt;Content&lt;/p&gt;) cannot be nested.  Only one level of inline markup is allowed.
            </summary>
        </member>
        <member name="M:Microsoft.AspNetCore.Razor.Language.Resources.FormatParseError_InlineMarkup_Blocks_Cannot_Be_Nested">
            <summary>
            Inline markup blocks (@&lt;p&gt;Content&lt;/p&gt;) cannot be nested.  Only one level of inline markup is allowed.
            </summary>
        </member>
        <member name="P:Microsoft.AspNetCore.Razor.Language.Resources.ParseError_MarkupBlock_Must_Start_With_Tag">
            <summary>
            Markup in a code block must start with a tag and all start tags must be matched with end tags.  Do not use unclosed tags like "&lt;br&gt;".  Instead use self-closing tags like "&lt;br/&gt;".
            </summary>
        </member>
        <member name="M:Microsoft.AspNetCore.Razor.Language.Resources.FormatParseError_MarkupBlock_Must_Start_With_Tag">
            <summary>
            Markup in a code block must start with a tag and all start tags must be matched with end tags.  Do not use unclosed tags like "&lt;br&gt;".  Instead use self-closing tags like "&lt;br/&gt;".
            </summary>
        </member>
        <member name="P:Microsoft.AspNetCore.Razor.Language.Resources.ParseError_MissingEndTag">
            <summary>
            The "{0}" element was not closed.  All elements must be either self-closing or have a matching end tag.
            </summary>
        </member>
        <member name="M:Microsoft.AspNetCore.Razor.Language.Resources.FormatParseError_MissingEndTag(System.Object)">
            <summary>
            The "{0}" element was not closed.  All elements must be either self-closing or have a matching end tag.
            </summary>
        </member>
        <member name="P:Microsoft.AspNetCore.Razor.Language.Resources.ParseError_NamespaceImportAndTypeAlias_Cannot_Exist_Within_CodeBlock">
            <summary>
            Namespace imports and type aliases cannot be placed within code blocks.  They must immediately follow an "@" character in markup.  It is recommended that you put them at the top of the page, as in the following example:
            
            @using System.Drawing;
            @{{
                // OK here to use types from System.Drawing in the page.
            }}
            </summary>
        </member>
        <member name="M:Microsoft.AspNetCore.Razor.Language.Resources.FormatParseError_NamespaceImportAndTypeAlias_Cannot_Exist_Within_CodeBlock">
            <summary>
            Namespace imports and type aliases cannot be placed within code blocks.  They must immediately follow an "@" character in markup.  It is recommended that you put them at the top of the page, as in the following example:
            
            @using System.Drawing;
            @{{
                // OK here to use types from System.Drawing in the page.
            }}
            </summary>
        </member>
        <member name="P:Microsoft.AspNetCore.Razor.Language.Resources.ParseError_OuterTagMissingName">
            <summary>
            Outer tag is missing a name. The first character of a markup block must be an HTML tag with a valid name.
            </summary>
        </member>
        <member name="M:Microsoft.AspNetCore.Razor.Language.Resources.FormatParseError_OuterTagMissingName">
            <summary>
            Outer tag is missing a name. The first character of a markup block must be an HTML tag with a valid name.
            </summary>
        </member>
        <member name="P:Microsoft.AspNetCore.Razor.Language.Resources.ParseError_RazorComment_Not_Terminated">
            <summary>
            End of file was reached before the end of the block comment.  All comments that start with the "@*" sequence must be terminated with a matching "*@" sequence.
            </summary>
        </member>
        <member name="M:Microsoft.AspNetCore.Razor.Language.Resources.FormatParseError_RazorComment_Not_Terminated">
            <summary>
            End of file was reached before the end of the block comment.  All comments that start with the "@*" sequence must be terminated with a matching "*@" sequence.
            </summary>
        </member>
        <member name="P:Microsoft.AspNetCore.Razor.Language.Resources.ParseError_ReservedWord">
            <summary>
            "{0}" is a reserved word and cannot be used in implicit expressions.  An explicit expression ("@()") must be used.
            </summary>
        </member>
        <member name="M:Microsoft.AspNetCore.Razor.Language.Resources.FormatParseError_ReservedWord(System.Object)">
            <summary>
            "{0}" is a reserved word and cannot be used in implicit expressions.  An explicit expression ("@()") must be used.
            </summary>
        </member>
        <member name="P:Microsoft.AspNetCore.Razor.Language.Resources.ParseError_Sections_Cannot_Be_Nested">
            <summary>
            Section blocks ("{0}") cannot be nested.  Only one level of section blocks are allowed.
            </summary>
        </member>
        <member name="M:Microsoft.AspNetCore.Razor.Language.Resources.FormatParseError_Sections_Cannot_Be_Nested(System.Object)">
            <summary>
            Section blocks ("{0}") cannot be nested.  Only one level of section blocks are allowed.
            </summary>
        </member>
        <member name="P:Microsoft.AspNetCore.Razor.Language.Resources.ParseError_SingleLine_ControlFlowStatements_Not_Allowed">
            <summary>
            Expected a "{0}" but found a "{1}".  Block statements must be enclosed in "{{" and "}}".  You cannot use single-statement control-flow statements in CSHTML pages. For example, the following is not allowed:
            
            @if(isLoggedIn)
                &lt;p&gt;Hello, @user&lt;/p&gt;
            
            Instead, wrap the contents of the block in "{{}}":
            
            @if(isLoggedIn) {{
                &lt;p&gt;Hello, @user&lt;/p&gt;
            }}
            </summary>
        </member>
        <member name="M:Microsoft.AspNetCore.Razor.Language.Resources.FormatParseError_SingleLine_ControlFlowStatements_Not_Allowed(System.Object,System.Object)">
            <summary>
            Expected a "{0}" but found a "{1}".  Block statements must be enclosed in "{{" and "}}".  You cannot use single-statement control-flow statements in CSHTML pages. For example, the following is not allowed:
            
            @if(isLoggedIn)
                &lt;p&gt;Hello, @user&lt;/p&gt;
            
            Instead, wrap the contents of the block in "{{}}":
            
            @if(isLoggedIn) {{
                &lt;p&gt;Hello, @user&lt;/p&gt;
            }}
            </summary>
        </member>
        <member name="P:Microsoft.AspNetCore.Razor.Language.Resources.ParseError_TextTagCannotContainAttributes">
            <summary>
            "&lt;text&gt;" and "&lt;/text&gt;" tags cannot contain attributes.
            </summary>
        </member>
        <member name="M:Microsoft.AspNetCore.Razor.Language.Resources.FormatParseError_TextTagCannotContainAttributes">
            <summary>
            "&lt;text&gt;" and "&lt;/text&gt;" tags cannot contain attributes.
            </summary>
        </member>
        <member name="P:Microsoft.AspNetCore.Razor.Language.Resources.ParseError_Unexpected_Character_At_Start_Of_CodeBlock">
            <summary>
            "{0}" is not valid at the start of a code block.  Only identifiers, keywords, comments, "(" and "{{" are valid.
            </summary>
        </member>
        <member name="M:Microsoft.AspNetCore.Razor.Language.Resources.FormatParseError_Unexpected_Character_At_Start_Of_CodeBlock(System.Object)">
            <summary>
            "{0}" is not valid at the start of a code block.  Only identifiers, keywords, comments, "(" and "{{" are valid.
            </summary>
        </member>
        <member name="P:Microsoft.AspNetCore.Razor.Language.Resources.ParseError_Unexpected_EndOfFile_At_Start_Of_CodeBlock">
            <summary>
            End-of-file was found after the "@" character.  "@" must be followed by a valid code block.  If you want to output an "@", escape it using the sequence: "@@"
            </summary>
        </member>
        <member name="M:Microsoft.AspNetCore.Razor.Language.Resources.FormatParseError_Unexpected_EndOfFile_At_Start_Of_CodeBlock">
            <summary>
            End-of-file was found after the "@" character.  "@" must be followed by a valid code block.  If you want to output an "@", escape it using the sequence: "@@"
            </summary>
        </member>
        <member name="P:Microsoft.AspNetCore.Razor.Language.Resources.ParseError_Unexpected_Nested_CodeBlock">
            <summary>
            Unexpected "{{" after "@" character. Once inside the body of a code block (@if {{}}, @{{}}, etc.) you do not need to use "@{{" to switch to code.
            </summary>
        </member>
        <member name="M:Microsoft.AspNetCore.Razor.Language.Resources.FormatParseError_Unexpected_Nested_CodeBlock">
            <summary>
            Unexpected "{{" after "@" character. Once inside the body of a code block (@if {{}}, @{{}}, etc.) you do not need to use "@{{" to switch to code.
            </summary>
        </member>
        <member name="P:Microsoft.AspNetCore.Razor.Language.Resources.ParseError_Unexpected_WhiteSpace_At_Start_Of_CodeBlock">
            <summary>
            A space or line break was encountered after the "@" character.  Only valid identifiers, keywords, comments, "(" and "{{" are valid at the start of a code block and they must occur immediately following "@" with no space in between.
            </summary>
        </member>
        <member name="M:Microsoft.AspNetCore.Razor.Language.Resources.FormatParseError_Unexpected_WhiteSpace_At_Start_Of_CodeBlock">
            <summary>
            A space or line break was encountered after the "@" character.  Only valid identifiers, keywords, comments, "(" and "{{" are valid at the start of a code block and they must occur immediately following "@" with no space in between.
            </summary>
        </member>
        <member name="P:Microsoft.AspNetCore.Razor.Language.Resources.ParseError_UnexpectedEndTag">
            <summary>
            Encountered end tag "{0}" with no matching start tag.  Are your start/end tags properly balanced?
            </summary>
        </member>
        <member name="M:Microsoft.AspNetCore.Razor.Language.Resources.FormatParseError_UnexpectedEndTag(System.Object)">
            <summary>
            Encountered end tag "{0}" with no matching start tag.  Are your start/end tags properly balanced?
            </summary>
        </member>
        <member name="P:Microsoft.AspNetCore.Razor.Language.Resources.ParseError_UnfinishedTag">
            <summary>
            End of file or an unexpected character was reached before the "{0}" tag could be parsed.  Elements inside markup blocks must be complete. They must either be self-closing ("&lt;br /&gt;") or have matching end tags ("&lt;p&gt;Hello&lt;/p&gt;").  If you intended to display a "&lt;" character, use the "&amp;lt;" HTML entity.
            </summary>
        </member>
        <member name="M:Microsoft.AspNetCore.Razor.Language.Resources.FormatParseError_UnfinishedTag(System.Object)">
            <summary>
            End of file or an unexpected character was reached before the "{0}" tag could be parsed.  Elements inside markup blocks must be complete. They must either be self-closing ("&lt;br /&gt;") or have matching end tags ("&lt;p&gt;Hello&lt;/p&gt;").  If you intended to display a "&lt;" character, use the "&amp;lt;" HTML entity.
            </summary>
        </member>
        <member name="P:Microsoft.AspNetCore.Razor.Language.Resources.ParseError_Unterminated_String_Literal">
            <summary>
            Unterminated string literal.  Strings that start with a quotation mark (") must be terminated before the end of the line.  However, strings that start with @ and a quotation mark (@") can span multiple lines.
            </summary>
        </member>
        <member name="M:Microsoft.AspNetCore.Razor.Language.Resources.FormatParseError_Unterminated_String_Literal">
            <summary>
            Unterminated string literal.  Strings that start with a quotation mark (") must be terminated before the end of the line.  However, strings that start with @ and a quotation mark (@") can span multiple lines.
            </summary>
        </member>
        <member name="P:Microsoft.AspNetCore.Razor.Language.Resources.Parser_Context_Not_Set">
            <summary>
            Parser was started with a null Context property.  The Context property must be set BEFORE calling any methods on the parser.
            </summary>
        </member>
        <member name="M:Microsoft.AspNetCore.Razor.Language.Resources.FormatParser_Context_Not_Set">
            <summary>
            Parser was started with a null Context property.  The Context property must be set BEFORE calling any methods on the parser.
            </summary>
        </member>
        <member name="P:Microsoft.AspNetCore.Razor.Language.Resources.ParserContext_CannotCompleteTree_NoRootBlock">
            <summary>
            Cannot complete the tree, StartBlock must be called at least once.
            </summary>
        </member>
        <member name="M:Microsoft.AspNetCore.Razor.Language.Resources.FormatParserContext_CannotCompleteTree_NoRootBlock">
            <summary>
            Cannot complete the tree, StartBlock must be called at least once.
            </summary>
        </member>
        <member name="P:Microsoft.AspNetCore.Razor.Language.Resources.ParserContext_CannotCompleteTree_OutstandingBlocks">
            <summary>
            Cannot complete the tree, there are still open blocks.
            </summary>
        </member>
        <member name="M:Microsoft.AspNetCore.Razor.Language.Resources.FormatParserContext_CannotCompleteTree_OutstandingBlocks">
            <summary>
            Cannot complete the tree, there are still open blocks.
            </summary>
        </member>
        <member name="P:Microsoft.AspNetCore.Razor.Language.Resources.ParserContext_NoCurrentBlock">
            <summary>
            Cannot finish span, there is no current block. Call StartBlock at least once before finishing a span
            </summary>
        </member>
        <member name="M:Microsoft.AspNetCore.Razor.Language.Resources.FormatParserContext_NoCurrentBlock">
            <summary>
            Cannot finish span, there is no current block. Call StartBlock at least once before finishing a span
            </summary>
        </member>
        <member name="P:Microsoft.AspNetCore.Razor.Language.Resources.PhaseDependencyMissing">
            <summary>
            The '{0}' phase requires a '{1}' provided by the '{2}'.
            </summary>
        </member>
        <member name="M:Microsoft.AspNetCore.Razor.Language.Resources.FormatPhaseDependencyMissing(System.Object,System.Object,System.Object)">
            <summary>
            The '{0}' phase requires a '{1}' provided by the '{2}'.
            </summary>
        </member>
        <member name="P:Microsoft.AspNetCore.Razor.Language.Resources.PhaseMustBeInitialized">
            <summary>
            The phase must be initialized by setting the '{0}' property.
            </summary>
        </member>
        <member name="M:Microsoft.AspNetCore.Razor.Language.Resources.FormatPhaseMustBeInitialized(System.Object)">
            <summary>
            The phase must be initialized by setting the '{0}' property.
            </summary>
        </member>
        <member name="P:Microsoft.AspNetCore.Razor.Language.Resources.RazorProject_PathMustStartWithForwardSlash">
            <summary>
            Path must begin with a forward slash '/'.
            </summary>
        </member>
        <member name="M:Microsoft.AspNetCore.Razor.Language.Resources.FormatRazorProject_PathMustStartWithForwardSlash">
            <summary>
            Path must begin with a forward slash '/'.
            </summary>
        </member>
        <member name="P:Microsoft.AspNetCore.Razor.Language.Resources.RazorTemplateEngine_ItemCouldNotBeFound">
            <summary>
            The item '{0}' could not be found.
            </summary>
        </member>
        <member name="M:Microsoft.AspNetCore.Razor.Language.Resources.FormatRazorTemplateEngine_ItemCouldNotBeFound(System.Object)">
            <summary>
            The item '{0}' could not be found.
            </summary>
        </member>
        <member name="P:Microsoft.AspNetCore.Razor.Language.Resources.RemoveTagHelperDirective_Description">
            <summary>
            Remove Tag Helpers for use in the current document.
            </summary>
        </member>
        <member name="M:Microsoft.AspNetCore.Razor.Language.Resources.FormatRemoveTagHelperDirective_Description">
            <summary>
            Remove Tag Helpers for use in the current document.
            </summary>
        </member>
        <member name="P:Microsoft.AspNetCore.Razor.Language.Resources.RemoveTagHelperDirective_StringToken_Description">
            <summary>
            Remove tag helpers from the specified type name and assembly name. Specify '*' for the type name to remove all tag helper types from the specified assembly.
            </summary>
        </member>
        <member name="M:Microsoft.AspNetCore.Razor.Language.Resources.FormatRemoveTagHelperDirective_StringToken_Description">
            <summary>
            Remove tag helpers from the specified type name and assembly name. Specify '*' for the type name to remove all tag helper types from the specified assembly.
            </summary>
        </member>
        <member name="P:Microsoft.AspNetCore.Razor.Language.Resources.RemoveTagHelperDirective_StringToken_Name">
            <summary>
            TypeName, AssemblyName
            </summary>
        </member>
        <member name="M:Microsoft.AspNetCore.Razor.Language.Resources.FormatRemoveTagHelperDirective_StringToken_Name">
            <summary>
            TypeName, AssemblyName
            </summary>
        </member>
        <member name="P:Microsoft.AspNetCore.Razor.Language.Resources.RenderingContextRequiresDelegate">
            <summary>
            The '{0}' requires a '{1}' delegate to be set.
            </summary>
        </member>
        <member name="M:Microsoft.AspNetCore.Razor.Language.Resources.FormatRenderingContextRequiresDelegate(System.Object,System.Object)">
            <summary>
            The '{0}' requires a '{1}' delegate to be set.
            </summary>
        </member>
        <member name="P:Microsoft.AspNetCore.Razor.Language.Resources.RewriterError_EmptyTagHelperBoundAttribute">
            <summary>
            Attribute '{0}' on tag helper element '{1}' requires a value. Tag helper bound attributes of type '{2}' cannot be empty or contain only whitespace.
            </summary>
        </member>
        <member name="M:Microsoft.AspNetCore.Razor.Language.Resources.FormatRewriterError_EmptyTagHelperBoundAttribute(System.Object,System.Object,System.Object)">
            <summary>
            Attribute '{0}' on tag helper element '{1}' requires a value. Tag helper bound attributes of type '{2}' cannot be empty or contain only whitespace.
            </summary>
        </member>
        <member name="P:Microsoft.AspNetCore.Razor.Language.Resources.SectionDirective_Description">
            <summary>
            Define a section to be rendered in the configured layout page.
            </summary>
        </member>
        <member name="M:Microsoft.AspNetCore.Razor.Language.Resources.FormatSectionDirective_Description">
            <summary>
            Define a section to be rendered in the configured layout page.
            </summary>
        </member>
        <member name="P:Microsoft.AspNetCore.Razor.Language.Resources.SectionDirective_NameToken_Description">
            <summary>
            The name of the section.
            </summary>
        </member>
        <member name="M:Microsoft.AspNetCore.Razor.Language.Resources.FormatSectionDirective_NameToken_Description">
            <summary>
            The name of the section.
            </summary>
        </member>
        <member name="P:Microsoft.AspNetCore.Razor.Language.Resources.SectionDirective_NameToken_Name">
            <summary>
            SectionName
            </summary>
        </member>
        <member name="M:Microsoft.AspNetCore.Razor.Language.Resources.FormatSectionDirective_NameToken_Name">
            <summary>
            SectionName
            </summary>
        </member>
        <member name="P:Microsoft.AspNetCore.Razor.Language.Resources.SectionExample">
            <summary>
            @section Header { ... }
            </summary>
        </member>
        <member name="M:Microsoft.AspNetCore.Razor.Language.Resources.FormatSectionExample">
            <summary>
            @section Header { ... }
            </summary>
        </member>
        <member name="P:Microsoft.AspNetCore.Razor.Language.Resources.Symbol_Unknown">
            <summary>
            &lt;&lt;unknown&gt;&gt;
            </summary>
        </member>
        <member name="M:Microsoft.AspNetCore.Razor.Language.Resources.FormatSymbol_Unknown">
            <summary>
            &lt;&lt;unknown&gt;&gt;
            </summary>
        </member>
        <member name="P:Microsoft.AspNetCore.Razor.Language.Resources.TagHelper_InvalidBoundAttributeName">
            <summary>
            Invalid tag helper bound property '{1}' on tag helper '{0}'. Tag helpers cannot bind to HTML attributes with name '{2}' because the name contains a '{3}' character.
            </summary>
        </member>
        <member name="M:Microsoft.AspNetCore.Razor.Language.Resources.FormatTagHelper_InvalidBoundAttributeName(System.Object,System.Object,System.Object,System.Object)">
            <summary>
            Invalid tag helper bound property '{1}' on tag helper '{0}'. Tag helpers cannot bind to HTML attributes with name '{2}' because the name contains a '{3}' character.
            </summary>
        </member>
        <member name="P:Microsoft.AspNetCore.Razor.Language.Resources.TagHelper_InvalidBoundAttributeNameStartsWith">
            <summary>
            Invalid tag helper bound property '{1}' on tag helper '{0}'. Tag helpers cannot bind to HTML attributes with name '{2}' because the name starts with '{3}'.
            </summary>
        </member>
        <member name="M:Microsoft.AspNetCore.Razor.Language.Resources.FormatTagHelper_InvalidBoundAttributeNameStartsWith(System.Object,System.Object,System.Object,System.Object)">
            <summary>
            Invalid tag helper bound property '{1}' on tag helper '{0}'. Tag helpers cannot bind to HTML attributes with name '{2}' because the name starts with '{3}'.
            </summary>
        </member>
        <member name="P:Microsoft.AspNetCore.Razor.Language.Resources.TagHelper_InvalidBoundAttributeNullOrWhitespace">
            <summary>
            Invalid tag helper bound property '{1}' on tag helper '{0}'. Tag helpers cannot bind to HTML attributes with a null or empty name.
            </summary>
        </member>
        <member name="M:Microsoft.AspNetCore.Razor.Language.Resources.FormatTagHelper_InvalidBoundAttributeNullOrWhitespace(System.Object,System.Object)">
            <summary>
            Invalid tag helper bound property '{1}' on tag helper '{0}'. Tag helpers cannot bind to HTML attributes with a null or empty name.
            </summary>
        </member>
        <member name="P:Microsoft.AspNetCore.Razor.Language.Resources.TagHelper_InvalidBoundAttributePrefix">
            <summary>
            Invalid tag helper bound property '{1}' on tag helper '{0}'. Tag helpers cannot bind to HTML attributes with prefix '{2}' because the prefix contains a '{3}' character.
            </summary>
        </member>
        <member name="M:Microsoft.AspNetCore.Razor.Language.Resources.FormatTagHelper_InvalidBoundAttributePrefix(System.Object,System.Object,System.Object,System.Object)">
            <summary>
            Invalid tag helper bound property '{1}' on tag helper '{0}'. Tag helpers cannot bind to HTML attributes with prefix '{2}' because the prefix contains a '{3}' character.
            </summary>
        </member>
        <member name="P:Microsoft.AspNetCore.Razor.Language.Resources.TagHelper_InvalidBoundAttributePrefixStartsWith">
            <summary>
            Invalid tag helper bound property '{1}' on tag helper '{0}'. Tag helpers cannot bind to HTML attributes with prefix '{2}' because the prefix starts with '{3}'.
            </summary>
        </member>
        <member name="M:Microsoft.AspNetCore.Razor.Language.Resources.FormatTagHelper_InvalidBoundAttributePrefixStartsWith(System.Object,System.Object,System.Object,System.Object)">
            <summary>
            Invalid tag helper bound property '{1}' on tag helper '{0}'. Tag helpers cannot bind to HTML attributes with prefix '{2}' because the prefix starts with '{3}'.
            </summary>
        </member>
        <member name="P:Microsoft.AspNetCore.Razor.Language.Resources.TagHelper_InvalidRestrictedChild">
            <summary>
            Invalid restricted child '{1}' for tag helper '{0}'. Tag helpers cannot restrict child elements that contain a '{2}' character.
            </summary>
        </member>
        <member name="M:Microsoft.AspNetCore.Razor.Language.Resources.FormatTagHelper_InvalidRestrictedChild(System.Object,System.Object,System.Object)">
            <summary>
            Invalid restricted child '{1}' for tag helper '{0}'. Tag helpers cannot restrict child elements that contain a '{2}' character.
            </summary>
        </member>
        <member name="P:Microsoft.AspNetCore.Razor.Language.Resources.TagHelper_InvalidRestrictedChildNullOrWhitespace">
            <summary>
            Invalid restricted child for tag helper '{0}'. Name cannot be null or whitespace.
            </summary>
        </member>
        <member name="M:Microsoft.AspNetCore.Razor.Language.Resources.FormatTagHelper_InvalidRestrictedChildNullOrWhitespace(System.Object)">
            <summary>
            Invalid restricted child for tag helper '{0}'. Name cannot be null or whitespace.
            </summary>
        </member>
        <member name="P:Microsoft.AspNetCore.Razor.Language.Resources.TagHelper_InvalidTargetedAttributeName">
            <summary>
            Tag helpers cannot target attribute name '{0}' because it contains a '{1}' character.
            </summary>
        </member>
        <member name="M:Microsoft.AspNetCore.Razor.Language.Resources.FormatTagHelper_InvalidTargetedAttributeName(System.Object,System.Object)">
            <summary>
            Tag helpers cannot target attribute name '{0}' because it contains a '{1}' character.
            </summary>
        </member>
        <member name="P:Microsoft.AspNetCore.Razor.Language.Resources.TagHelper_InvalidTargetedAttributeNameNullOrWhitespace">
            <summary>
            Targeted attribute name cannot be null or whitespace.
            </summary>
        </member>
        <member name="M:Microsoft.AspNetCore.Razor.Language.Resources.FormatTagHelper_InvalidTargetedAttributeNameNullOrWhitespace">
            <summary>
            Targeted attribute name cannot be null or whitespace.
            </summary>
        </member>
        <member name="P:Microsoft.AspNetCore.Razor.Language.Resources.TagHelper_InvalidTargetedParentTagName">
            <summary>
            Tag helpers cannot target parent tag name '{0}' because it contains a '{1}' character.
            </summary>
        </member>
        <member name="M:Microsoft.AspNetCore.Razor.Language.Resources.FormatTagHelper_InvalidTargetedParentTagName(System.Object,System.Object)">
            <summary>
            Tag helpers cannot target parent tag name '{0}' because it contains a '{1}' character.
            </summary>
        </member>
        <member name="P:Microsoft.AspNetCore.Razor.Language.Resources.TagHelper_InvalidTargetedParentTagNameNullOrWhitespace">
            <summary>
            Targeted parent tag name cannot be null or whitespace.
            </summary>
        </member>
        <member name="M:Microsoft.AspNetCore.Razor.Language.Resources.FormatTagHelper_InvalidTargetedParentTagNameNullOrWhitespace">
            <summary>
            Targeted parent tag name cannot be null or whitespace.
            </summary>
        </member>
        <member name="P:Microsoft.AspNetCore.Razor.Language.Resources.TagHelper_InvalidTargetedTagName">
            <summary>
            Tag helpers cannot target tag name '{0}' because it contains a '{1}' character.
            </summary>
        </member>
        <member name="M:Microsoft.AspNetCore.Razor.Language.Resources.FormatTagHelper_InvalidTargetedTagName(System.Object,System.Object)">
            <summary>
            Tag helpers cannot target tag name '{0}' because it contains a '{1}' character.
            </summary>
        </member>
        <member name="P:Microsoft.AspNetCore.Razor.Language.Resources.TagHelper_InvalidTargetedTagNameNullOrWhitespace">
            <summary>
            Targeted tag name cannot be null or whitespace.
            </summary>
        </member>
        <member name="M:Microsoft.AspNetCore.Razor.Language.Resources.FormatTagHelper_InvalidTargetedTagNameNullOrWhitespace">
            <summary>
            Targeted tag name cannot be null or whitespace.
            </summary>
        </member>
        <member name="P:Microsoft.AspNetCore.Razor.Language.Resources.TagHelperAssemblyNameCannotBeEmptyOrNull">
            <summary>
            Tag helper directive assembly name cannot be null or empty.
            </summary>
        </member>
        <member name="M:Microsoft.AspNetCore.Razor.Language.Resources.FormatTagHelperAssemblyNameCannotBeEmptyOrNull">
            <summary>
            Tag helper directive assembly name cannot be null or empty.
            </summary>
        </member>
        <member name="P:Microsoft.AspNetCore.Razor.Language.Resources.TagHelperBlockRewriter_IndexerAttributeNameMustIncludeKey">
            <summary>
            The tag helper attribute '{0}' in element '{1}' is missing a key. The syntax is '&lt;{1} {0}{{ key }}="value"&gt;'.
            </summary>
        </member>
        <member name="M:Microsoft.AspNetCore.Razor.Language.Resources.FormatTagHelperBlockRewriter_IndexerAttributeNameMustIncludeKey(System.Object,System.Object)">
            <summary>
            The tag helper attribute '{0}' in element '{1}' is missing a key. The syntax is '&lt;{1} {0}{{ key }}="value"&gt;'.
            </summary>
        </member>
        <member name="P:Microsoft.AspNetCore.Razor.Language.Resources.TagHelperBlockRewriter_TagHelperAttributeListMustBeWellFormed">
            <summary>
            TagHelper attributes must be well-formed.
            </summary>
        </member>
        <member name="M:Microsoft.AspNetCore.Razor.Language.Resources.FormatTagHelperBlockRewriter_TagHelperAttributeListMustBeWellFormed">
            <summary>
            TagHelper attributes must be well-formed.
            </summary>
        </member>
        <member name="P:Microsoft.AspNetCore.Razor.Language.Resources.TagHelperParseTreeRewriter_CannotHaveNonTagContent">
            <summary>
            The parent &lt;{0}&gt; tag helper does not allow non-tag content. Only child tag helper(s) targeting tag name(s) '{1}' are allowed.
            </summary>
        </member>
        <member name="M:Microsoft.AspNetCore.Razor.Language.Resources.FormatTagHelperParseTreeRewriter_CannotHaveNonTagContent(System.Object,System.Object)">
            <summary>
            The parent &lt;{0}&gt; tag helper does not allow non-tag content. Only child tag helper(s) targeting tag name(s) '{1}' are allowed.
            </summary>
        </member>
        <member name="P:Microsoft.AspNetCore.Razor.Language.Resources.TagHelperParseTreeRewriter_EndTagTagHelperMustNotHaveAnEndTag">
            <summary>
            Found an end tag (&lt;/{0}&gt;) for tag helper '{1}' with tag structure that disallows an end tag ('{2}').
            </summary>
        </member>
        <member name="M:Microsoft.AspNetCore.Razor.Language.Resources.FormatTagHelperParseTreeRewriter_EndTagTagHelperMustNotHaveAnEndTag(System.Object,System.Object,System.Object)">
            <summary>
            Found an end tag (&lt;/{0}&gt;) for tag helper '{1}' with tag structure that disallows an end tag ('{2}').
            </summary>
        </member>
        <member name="P:Microsoft.AspNetCore.Razor.Language.Resources.TagHelperParseTreeRewriter_InconsistentTagStructure">
            <summary>
            Tag helpers '{0}' and '{1}' targeting element '{2}' must not expect different {3} values.
            </summary>
        </member>
        <member name="M:Microsoft.AspNetCore.Razor.Language.Resources.FormatTagHelperParseTreeRewriter_InconsistentTagStructure(System.Object,System.Object,System.Object,System.Object)">
            <summary>
            Tag helpers '{0}' and '{1}' targeting element '{2}' must not expect different {3} values.
            </summary>
        </member>
        <member name="P:Microsoft.AspNetCore.Razor.Language.Resources.TagHelperParseTreeRewriter_InvalidNestedTag">
            <summary>
            The &lt;{0}&gt; tag is not allowed by parent &lt;{1}&gt; tag helper. Only child tags with name(s) '{2}' are allowed.
            </summary>
        </member>
        <member name="M:Microsoft.AspNetCore.Razor.Language.Resources.FormatTagHelperParseTreeRewriter_InvalidNestedTag(System.Object,System.Object,System.Object)">
            <summary>
            The &lt;{0}&gt; tag is not allowed by parent &lt;{1}&gt; tag helper. Only child tags with name(s) '{2}' are allowed.
            </summary>
        </member>
        <member name="P:Microsoft.AspNetCore.Razor.Language.Resources.TagHelperPrefixDirective_Description">
            <summary>
            Specify a prefix that is required in an element name for it to be included in Tag Helper processing.
            </summary>
        </member>
        <member name="M:Microsoft.AspNetCore.Razor.Language.Resources.FormatTagHelperPrefixDirective_Description">
            <summary>
            Specify a prefix that is required in an element name for it to be included in Tag Helper processing.
            </summary>
        </member>
        <member name="P:Microsoft.AspNetCore.Razor.Language.Resources.TagHelperPrefixDirective_PrefixToken_Description">
            <summary>
            The tag prefix to apply to tag helpers.
            </summary>
        </member>
        <member name="M:Microsoft.AspNetCore.Razor.Language.Resources.FormatTagHelperPrefixDirective_PrefixToken_Description">
            <summary>
            The tag prefix to apply to tag helpers.
            </summary>
        </member>
        <member name="P:Microsoft.AspNetCore.Razor.Language.Resources.TagHelperPrefixDirective_PrefixToken_Name">
            <summary>
            Prefix
            </summary>
        </member>
        <member name="M:Microsoft.AspNetCore.Razor.Language.Resources.FormatTagHelperPrefixDirective_PrefixToken_Name">
            <summary>
            Prefix
            </summary>
        </member>
        <member name="P:Microsoft.AspNetCore.Razor.Language.Resources.TagHelpers_AttributesMustHaveAName">
            <summary>
            Tag Helper '{0}'s attributes must have names.
            </summary>
        </member>
        <member name="M:Microsoft.AspNetCore.Razor.Language.Resources.FormatTagHelpers_AttributesMustHaveAName(System.Object)">
            <summary>
            Tag Helper '{0}'s attributes must have names.
            </summary>
        </member>
        <member name="P:Microsoft.AspNetCore.Razor.Language.Resources.TagHelpers_CannotHaveCSharpInTagDeclaration">
            <summary>
            The tag helper '{0}' must not have C# in the element's attribute declaration area.
            </summary>
        </member>
        <member name="M:Microsoft.AspNetCore.Razor.Language.Resources.FormatTagHelpers_CannotHaveCSharpInTagDeclaration(System.Object)">
            <summary>
            The tag helper '{0}' must not have C# in the element's attribute declaration area.
            </summary>
        </member>
        <member name="P:Microsoft.AspNetCore.Razor.Language.Resources.TagHelpers_CodeBlocks_NotSupported_InAttributes">
            <summary>
            Code blocks (e.g. @{{var variable = 23;}}) must not appear in non-string tag helper attribute values.
             Already in an expression (code) context. If necessary an explicit expression (e.g. @(@readonly)) may be used.
            </summary>
        </member>
        <member name="M:Microsoft.AspNetCore.Razor.Language.Resources.FormatTagHelpers_CodeBlocks_NotSupported_InAttributes">
            <summary>
            Code blocks (e.g. @{{var variable = 23;}}) must not appear in non-string tag helper attribute values.
             Already in an expression (code) context. If necessary an explicit expression (e.g. @(@readonly)) may be used.
            </summary>
        </member>
        <member name="P:Microsoft.AspNetCore.Razor.Language.Resources.TagHelpers_InlineMarkupBlocks_NotSupported_InAttributes">
            <summary>
            Inline markup blocks (e.g. @&lt;p&gt;content&lt;/p&gt;) must not appear in non-string tag helper attribute values.
             Expected a '{0}' attribute value, not a string.
            </summary>
        </member>
        <member name="M:Microsoft.AspNetCore.Razor.Language.Resources.FormatTagHelpers_InlineMarkupBlocks_NotSupported_InAttributes(System.Object)">
            <summary>
            Inline markup blocks (e.g. @&lt;p&gt;content&lt;/p&gt;) must not appear in non-string tag helper attribute values.
             Expected a '{0}' attribute value, not a string.
            </summary>
        </member>
        <member name="P:Microsoft.AspNetCore.Razor.Language.Resources.TagHelpersParseTreeRewriter_FoundMalformedTagHelper">
            <summary>
            Found a malformed '{0}' tag helper. Tag helpers must have a start and end tag or be self closing.
            </summary>
        </member>
        <member name="M:Microsoft.AspNetCore.Razor.Language.Resources.FormatTagHelpersParseTreeRewriter_FoundMalformedTagHelper(System.Object)">
            <summary>
            Found a malformed '{0}' tag helper. Tag helpers must have a start and end tag or be self closing.
            </summary>
        </member>
        <member name="P:Microsoft.AspNetCore.Razor.Language.Resources.TagHelpersParseTreeRewriter_MissingCloseAngle">
            <summary>
            Missing close angle for tag helper '{0}'.
            </summary>
        </member>
        <member name="M:Microsoft.AspNetCore.Razor.Language.Resources.FormatTagHelpersParseTreeRewriter_MissingCloseAngle(System.Object)">
            <summary>
            Missing close angle for tag helper '{0}'.
            </summary>
        </member>
        <member name="P:Microsoft.AspNetCore.Razor.Language.Resources.UnexpectedDirectiveKind">
            <summary>
            Unreachable code. This can happen when a new {0} is introduced.
            </summary>
        </member>
        <member name="M:Microsoft.AspNetCore.Razor.Language.Resources.FormatUnexpectedDirectiveKind(System.Object)">
            <summary>
            Unreachable code. This can happen when a new {0} is introduced.
            </summary>
        </member>
        <member name="P:Microsoft.AspNetCore.Razor.Language.Resources.UnexpectedDirectiveLiteral">
            <summary>
            Unexpected literal following the '{0}' directive. Expected '{1}'.
            </summary>
        </member>
        <member name="M:Microsoft.AspNetCore.Razor.Language.Resources.FormatUnexpectedDirectiveLiteral(System.Object,System.Object)">
            <summary>
            Unexpected literal following the '{0}' directive. Expected '{1}'.
            </summary>
        </member>
        <member name="P:Microsoft.AspNetCore.Razor.Language.Resources.UnexpectedEOFAfterDirective">
            <summary>
            Unexpected end of file following the '{0}' directive. Expected '{1}'.
            </summary>
        </member>
        <member name="M:Microsoft.AspNetCore.Razor.Language.Resources.FormatUnexpectedEOFAfterDirective(System.Object,System.Object)">
            <summary>
            Unexpected end of file following the '{0}' directive. Expected '{1}'.
            </summary>
        </member>
        <member name="P:Microsoft.AspNetCore.Razor.Language.Resources.UnsupportedChecksumAlgorithm">
            <summary>
            The hash algorithm '{0}' is not supported for checksum generation. Supported algorithms are: '{1}'. Set '{2}' to '{3}' to suppress automatic checksum generation.
            </summary>
        </member>
        <member name="M:Microsoft.AspNetCore.Razor.Language.Resources.FormatUnsupportedChecksumAlgorithm(System.Object,System.Object,System.Object,System.Object)">
            <summary>
            The hash algorithm '{0}' is not supported for checksum generation. Supported algorithms are: '{1}'. Set '{2}' to '{3}' to suppress automatic checksum generation.
            </summary>
        </member>
        <member name="P:Microsoft.AspNetCore.Razor.Language.Resources.PropertyMustNotBeNull">
            <summary>
            The '{0}.{1}' property must not be null.
            </summary>
        </member>
        <member name="M:Microsoft.AspNetCore.Razor.Language.Resources.FormatPropertyMustNotBeNull(System.Object,System.Object)">
            <summary>
            The '{0}.{1}' property must not be null.
            </summary>
        </member>
        <member name="P:Microsoft.AspNetCore.Razor.Language.Resources.RazorProjectEngineMissingFeatureDependency">
            <summary>
            The '{0}' is missing feature '{1}'.
            </summary>
        </member>
        <member name="M:Microsoft.AspNetCore.Razor.Language.Resources.FormatRazorProjectEngineMissingFeatureDependency(System.Object,System.Object)">
            <summary>
            The '{0}' is missing feature '{1}'.
            </summary>
        </member>
        <member name="P:Microsoft.AspNetCore.Razor.Language.Resources.RazorLanguageVersion_InvalidVersion">
            <summary>
            The Razor language version '{0}' is unrecognized or not supported by this version of Razor.
            </summary>
        </member>
        <member name="M:Microsoft.AspNetCore.Razor.Language.Resources.FormatRazorLanguageVersion_InvalidVersion(System.Object)">
            <summary>
            The Razor language version '{0}' is unrecognized or not supported by this version of Razor.
            </summary>
        </member>
        <member name="P:Microsoft.AspNetCore.Razor.Language.Resources.VirtualFileSystem_FileDoesNotBelongToDirectory">
            <summary>
            File path '{0}' does not belong to the directory '{1}'.
            </summary>
        </member>
        <member name="M:Microsoft.AspNetCore.Razor.Language.Resources.FormatVirtualFileSystem_FileDoesNotBelongToDirectory(System.Object,System.Object)">
            <summary>
            File path '{0}' does not belong to the directory '{1}'.
            </summary>
        </member>
        <member name="P:Microsoft.AspNetCore.Razor.Language.Resources.VirtualFileSystem_InvalidRelativePath">
            <summary>
            The file path '{0}' is invalid. File path is the root relative path of the file starting with '/' and should not contain any '\' characters.
            </summary>
        </member>
        <member name="M:Microsoft.AspNetCore.Razor.Language.Resources.FormatVirtualFileSystem_InvalidRelativePath(System.Object)">
            <summary>
            The file path '{0}' is invalid. File path is the root relative path of the file starting with '/' and should not contain any '\' characters.
            </summary>
        </member>
        <member name="P:Microsoft.AspNetCore.Razor.Language.RazorCodeGenerationOptions.SuppressChecksum">
            <summary>
            Gets a value that indicates whether to suppress the default <c>#pragma checksum</c> directive in the 
            generated C# code. If <c>false</c> the checkum directive will be included, otherwise it will not be
            generated. Defaults to <c>false</c>, meaning that the checksum will be included.
            </summary>
            <remarks>
            The <c>#pragma checksum</c> is required to enable debugging and should only be supressed for testing
            purposes.
            </remarks>
        </member>
        <member name="P:Microsoft.AspNetCore.Razor.Language.RazorCodeGenerationOptions.SuppressMetadataAttributes">
            <summary>
            Gets a value that indicates whether to suppress the default metadata attributes in the generated 
            C# code. If <c>false</c> the default attributes will be included, otherwise they will not be generated.
            Defaults to <c>false</c> at run time, meaning that the attributes will be included. Defaults to
            <c>true</c> at design time, meaning that the attributes will not be included.
            </summary>
            <remarks>
            <para>
            The <c>Microsoft.AspNetCore.Razor.Runtime</c> package includes a default set of attributes intended
            for runtimes to discover metadata about the compiled code.
            </para>
            <para>
            The default metadata attributes should be suppressed if code generation targets a runtime without
            a reference to <c>Microsoft.AspNetCore.Razor.Runtime</c>, or for testing purposes.
            </para>
            </remarks>
        </member>
        <member name="P:Microsoft.AspNetCore.Razor.Language.RazorCodeGenerationOptionsBuilder.SuppressChecksum">
            <summary>
            Gets or sets a value that indicates whether to suppress the default <c>#pragma checksum</c> directive in the 
            generated C# code. If <c>false</c> the checkum directive will be included, otherwise it will not be
            generated. Defaults to <c>false</c>, meaning that the checksum will be included.
            </summary>
            <remarks>
            The <c>#pragma checksum</c> is required to enable debugging and should only be supressed for testing
            purposes.
            </remarks>
        </member>
        <member name="P:Microsoft.AspNetCore.Razor.Language.RazorCodeGenerationOptionsBuilder.SuppressMetadataAttributes">
            <summary>
            Gets or setsa value that indicates whether to suppress the default metadata attributes in the generated 
            C# code. If <c>false</c> the default attributes will be included, otherwise they will not be generated.
            Defaults to <c>false</c> at run time, meaning that the attributes will be included. Defaults to
            <c>true</c> at design time, meaning that the attributes will not be included.
            </summary>
            <remarks>
            <para>
            The <c>Microsoft.AspNetCore.Razor.Runtime</c> package includes a default set of attributes intended
            for runtimes to discover metadata about the compiled code.
            </para>
            <para>
            The default metadata attributes should be suppressed if code generation targets a runtime without
            a reference to <c>Microsoft.AspNetCore.Razor.Runtime</c>, or for testing purposes.
            </para>
            </remarks>
        </member>
        <member name="T:Microsoft.AspNetCore.Razor.Language.RazorEngineBuilderExtensions">
            <summary>
            Extension methods to <see cref="T:Microsoft.AspNetCore.Razor.Language.IRazorEngineBuilder" />.
            </summary>
        </member>
        <member name="M:Microsoft.AspNetCore.Razor.Language.RazorEngineBuilderExtensions.AddDirective(Microsoft.AspNetCore.Razor.Language.IRazorEngineBuilder,Microsoft.AspNetCore.Razor.Language.DirectiveDescriptor)">
            <summary>
            Adds the specified <see cref="T:Microsoft.AspNetCore.Razor.Language.DirectiveDescriptor"/>.
            </summary>
            <param name="builder">The <see cref="T:Microsoft.AspNetCore.Razor.Language.IRazorEngineBuilder"/>.</param>
            <param name="directive">The <see cref="T:Microsoft.AspNetCore.Razor.Language.DirectiveDescriptor"/> to add.</param>
            <returns>The <see cref="T:Microsoft.AspNetCore.Razor.Language.IRazorEngineBuilder"/>.</returns>
        </member>
        <member name="M:Microsoft.AspNetCore.Razor.Language.RazorEngineBuilderExtensions.AddTargetExtension(Microsoft.AspNetCore.Razor.Language.IRazorEngineBuilder,Microsoft.AspNetCore.Razor.Language.CodeGeneration.ICodeTargetExtension)">
            <summary>
            Adds the specified <see cref="T:Microsoft.AspNetCore.Razor.Language.CodeGeneration.ICodeTargetExtension"/>.
            </summary>
            <param name="builder">The <see cref="T:Microsoft.AspNetCore.Razor.Language.IRazorEngineBuilder"/>.</param>
            <param name="extension">The <see cref="T:Microsoft.AspNetCore.Razor.Language.CodeGeneration.ICodeTargetExtension"/> to add.</param>
            <returns>The <see cref="T:Microsoft.AspNetCore.Razor.Language.IRazorEngineBuilder"/>.</returns>
        </member>
        <member name="M:Microsoft.AspNetCore.Razor.Language.RazorEngineBuilderExtensions.SetBaseType(Microsoft.AspNetCore.Razor.Language.IRazorEngineBuilder,System.String)">
            <summary>
            Sets the base type for generated types.
            </summary>
            <param name="builder">The <see cref="T:Microsoft.AspNetCore.Razor.Language.IRazorEngineBuilder"/>.</param>
            <param name="baseType">The name of the base type.</param>
            <returns>The <see cref="T:Microsoft.AspNetCore.Razor.Language.IRazorEngineBuilder"/>.</returns>
        </member>
        <member name="M:Microsoft.AspNetCore.Razor.Language.RazorEngineBuilderExtensions.ConfigureClass(Microsoft.AspNetCore.Razor.Language.IRazorEngineBuilder,System.Action{Microsoft.AspNetCore.Razor.Language.RazorCodeDocument,Microsoft.AspNetCore.Razor.Language.Intermediate.ClassDeclarationIntermediateNode})">
            <summary>
            Registers a class configuration delegate that gets invoked during code generation.
            </summary>
            <param name="builder">The <see cref="T:Microsoft.AspNetCore.Razor.Language.IRazorEngineBuilder"/>.</param>
            <param name="configureClass"><see cref="T:System.Action"/> invoked to configure 
            <see cref="T:Microsoft.AspNetCore.Razor.Language.Intermediate.ClassDeclarationIntermediateNode"/> during code generation.</param>
            <returns>The <see cref="T:Microsoft.AspNetCore.Razor.Language.IRazorEngineBuilder"/>.</returns>
        </member>
        <member name="M:Microsoft.AspNetCore.Razor.Language.RazorEngineBuilderExtensions.SetNamespace(Microsoft.AspNetCore.Razor.Language.IRazorEngineBuilder,System.String)">
            <summary>
            Sets the namespace for generated types.
            </summary>
            <param name="builder">The <see cref="T:Microsoft.AspNetCore.Razor.Language.IRazorEngineBuilder"/>.</param>
            <param name="namespaceName">The name of the namespace.</param>
            <returns>The <see cref="T:Microsoft.AspNetCore.Razor.Language.IRazorEngineBuilder"/>.</returns>
        </member>
        <member name="P:Microsoft.AspNetCore.Razor.Language.RazorParserOptions.ParseLeadingDirectives">
            <summary>
            Gets a value which indicates whether the parser will parse only the leading directives. If <c>true</c>
            the parser will halt at the first HTML content or C# code block. If <c>false</c> the whole document is parsed.
            </summary>
            <remarks>
            Currently setting this option to <c>true</c> will result in only the first line of directives being parsed.
            In a future release this may be updated to include all leading directive content.
            </remarks>
        </member>
        <member name="T:Microsoft.AspNetCore.Razor.Language.RazorProject">
            <summary>
            An abstraction for working with a project containing Razor files.
            </summary>
        </member>
        <member name="M:Microsoft.AspNetCore.Razor.Language.RazorProject.EnumerateItems(System.String)">
            <summary>
            Gets a sequence of <see cref="T:Microsoft.AspNetCore.Razor.Language.RazorProjectItem"/> under the specific path in the project.
            </summary>
            <param name="basePath">The base path.</param>
            <returns>The sequence of <see cref="T:Microsoft.AspNetCore.Razor.Language.RazorProjectItem"/>.</returns>
        </member>
        <member name="M:Microsoft.AspNetCore.Razor.Language.RazorProject.GetItem(System.String)">
            <summary>
            Gets a <see cref="T:Microsoft.AspNetCore.Razor.Language.RazorProjectItem"/> for the specified path.
            </summary>
            <param name="path">The path.</param>
            <returns>The <see cref="T:Microsoft.AspNetCore.Razor.Language.RazorProjectItem"/>.</returns>
        </member>
        <member name="M:Microsoft.AspNetCore.Razor.Language.RazorProject.FindHierarchicalItems(System.String,System.String)">
            <summary>
            Gets the sequence of files named <paramref name="fileName"/> that are applicable to the specified path.
            </summary>
            <param name="path">The path of a project item.</param>
            <param name="fileName">The file name to seek.</param>
            <returns>A sequence of applicable <see cref="T:Microsoft.AspNetCore.Razor.Language.RazorProjectItem"/> instances.</returns>
            <remarks>
            This method returns paths starting from the directory of <paramref name="path"/> and
            traverses to the project root.
            e.g.
            /Views/Home/View.cshtml -> [ /Views/Home/FileName.cshtml, /Views/FileName.cshtml, /FileName.cshtml ]
            </remarks>
        </member>
        <member name="M:Microsoft.AspNetCore.Razor.Language.RazorProject.FindHierarchicalItems(System.String,System.String,System.String)">
            <summary>
            Gets the sequence of files named <paramref name="fileName"/> that are applicable to the specified path.
            </summary>
            <param name="basePath">The base path.</param>
            <param name="path">The path of a project item.</param>
            <param name="fileName">The file name to seek.</param>
            <returns>A sequence of applicable <see cref="T:Microsoft.AspNetCore.Razor.Language.RazorProjectItem"/> instances.</returns>
            <remarks>
            This method returns paths starting from the directory of <paramref name="path"/> and
            traverses to the <paramref name="basePath"/>.
            e.g.
            (/Views, /Views/Home/View.cshtml) -> [ /Views/Home/FileName.cshtml, /Views/FileName.cshtml ]
            </remarks>
        </member>
        <member name="M:Microsoft.AspNetCore.Razor.Language.RazorProject.NormalizeAndEnsureValidPath(System.String)">
            <summary>
            Performs validation for paths passed to methods of <see cref="T:Microsoft.AspNetCore.Razor.Language.RazorProject"/>.
            </summary>
            <param name="path">The path to validate.</param>
        </member>
        <member name="M:Microsoft.AspNetCore.Razor.Language.RazorProject.Create(System.String)">
            <summary>
            Create a Razor project based on a physical file system.
            </summary>
            <param name="rootDirectoryPath">The directory to root the file system at.</param>
            <returns>A <see cref="T:Microsoft.AspNetCore.Razor.Language.RazorProject"/></returns>
        </member>
        <member name="M:Microsoft.AspNetCore.Razor.Language.RazorProjectEngineBuilderExtensions.ConfigureClass(Microsoft.AspNetCore.Razor.Language.RazorProjectEngineBuilder,System.Action{Microsoft.AspNetCore.Razor.Language.RazorCodeDocument,Microsoft.AspNetCore.Razor.Language.Intermediate.ClassDeclarationIntermediateNode})">
            <summary>
            Registers a class configuration delegate that gets invoked during code generation.
            </summary>
            <param name="builder">The <see cref="T:Microsoft.AspNetCore.Razor.Language.RazorProjectEngineBuilder"/>.</param>
            <param name="configureClass"><see cref="T:System.Action"/> invoked to configure 
            <see cref="T:Microsoft.AspNetCore.Razor.Language.Intermediate.ClassDeclarationIntermediateNode"/> during code generation.</param>
            <returns>The <see cref="T:Microsoft.AspNetCore.Razor.Language.RazorProjectEngineBuilder"/>.</returns>
        </member>
        <member name="M:Microsoft.AspNetCore.Razor.Language.RazorProjectEngineBuilderExtensions.SetBaseType(Microsoft.AspNetCore.Razor.Language.RazorProjectEngineBuilder,System.String)">
            <summary>
            Sets the base type for generated types.
            </summary>
            <param name="builder">The <see cref="T:Microsoft.AspNetCore.Razor.Language.RazorProjectEngineBuilder"/>.</param>
            <param name="baseType">The name of the base type.</param>
            <returns>The <see cref="T:Microsoft.AspNetCore.Razor.Language.RazorProjectEngineBuilder"/>.</returns>
        </member>
        <member name="M:Microsoft.AspNetCore.Razor.Language.RazorProjectEngineBuilderExtensions.SetNamespace(Microsoft.AspNetCore.Razor.Language.RazorProjectEngineBuilder,System.String)">
            <summary>
            Sets the namespace for generated types.
            </summary>
            <param name="builder">The <see cref="T:Microsoft.AspNetCore.Razor.Language.RazorProjectEngineBuilder"/>.</param>
            <param name="namespaceName">The name of the namespace.</param>
            <returns>The <see cref="T:Microsoft.AspNetCore.Razor.Language.RazorProjectEngineBuilder"/>.</returns>
        </member>
        <member name="M:Microsoft.AspNetCore.Razor.Language.RazorProjectEngineBuilderExtensions.AddTargetExtension(Microsoft.AspNetCore.Razor.Language.RazorProjectEngineBuilder,Microsoft.AspNetCore.Razor.Language.CodeGeneration.ICodeTargetExtension)">
            <summary>
            Adds the specified <see cref="T:Microsoft.AspNetCore.Razor.Language.CodeGeneration.ICodeTargetExtension"/>.
            </summary>
            <param name="builder">The <see cref="T:Microsoft.AspNetCore.Razor.Language.RazorProjectEngineBuilder"/>.</param>
            <param name="extension">The <see cref="T:Microsoft.AspNetCore.Razor.Language.CodeGeneration.ICodeTargetExtension"/> to add.</param>
            <returns>The <see cref="T:Microsoft.AspNetCore.Razor.Language.RazorProjectEngineBuilder"/>.</returns>
        </member>
        <member name="M:Microsoft.AspNetCore.Razor.Language.RazorProjectEngineBuilderExtensions.AddDirective(Microsoft.AspNetCore.Razor.Language.RazorProjectEngineBuilder,Microsoft.AspNetCore.Razor.Language.DirectiveDescriptor)">
            <summary>
            Adds the specified <see cref="T:Microsoft.AspNetCore.Razor.Language.DirectiveDescriptor"/>.
            </summary>
            <param name="builder">The <see cref="T:Microsoft.AspNetCore.Razor.Language.RazorProjectEngineBuilder"/>.</param>
            <param name="directive">The <see cref="T:Microsoft.AspNetCore.Razor.Language.DirectiveDescriptor"/> to add.</param>
            <returns>The <see cref="T:Microsoft.AspNetCore.Razor.Language.RazorProjectEngineBuilder"/>.</returns>
        </member>
        <member name="M:Microsoft.AspNetCore.Razor.Language.RazorProjectEngineBuilderExtensions.AddDefaultImports(Microsoft.AspNetCore.Razor.Language.RazorProjectEngineBuilder,System.String[])">
            <summary>
            Adds the provided <see cref="T:Microsoft.AspNetCore.Razor.Language.RazorProjectItem" />s as imports to all project items processed
            by the <see cref="T:Microsoft.AspNetCore.Razor.Language.RazorProjectEngine"/>.
            </summary>
            <param name="builder">The <see cref="T:Microsoft.AspNetCore.Razor.Language.RazorProjectEngineBuilder"/>.</param>
            <param name="imports">The collection of imports.</param>
            <returns>The <see cref="T:Microsoft.AspNetCore.Razor.Language.RazorProjectEngineBuilder"/>.</returns>
        </member>
        <member name="M:Microsoft.AspNetCore.Razor.Language.RazorProjectFileSystem.Create(System.String)">
            <summary>
            Create a Razor project file system based off of a root directory.
            </summary>
            <param name="rootDirectoryPath">The directory to root the file system at.</param>
            <returns>A <see cref="T:Microsoft.AspNetCore.Razor.Language.RazorProjectFileSystem"/></returns>
        </member>
        <member name="T:Microsoft.AspNetCore.Razor.Language.RazorProjectItem">
            <summary>
            An item in a <see cref="T:Microsoft.AspNetCore.Razor.Language.RazorProjectFileSystem"/>.
            </summary>
        </member>
        <member name="P:Microsoft.AspNetCore.Razor.Language.RazorProjectItem.BasePath">
            <summary>
            Path specified in <see cref="M:Microsoft.AspNetCore.Razor.Language.RazorProject.EnumerateItems(System.String)"/>.
            </summary>
        </member>
        <member name="P:Microsoft.AspNetCore.Razor.Language.RazorProjectItem.FilePath">
            <summary>
            File path relative to <see cref="P:Microsoft.AspNetCore.Razor.Language.RazorProjectItem.BasePath"/>. This property uses the project path syntax,
            using <c>/</c> as a path separator and does not follow the operating system's file system
            conventions.
            </summary>
        </member>
        <member name="P:Microsoft.AspNetCore.Razor.Language.RazorProjectItem.PhysicalPath">
            <summary>
            The absolute physical (file system) path to the file, including the file name.
            </summary>
        </member>
        <member name="P:Microsoft.AspNetCore.Razor.Language.RazorProjectItem.RelativePhysicalPath">
            <summary>
            The relative physical (file system) path to the file, including the file name. Relative to the
            physical path of the <see cref="P:Microsoft.AspNetCore.Razor.Language.RazorProjectItem.BasePath"/>.
            </summary>
        </member>
        <member name="M:Microsoft.AspNetCore.Razor.Language.RazorProjectItem.Read">
            <summary>
            Gets the file contents as readonly <see cref="T:System.IO.Stream"/>.
            </summary>
            <returns>The <see cref="T:System.IO.Stream"/>.</returns>
        </member>
        <member name="P:Microsoft.AspNetCore.Razor.Language.RazorProjectItem.Exists">
            <summary>
            Gets a value that determines if the file exists.
            </summary>
        </member>
        <member name="P:Microsoft.AspNetCore.Razor.Language.RazorProjectItem.CombinedPath">
            <summary>
            The root relative path of the item.
            </summary>
        </member>
        <member name="P:Microsoft.AspNetCore.Razor.Language.RazorProjectItem.Extension">
            <summary>
            The extension of the file.
            </summary>
        </member>
        <member name="P:Microsoft.AspNetCore.Razor.Language.RazorProjectItem.FileName">
            <summary>
            The name of the file including the extension.
            </summary>
        </member>
        <member name="P:Microsoft.AspNetCore.Razor.Language.RazorProjectItem.FilePathWithoutExtension">
            <summary>
            File path relative to <see cref="P:Microsoft.AspNetCore.Razor.Language.RazorProjectItem.BasePath"/> without the extension.
            </summary>
        </member>
        <member name="T:Microsoft.AspNetCore.Razor.Language.RazorSourceDocument">
            <summary>
            The Razor template source.
            </summary>
        </member>
        <member name="P:Microsoft.AspNetCore.Razor.Language.RazorSourceDocument.Encoding">
            <summary>
            Gets the encoding of the text in the original source document.
            </summary>
            <remarks>
            Depending on the method used to create a <see cref="T:Microsoft.AspNetCore.Razor.Language.RazorSourceDocument"/> the encoding may be used to
            read the file contents, or it may be solely informational. Refer to the documentation on the method
            used to create the <see cref="T:Microsoft.AspNetCore.Razor.Language.RazorSourceDocument"/> for details.
            </remarks>
        </member>
        <member name="P:Microsoft.AspNetCore.Razor.Language.RazorSourceDocument.FilePath">
            <summary>
            Gets the file path of the orginal source document.
            </summary>
            <remarks>
            The file path may be either an absolute path or project-relative path. An absolute path is required
            to generate debuggable assemblies.
            </remarks>
        </member>
        <member name="P:Microsoft.AspNetCore.Razor.Language.RazorSourceDocument.RelativePath">
            <summary>
            Gets the project-relative path to the source file. May be <c>null</c>.
            </summary>
            <remarks>
            The relative path (if provided) is used for display (error messages). The project-relative path may also
            be used to embed checksums of the original source documents to support runtime recompilation of Razor code.
            </remarks>
        </member>
        <member name="P:Microsoft.AspNetCore.Razor.Language.RazorSourceDocument.Item(System.Int32)">
            <summary>
            Gets a character at given position.
            </summary>
            <param name="position">The position to get the character from.</param>
        </member>
        <member name="P:Microsoft.AspNetCore.Razor.Language.RazorSourceDocument.Length">
            <summary>
            Gets the length of the text in characters.
            </summary>
        </member>
        <member name="P:Microsoft.AspNetCore.Razor.Language.RazorSourceDocument.Lines">
            <summary>
            Gets the <see cref="T:Microsoft.AspNetCore.Razor.Language.RazorSourceLineCollection"/>.
            </summary>
        </member>
        <member name="M:Microsoft.AspNetCore.Razor.Language.RazorSourceDocument.CopyTo(System.Int32,System.Char[],System.Int32,System.Int32)">
            <summary>
            Copies a range of characters from the <see cref="T:Microsoft.AspNetCore.Razor.Language.RazorSourceDocument"/> to the specified <paramref name="destination"/>.
            </summary>
            <param name="sourceIndex">The index of the first character in this instance to copy.</param>
            <param name="destination">The destination buffer.</param>
            <param name="destinationIndex">The index in destination at which the copy operation begins.</param>
            <param name="count">The number of characters in this instance to copy to destination.</param>
        </member>
        <member name="M:Microsoft.AspNetCore.Razor.Language.RazorSourceDocument.GetChecksum">
            <summary>
            Calculates the checksum for the <see cref="T:Microsoft.AspNetCore.Razor.Language.RazorSourceDocument"/>.
            </summary>
            <returns>The checksum.</returns>
        </member>
        <member name="M:Microsoft.AspNetCore.Razor.Language.RazorSourceDocument.GetChecksumAlgorithm">
            <summary>
            Gets the name of the algorithm used to compute the checksum returned by <see cref="M:Microsoft.AspNetCore.Razor.Language.RazorSourceDocument.GetChecksum"/>.
            </summary>
            <remarks>
            This member did not exist in the 2.0 release, so it is possible for an implementation to return
            the wrong value (or <c>null</c>). Implementations of <see cref="T:Microsoft.AspNetCore.Razor.Language.RazorSourceDocument"/> should
            override this member and specify their choice of hash algorithm even if it is the same as the
            default (<c>SHA1</c>).
            </remarks>
        </member>
        <member name="M:Microsoft.AspNetCore.Razor.Language.RazorSourceDocument.GetFilePathForDisplay">
            <summary>
            Gets the file path in a format that should be used for display.
            </summary>
            <returns>The <see cref="P:Microsoft.AspNetCore.Razor.Language.RazorSourceDocument.RelativePath"/> if set, or the <see cref="P:Microsoft.AspNetCore.Razor.Language.RazorSourceDocument.FilePath"/>.</returns>
        </member>
        <member name="M:Microsoft.AspNetCore.Razor.Language.RazorSourceDocument.ReadFrom(System.IO.Stream,System.String)">
            <summary>
            Reads the <see cref="T:Microsoft.AspNetCore.Razor.Language.RazorSourceDocument"/> from the specified <paramref name="stream"/>.
            </summary>
            <param name="stream">The <see cref="T:System.IO.Stream"/> to read from.</param>
            <param name="fileName">The file name of the template.</param>
            <returns>The <see cref="T:Microsoft.AspNetCore.Razor.Language.RazorSourceDocument"/>.</returns>
        </member>
        <member name="M:Microsoft.AspNetCore.Razor.Language.RazorSourceDocument.ReadFrom(System.IO.Stream,System.String,System.Text.Encoding)">
            <summary>
            Reads the <see cref="T:Microsoft.AspNetCore.Razor.Language.RazorSourceDocument"/> from the specified <paramref name="stream"/>.
            </summary>
            <param name="stream">The <see cref="T:System.IO.Stream"/> to read from.</param>
            <param name="fileName">The file name of the template.</param>
            <param name="encoding">The <see cref="T:System.Text.Encoding"/> to use to read the <paramref name="stream"/>.</param>
            <returns>The <see cref="T:Microsoft.AspNetCore.Razor.Language.RazorSourceDocument"/>.</returns>
        </member>
        <member name="M:Microsoft.AspNetCore.Razor.Language.RazorSourceDocument.ReadFrom(System.IO.Stream,System.Text.Encoding,Microsoft.AspNetCore.Razor.Language.RazorSourceDocumentProperties)">
            <summary>
            Reads the <see cref="T:Microsoft.AspNetCore.Razor.Language.RazorSourceDocument"/> from the specified <paramref name="stream"/>.
            </summary>
            <param name="stream">The <see cref="T:System.IO.Stream"/> to read from.</param>
            <param name="encoding">The <see cref="T:System.Text.Encoding"/> to use to read the <paramref name="stream"/>.</param>
            <param name="properties">Properties to configure the <see cref="T:Microsoft.AspNetCore.Razor.Language.RazorSourceDocument"/>.</param>
            <returns>The <see cref="T:Microsoft.AspNetCore.Razor.Language.RazorSourceDocument"/>.</returns>
        </member>
        <member name="M:Microsoft.AspNetCore.Razor.Language.RazorSourceDocument.ReadFrom(Microsoft.AspNetCore.Razor.Language.RazorProjectItem)">
            <summary>
            Reads the <see cref="T:Microsoft.AspNetCore.Razor.Language.RazorSourceDocument"/> from the specified <paramref name="projectItem"/>.
            </summary>
            <param name="projectItem">The <see cref="T:Microsoft.AspNetCore.Razor.Language.RazorProjectItem"/> to read from.</param>
            <returns>The <see cref="T:Microsoft.AspNetCore.Razor.Language.RazorSourceDocument"/>.</returns>
        </member>
        <member name="M:Microsoft.AspNetCore.Razor.Language.RazorSourceDocument.Create(System.String,System.String)">
            <summary>
            Creates a <see cref="T:Microsoft.AspNetCore.Razor.Language.RazorSourceDocument"/> from the specified <paramref name="content"/>.
            </summary>
            <param name="content">The source document content.</param>
            <param name="fileName">The file name of the <see cref="T:Microsoft.AspNetCore.Razor.Language.RazorSourceDocument"/>.</param>
            <returns>The <see cref="T:Microsoft.AspNetCore.Razor.Language.RazorSourceDocument"/>.</returns>
            <remarks>Uses <see cref="P:System.Text.Encoding.UTF8" /></remarks>
        </member>
        <member name="M:Microsoft.AspNetCore.Razor.Language.RazorSourceDocument.Create(System.String,Microsoft.AspNetCore.Razor.Language.RazorSourceDocumentProperties)">
            <summary>
            Creates a <see cref="T:Microsoft.AspNetCore.Razor.Language.RazorSourceDocument"/> from the specified <paramref name="content"/>.
            </summary>
            <param name="content">The source document content.</param>
            <param name="properties">Properties to configure the <see cref="T:Microsoft.AspNetCore.Razor.Language.RazorSourceDocument"/>.</param>
            <returns>The <see cref="T:Microsoft.AspNetCore.Razor.Language.RazorSourceDocument"/>.</returns>
            <remarks>Uses <see cref="P:System.Text.Encoding.UTF8" /></remarks>
        </member>
        <member name="M:Microsoft.AspNetCore.Razor.Language.RazorSourceDocument.Create(System.String,System.String,System.Text.Encoding)">
            <summary>
            Creates a <see cref="T:Microsoft.AspNetCore.Razor.Language.RazorSourceDocument"/> from the specified <paramref name="content"/>.
            </summary>
            <param name="content">The source document content.</param>
            <param name="fileName">The file name of the <see cref="T:Microsoft.AspNetCore.Razor.Language.RazorSourceDocument"/>.</param>
            <param name="encoding">The <see cref="T:System.Text.Encoding"/> of the file <paramref name="content"/> was read from.</param>
            <returns>The <see cref="T:Microsoft.AspNetCore.Razor.Language.RazorSourceDocument"/>.</returns>
        </member>
        <member name="M:Microsoft.AspNetCore.Razor.Language.RazorSourceDocument.Create(System.String,System.Text.Encoding,Microsoft.AspNetCore.Razor.Language.RazorSourceDocumentProperties)">
            <summary>
            Creates a <see cref="T:Microsoft.AspNetCore.Razor.Language.RazorSourceDocument"/> from the specified <paramref name="content"/>.
            </summary>
            <param name="content">The source document content.</param>
            <param name="encoding">The encoding of the source document.</param>
            <param name="properties">Properties to configure the <see cref="T:Microsoft.AspNetCore.Razor.Language.RazorSourceDocument"/>.</param>
            <returns>The <see cref="T:Microsoft.AspNetCore.Razor.Language.RazorSourceDocument"/>.</returns>
        </member>
        <member name="T:Microsoft.AspNetCore.Razor.Language.RazorSourceDocumentProperties">
            <summary>
            Use to configure optional properties for creating a <see cref="T:Microsoft.AspNetCore.Razor.Language.RazorSourceDocument"/>.
            </summary>
        </member>
        <member name="F:Microsoft.AspNetCore.Razor.Language.RazorSourceDocumentProperties.Default">
            <summary>
            A <see cref="T:Microsoft.AspNetCore.Razor.Language.RazorSourceDocumentProperties"/> with default values.
            </summary>
        </member>
        <member name="M:Microsoft.AspNetCore.Razor.Language.RazorSourceDocumentProperties.#ctor">
            <summary>
            Creates a new <see cref="T:Microsoft.AspNetCore.Razor.Language.RazorSourceDocumentProperties"/>.
            </summary>
        </member>
        <member name="M:Microsoft.AspNetCore.Razor.Language.RazorSourceDocumentProperties.#ctor(System.String,System.String)">
            <summary>
            Creates a new <see cref="T:Microsoft.AspNetCore.Razor.Language.RazorSourceDocumentProperties"/>.
            </summary>
            <param name="filePath">
            The path to the source file. Provide an rooted path if possible. May be <c>null</c>.
            </param>
            <param name="relativePath">
            The project-relative path to the source file. May be <c>null</c>. Must be a non-rooted path.
            </param>
        </member>
        <member name="P:Microsoft.AspNetCore.Razor.Language.RazorSourceDocumentProperties.FilePath">
            <summary>
            Gets the path to the source file. May be an absolute or project-relative path. May be <c>null</c>.
            </summary>
            <remarks>
            An absolute path must be provided to generate debuggable assemblies.
            </remarks>
        </member>
        <member name="P:Microsoft.AspNetCore.Razor.Language.RazorSourceDocumentProperties.RelativePath">
            <summary>
            Gets the project-relative path to the source file. May be <c>null</c>.
            </summary>
            <remarks>
            The relative path (if provided) is used for display (error messages). The project-relative path may also
            be used to embed checksums of the original source documents to support runtime recompilation of Razor code.
            </remarks>
        </member>
        <member name="T:Microsoft.AspNetCore.Razor.Language.RazorTemplateEngine">
            <summary>
            Entry point to parse Razor files and generate code.
            </summary>
        </member>
        <member name="M:Microsoft.AspNetCore.Razor.Language.RazorTemplateEngine.#ctor(Microsoft.AspNetCore.Razor.Language.RazorEngine,Microsoft.AspNetCore.Razor.Language.RazorProject)">
            <summary>
            Initializes a new instance of <see cref="T:Microsoft.AspNetCore.Razor.Language.RazorTemplateEngine"/>.
            </summary>
            <param name="engine">The <see cref="T:Microsoft.AspNetCore.Razor.Language.RazorEngine"/>.</param>
            <param name="project">The <see cref="T:Microsoft.AspNetCore.Razor.Language.RazorProject"/>.</param>
        </member>
        <member name="P:Microsoft.AspNetCore.Razor.Language.RazorTemplateEngine.Engine">
            <summary>
            Gets the <see cref="T:Microsoft.AspNetCore.Razor.Language.RazorEngine"/>.
            </summary>
        </member>
        <member name="P:Microsoft.AspNetCore.Razor.Language.RazorTemplateEngine.Project">
            <summary>
            Gets the <see cref="T:Microsoft.AspNetCore.Razor.Language.RazorProject"/>.
            </summary>
        </member>
        <member name="P:Microsoft.AspNetCore.Razor.Language.RazorTemplateEngine.Options">
            <summary>
            Options to configure <see cref="T:Microsoft.AspNetCore.Razor.Language.RazorTemplateEngine"/>.
            </summary>
        </member>
        <member name="M:Microsoft.AspNetCore.Razor.Language.RazorTemplateEngine.GenerateCode(System.String)">
            <summary>
            Parses the template specified by the project item <paramref name="path"/>.
            </summary>
            <param name="path">The template path.</param>
            <returns>The <see cref="T:Microsoft.AspNetCore.Razor.Language.RazorCSharpDocument"/>.</returns>
        </member>
        <member name="M:Microsoft.AspNetCore.Razor.Language.RazorTemplateEngine.GenerateCode(Microsoft.AspNetCore.Razor.Language.RazorProjectItem)">
            <summary>
            Parses the template specified by <paramref name="projectItem"/>.
            </summary>
            <param name="projectItem">The <see cref="T:Microsoft.AspNetCore.Razor.Language.RazorProjectItem"/>.</param>
            <returns>The <see cref="T:Microsoft.AspNetCore.Razor.Language.RazorCSharpDocument"/>.</returns>
        </member>
        <member name="M:Microsoft.AspNetCore.Razor.Language.RazorTemplateEngine.GenerateCode(Microsoft.AspNetCore.Razor.Language.RazorCodeDocument)">
            <summary>
            Parses the template specified by <paramref name="codeDocument"/>.
            </summary>
            <param name="codeDocument">The <see cref="T:Microsoft.AspNetCore.Razor.Language.RazorProjectItem"/>.</param>
            <returns>The <see cref="T:Microsoft.AspNetCore.Razor.Language.RazorCSharpDocument"/>.</returns>
        </member>
        <member name="M:Microsoft.AspNetCore.Razor.Language.RazorTemplateEngine.CreateCodeDocument(System.String)">
            <summary>
            Generates a <see cref="T:Microsoft.AspNetCore.Razor.Language.RazorCodeDocument"/> for the specified <paramref name="path"/>.
            </summary>
            <param name="path">The template path.</param>
            <returns>The created <see cref="T:Microsoft.AspNetCore.Razor.Language.RazorCodeDocument"/>.</returns>
        </member>
        <member name="M:Microsoft.AspNetCore.Razor.Language.RazorTemplateEngine.CreateCodeDocument(Microsoft.AspNetCore.Razor.Language.RazorProjectItem)">
            <summary>
            Generates a <see cref="T:Microsoft.AspNetCore.Razor.Language.RazorCodeDocument"/> for the specified <paramref name="projectItem"/>.
            </summary>
            <param name="projectItem">The <see cref="T:Microsoft.AspNetCore.Razor.Language.RazorProjectItem"/>.</param>
            <returns>The created <see cref="T:Microsoft.AspNetCore.Razor.Language.RazorCodeDocument"/>.</returns>
        </member>
        <member name="M:Microsoft.AspNetCore.Razor.Language.RazorTemplateEngine.GetImports(System.String)">
            <summary>
            Gets <see cref="T:Microsoft.AspNetCore.Razor.Language.RazorSourceDocument"/> that are applicable to the specified <paramref name="path"/>.
            </summary>
            <param name="path">The template path.</param>
            <returns>The sequence of applicable <see cref="T:Microsoft.AspNetCore.Razor.Language.RazorSourceDocument"/>.</returns>
        </member>
        <member name="M:Microsoft.AspNetCore.Razor.Language.RazorTemplateEngine.GetImports(Microsoft.AspNetCore.Razor.Language.RazorProjectItem)">
            <summary>
            Gets <see cref="T:Microsoft.AspNetCore.Razor.Language.RazorSourceDocument"/> that are applicable to the specified <paramref name="projectItem"/>.
            </summary>
            <param name="projectItem">The <see cref="T:Microsoft.AspNetCore.Razor.Language.RazorProjectItem"/>.</param>
            <returns>The sequence of applicable <see cref="T:Microsoft.AspNetCore.Razor.Language.RazorSourceDocument"/>.</returns>
        </member>
        <member name="M:Microsoft.AspNetCore.Razor.Language.RazorTemplateEngine.GetImportItems(System.String)">
            <summary>
            Gets the sequence of imports with the name specified by <see cref="P:Microsoft.AspNetCore.Razor.Language.RazorTemplateEngineOptions.ImportsFileName" />
            that apply to <paramref name="path"/>.
            </summary>
            <param name="path">The path to look up import items for.</param>
            <returns>A sequence of <see cref="T:Microsoft.AspNetCore.Razor.Language.RazorProjectItem"/> instances that apply to the
            <paramref name="path"/>.</returns>
        </member>
        <member name="M:Microsoft.AspNetCore.Razor.Language.RazorTemplateEngine.GetImportItems(Microsoft.AspNetCore.Razor.Language.RazorProjectItem)">
            <summary>
            Gets the sequence of imports with the name specified by <see cref="P:Microsoft.AspNetCore.Razor.Language.RazorTemplateEngineOptions.ImportsFileName" />
            that apply to <paramref name="projectItem"/>.
            </summary>
            <param name="projectItem">The <see cref="T:Microsoft.AspNetCore.Razor.Language.RazorProjectItem"/> to look up import items for.</param>
            <returns>A sequence of <see cref="T:Microsoft.AspNetCore.Razor.Language.RazorProjectItem"/> instances that apply to the
            <paramref name="projectItem"/>.</returns>
        </member>
        <member name="T:Microsoft.AspNetCore.Razor.Language.RazorTemplateEngineOptions">
            <summary>
            Options for code generation in the <see cref="T:Microsoft.AspNetCore.Razor.Language.RazorTemplateEngine"/>.
            </summary>
        </member>
        <member name="P:Microsoft.AspNetCore.Razor.Language.RazorTemplateEngineOptions.ImportsFileName">
            <summary>
            Gets or sets the file name of the imports file (e.g. _ViewImports.cshtml).
            </summary>
        </member>
        <member name="P:Microsoft.AspNetCore.Razor.Language.RazorTemplateEngineOptions.DefaultImports">
            <summary>
            Gets or sets the default set of imports.
            </summary>
        </member>
        <member name="T:Microsoft.AspNetCore.Razor.Language.RequiredAttributeDescriptor.NameComparisonMode">
            <summary>
            Acceptable <see cref="P:Microsoft.AspNetCore.Razor.Language.RequiredAttributeDescriptor.Name"/> comparison modes.
            </summary>
        </member>
        <member name="F:Microsoft.AspNetCore.Razor.Language.RequiredAttributeDescriptor.NameComparisonMode.FullMatch">
            <summary>
            HTML attribute name case insensitively matches <see cref="P:Microsoft.AspNetCore.Razor.Language.RequiredAttributeDescriptor.Name"/>.
            </summary>
        </member>
        <member name="F:Microsoft.AspNetCore.Razor.Language.RequiredAttributeDescriptor.NameComparisonMode.PrefixMatch">
            <summary>
            HTML attribute name case insensitively starts with <see cref="P:Microsoft.AspNetCore.Razor.Language.RequiredAttributeDescriptor.Name"/>.
            </summary>
        </member>
        <member name="T:Microsoft.AspNetCore.Razor.Language.RequiredAttributeDescriptor.ValueComparisonMode">
            <summary>
            Acceptable <see cref="P:Microsoft.AspNetCore.Razor.Language.RequiredAttributeDescriptor.Value"/> comparison modes.
            </summary>
        </member>
        <member name="F:Microsoft.AspNetCore.Razor.Language.RequiredAttributeDescriptor.ValueComparisonMode.None">
            <summary>
            HTML attribute value always matches <see cref="P:Microsoft.AspNetCore.Razor.Language.RequiredAttributeDescriptor.Value"/>.
            </summary>
        </member>
        <member name="F:Microsoft.AspNetCore.Razor.Language.RequiredAttributeDescriptor.ValueComparisonMode.FullMatch">
            <summary>
            HTML attribute value case sensitively matches <see cref="P:Microsoft.AspNetCore.Razor.Language.RequiredAttributeDescriptor.Value"/>.
            </summary>
        </member>
        <member name="F:Microsoft.AspNetCore.Razor.Language.RequiredAttributeDescriptor.ValueComparisonMode.PrefixMatch">
            <summary>
            HTML attribute value case sensitively starts with <see cref="P:Microsoft.AspNetCore.Razor.Language.RequiredAttributeDescriptor.Value"/>.
            </summary>
        </member>
        <member name="F:Microsoft.AspNetCore.Razor.Language.RequiredAttributeDescriptor.ValueComparisonMode.SuffixMatch">
            <summary>
            HTML attribute value case sensitively ends with <see cref="P:Microsoft.AspNetCore.Razor.Language.RequiredAttributeDescriptor.Value"/>.
            </summary>
        </member>
        <member name="T:Microsoft.AspNetCore.Razor.Language.RequiredAttributeDescriptorComparer">
            <summary>
            An <see cref="T:System.Collections.Generic.IEqualityComparer`1"/> used to check equality between
            two <see cref="T:Microsoft.AspNetCore.Razor.Language.RequiredAttributeDescriptor"/>s.
            </summary>
        </member>
        <member name="F:Microsoft.AspNetCore.Razor.Language.RequiredAttributeDescriptorComparer.Default">
            <summary>
            A default instance of the <see cref="T:Microsoft.AspNetCore.Razor.Language.RequiredAttributeDescriptorComparer"/>.
            </summary>
        </member>
        <member name="F:Microsoft.AspNetCore.Razor.Language.RequiredAttributeDescriptorComparer.CaseSensitive">
            <summary>
            A default instance of the <see cref="T:Microsoft.AspNetCore.Razor.Language.RequiredAttributeDescriptorComparer"/> that does case-sensitive comparison.
            </summary>
        </member>
        <member name="M:Microsoft.AspNetCore.Razor.Language.RequiredAttributeDescriptorComparer.Equals(Microsoft.AspNetCore.Razor.Language.RequiredAttributeDescriptor,Microsoft.AspNetCore.Razor.Language.RequiredAttributeDescriptor)">
            <inheritdoc />
        </member>
        <member name="M:Microsoft.AspNetCore.Razor.Language.RequiredAttributeDescriptorComparer.GetHashCode(Microsoft.AspNetCore.Razor.Language.RequiredAttributeDescriptor)">
            <inheritdoc />
        </member>
        <member name="T:Microsoft.AspNetCore.Razor.Language.SourceLocation">
            <summary>
            A location in a Razor file.
            </summary>
        </member>
        <member name="F:Microsoft.AspNetCore.Razor.Language.SourceLocation.Undefined">
            <summary>
            An undefined <see cref="T:Microsoft.AspNetCore.Razor.Language.SourceLocation"/>.
            </summary>
        </member>
        <member name="F:Microsoft.AspNetCore.Razor.Language.SourceLocation.Zero">
            <summary>
            A <see cref="T:Microsoft.AspNetCore.Razor.Language.SourceLocation"/> with <see cref="P:Microsoft.AspNetCore.Razor.Language.SourceLocation.AbsoluteIndex"/>, <see cref="P:Microsoft.AspNetCore.Razor.Language.SourceLocation.LineIndex"/>, and
            <see cref="P:Microsoft.AspNetCore.Razor.Language.SourceLocation.CharacterIndex"/> initialized to 0.
            </summary>
        </member>
        <member name="M:Microsoft.AspNetCore.Razor.Language.SourceLocation.#ctor(System.Int32,System.Int32,System.Int32)">
            <summary>
            Initializes a new instance of <see cref="T:Microsoft.AspNetCore.Razor.Language.SourceLocation"/>.
            </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="M:Microsoft.AspNetCore.Razor.Language.SourceLocation.#ctor(System.String,System.Int32,System.Int32,System.Int32)">
            <summary>
            Initializes a new instance of <see cref="T:Microsoft.AspNetCore.Razor.Language.SourceLocation"/>.
            </summary>
            <param name="filePath">The file path.</param>
            <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:Microsoft.AspNetCore.Razor.Language.SourceLocation.FilePath">
            <summary>
            Path of the file.
            </summary>
            <remarks>
            <para>
            When <c>null</c>, the parser assumes the location is in the file currently being processed.
            </para>
            <para>Set property is only accessible for deserialization purposes.</para>
            </remarks>
        </member>
        <member name="P:Microsoft.AspNetCore.Razor.Language.SourceLocation.AbsoluteIndex">
            <remarks>Set property is only accessible for deserialization purposes.</remarks>
        </member>
        <member name="P:Microsoft.AspNetCore.Razor.Language.SourceLocation.LineIndex">
            <remarks>Set property is only accessible for deserialization purposes.</remarks>
        </member>
        <member name="P:Microsoft.AspNetCore.Razor.Language.SourceLocation.CharacterIndex">
            <remarks>Set property is only accessible for deserialization purposes.</remarks>
        </member>
        <member name="M:Microsoft.AspNetCore.Razor.Language.SourceLocation.FromSpan(System.Nullable{Microsoft.AspNetCore.Razor.Language.SourceSpan})">
            <summary>
            Creates a new instance of <see cref="T:Microsoft.AspNetCore.Razor.Language.SourceLocation"/> from the provided span.
            </summary>
            <param name="span">
            The souce span. If <c>null</c>, <see cref="F:Microsoft.AspNetCore.Razor.Language.SourceLocation.Undefined"/> will be returned.
            </param>
            <remarks>A <see cref="T:Microsoft.AspNetCore.Razor.Language.SourceLocation"/> that corresponds to the beginning of the span.</remarks>
        </member>
        <member name="M:Microsoft.AspNetCore.Razor.Language.SourceLocation.ToString">
            <inheritdoc />
        </member>
        <member name="M:Microsoft.AspNetCore.Razor.Language.SourceLocation.Equals(System.Object)">
            <inheritdoc />
        </member>
        <member name="M:Microsoft.AspNetCore.Razor.Language.SourceLocation.GetHashCode">
            <inheritdoc />
        </member>
        <member name="M:Microsoft.AspNetCore.Razor.Language.SourceLocation.Equals(Microsoft.AspNetCore.Razor.Language.SourceLocation)">
            <inheritdoc />
        </member>
        <member name="T:Microsoft.AspNetCore.Razor.Language.TagHelperBinder">
            <summary>
            Enables retrieval of <see cref="T:Microsoft.AspNetCore.Razor.Language.TagHelperBinding"/>'s.
            </summary>
        </member>
        <member name="M:Microsoft.AspNetCore.Razor.Language.TagHelperBinder.#ctor(System.String,System.Collections.Generic.IEnumerable{Microsoft.AspNetCore.Razor.Language.TagHelperDescriptor})">
            <summary>
            Instantiates a new instance of the <see cref="T:Microsoft.AspNetCore.Razor.Language.TagHelperBinder"/>.
            </summary>
            <param name="tagHelperPrefix">The tag helper prefix being used by the document.</param>
            <param name="descriptors">The descriptors that the <see cref="T:Microsoft.AspNetCore.Razor.Language.TagHelperBinder"/> will pull from.</param>
        </member>
        <member name="M:Microsoft.AspNetCore.Razor.Language.TagHelperBinder.GetBinding(System.String,System.Collections.Generic.IReadOnlyList{System.Collections.Generic.KeyValuePair{System.String,System.String}},System.String,System.Boolean)">
            <summary>
            Gets all tag helpers that match the given HTML tag criteria.
            </summary>
            <param name="tagName">The name of the HTML tag to match. Providing a '*' tag name
            retrieves catch-all <see cref="T:Microsoft.AspNetCore.Razor.Language.TagHelperDescriptor"/>s (descriptors that target every tag).</param>
            <param name="attributes">Attributes on the HTML tag.</param>
            <param name="parentTagName">The parent tag name of the given <paramref name="tagName"/> tag.</param>
            <param name="parentIsTagHelper">Is the parent tag of the given <paramref name="tagName"/> tag a tag helper.</param>
            <returns><see cref="T:Microsoft.AspNetCore.Razor.Language.TagHelperDescriptor"/>s that apply to the given HTML tag criteria.
            Will return <c>null</c> if no <see cref="T:Microsoft.AspNetCore.Razor.Language.TagHelperDescriptor"/>s are a match.</returns>
        </member>
        <member name="F:Microsoft.AspNetCore.Razor.Language.TagHelperDescriptorComparer.Default">
            <summary>
            A default instance of the <see cref="T:Microsoft.AspNetCore.Razor.Language.TagHelperDescriptorComparer"/>.
            </summary>
        </member>
        <member name="F:Microsoft.AspNetCore.Razor.Language.TagHelperDescriptorComparer.CaseSensitive">
            <summary>
            A default instance of the <see cref="T:Microsoft.AspNetCore.Razor.Language.TagHelperDescriptorComparer"/> that does case-sensitive comparison.
            </summary>
        </member>
        <member name="M:Microsoft.AspNetCore.Razor.Language.TagHelperDescriptorComparer.GetHashCode(Microsoft.AspNetCore.Razor.Language.TagHelperDescriptor)">
            <inheritdoc />
        </member>
        <member name="T:Microsoft.AspNetCore.Razor.Language.TagHelperDocumentContext">
            <summary>
            The binding information for Tag Helpers resulted to a <see cref="T:Microsoft.AspNetCore.Razor.Language.RazorCodeDocument"/>. Represents the
            Tag Helper information after processing by directives.
            </summary>
        </member>
        <member name="F:Microsoft.AspNetCore.Razor.Language.TagMatchingRuleDescriptorComparer.Default">
            <summary>
            A default instance of the <see cref="T:Microsoft.AspNetCore.Razor.Language.TagMatchingRuleDescriptorComparer"/>.
            </summary>
        </member>
        <member name="F:Microsoft.AspNetCore.Razor.Language.TagMatchingRuleDescriptorComparer.CaseSensitive">
            <summary>
            A default instance of the <see cref="T:Microsoft.AspNetCore.Razor.Language.TagMatchingRuleDescriptorComparer"/> that does case-sensitive comparison.
            </summary>
        </member>
        <member name="T:Microsoft.AspNetCore.Razor.Language.TagMode">
            <summary>
            The mode in which an element should render.
            </summary>
        </member>
        <member name="F:Microsoft.AspNetCore.Razor.Language.TagMode.StartTagAndEndTag">
            <summary>
            Include both start and end tags.
            </summary>
        </member>
        <member name="F:Microsoft.AspNetCore.Razor.Language.TagMode.SelfClosing">
            <summary>
            A self-closed tag.
            </summary>
        </member>
        <member name="F:Microsoft.AspNetCore.Razor.Language.TagMode.StartTagOnly">
            <summary>
            Only a start tag.
            </summary>
        </member>
        <member name="T:Microsoft.AspNetCore.Razor.Language.TagStructure">
            <summary>
            The structure the element should be written in.
            </summary>
        </member>
        <member name="F:Microsoft.AspNetCore.Razor.Language.TagStructure.Unspecified">
            <summary>
            If no other tag helper applies to the same element and specifies a <see cref="T:Microsoft.AspNetCore.Razor.Language.TagStructure"/>,
            <see cref="F:Microsoft.AspNetCore.Razor.Language.TagStructure.NormalOrSelfClosing"/> will be used.
            </summary>
        </member>
        <member name="F:Microsoft.AspNetCore.Razor.Language.TagStructure.NormalOrSelfClosing">
            <summary>
            Element can be written as &lt;my-tag-helper&gt;&lt;/my-tag-helper&gt; or &lt;my-tag-helper /&gt;.
            </summary>
        </member>
        <member name="F:Microsoft.AspNetCore.Razor.Language.TagStructure.WithoutEndTag">
            <summary>
            Element can be written as &lt;my-tag-helper&gt; or &lt;my-tag-helper /&gt;.
            </summary>
            <remarks>Elements with a <see cref="F:Microsoft.AspNetCore.Razor.Language.TagStructure.WithoutEndTag"/> structure will never have any content.</remarks>
        </member>
    </members>
</doc>

Commits for ChrisCompleteCodeTrunk/ActionTireCo/packages/Microsoft.AspNetCore.Razor.Language.2.1.0/lib/net46/Microsoft.AspNetCore.Razor.Language.xml

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