1
czw
2025-07-02 3113cd6842c8b68c11edbdc5b485d273c30cb7df
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
<?xml version="1.0"?>
<doc>
    <assembly>
        <name>Spectre.Console.Cli</name>
    </assembly>
    <members>
        <member name="T:Spectre.Console.Cli.CommandArgumentAttribute">
            <summary>
            An attribute representing a command argument.
            </summary>
            <seealso cref="T:System.Attribute" />
        </member>
        <member name="P:Spectre.Console.Cli.CommandArgumentAttribute.Position">
            <summary>
            Gets the argument position.
            </summary>
            <value>The argument position.</value>
        </member>
        <member name="P:Spectre.Console.Cli.CommandArgumentAttribute.ValueName">
            <summary>
            Gets the value name of the argument.
            </summary>
            <value>The value name of the argument.</value>
        </member>
        <member name="P:Spectre.Console.Cli.CommandArgumentAttribute.IsRequired">
            <summary>
            Gets a value indicating whether the argument is required.
            </summary>
            <value>
              <c>true</c> if the argument is required; otherwise, <c>false</c>.
            </value>
        </member>
        <member name="M:Spectre.Console.Cli.CommandArgumentAttribute.#ctor(System.Int32,System.String)">
            <summary>
            Initializes a new instance of the <see cref="T:Spectre.Console.Cli.CommandArgumentAttribute"/> class.
            </summary>
            <param name="position">The argument position.</param>
            <param name="template">The argument template. Wrap in &lt;&gt; for required arguments, [] for optional ones. For example "[MyArgument]".</param>
        </member>
        <member name="T:Spectre.Console.Cli.CommandOptionAttribute">
            <summary>
            An attribute representing a command option.
            </summary>
            <seealso cref="T:System.Attribute" />
        </member>
        <member name="P:Spectre.Console.Cli.CommandOptionAttribute.LongNames">
            <summary>
            Gets the long names of the option.
            </summary>
            <value>The option's long names.</value>
        </member>
        <member name="P:Spectre.Console.Cli.CommandOptionAttribute.ShortNames">
            <summary>
            Gets the short names of the option.
            </summary>
            <value>The option's short names.</value>
        </member>
        <member name="P:Spectre.Console.Cli.CommandOptionAttribute.ValueName">
            <summary>
            Gets the value name of the option.
            </summary>
            <value>The option's value name.</value>
        </member>
        <member name="P:Spectre.Console.Cli.CommandOptionAttribute.ValueIsOptional">
            <summary>
            Gets a value indicating whether the value is optional.
            </summary>
        </member>
        <member name="P:Spectre.Console.Cli.CommandOptionAttribute.IsHidden">
            <summary>
            Gets or sets a value indicating whether this option is hidden from the help text.
            </summary>
        </member>
        <member name="M:Spectre.Console.Cli.CommandOptionAttribute.#ctor(System.String)">
            <summary>
            Initializes a new instance of the <see cref="T:Spectre.Console.Cli.CommandOptionAttribute"/> class.
            </summary>
            <param name="template">The option template.</param>
        </member>
        <member name="T:Spectre.Console.Cli.PairDeconstructorAttribute">
            <summary>
            Specifies what type to use as a pair deconstructor for
            the property this attribute is bound to.
            </summary>
        </member>
        <member name="P:Spectre.Console.Cli.PairDeconstructorAttribute.Type">
            <summary>
            Gets the <see cref="T:System.String"/> that represents the type of the
            pair deconstructor class to use for data conversion for the
            object this attribute is bound to.
            </summary>
        </member>
        <member name="M:Spectre.Console.Cli.PairDeconstructorAttribute.#ctor(System.Type)">
            <summary>
            Initializes a new instance of the <see cref="T:Spectre.Console.Cli.PairDeconstructorAttribute"/> class.
            </summary>
            <param name="type">
                A System.Type that represents the type of the pair deconstructor
                class to use for data conversion for the object this attribute is bound to.
            </param>
        </member>
        <member name="T:Spectre.Console.Cli.ParameterValidationAttribute">
            <summary>
            A base class attribute used for parameter validation.
            </summary>
            <seealso cref="T:System.Attribute" />
        </member>
        <member name="P:Spectre.Console.Cli.ParameterValidationAttribute.ErrorMessage">
            <summary>
            Gets the validation error message.
            </summary>
            <value>The validation error message.</value>
        </member>
        <member name="M:Spectre.Console.Cli.ParameterValidationAttribute.#ctor(System.String)">
            <summary>
            Initializes a new instance of the <see cref="T:Spectre.Console.Cli.ParameterValidationAttribute"/> class.
            </summary>
            <param name="errorMessage">The validation error message.</param>
        </member>
        <member name="M:Spectre.Console.Cli.ParameterValidationAttribute.Validate(Spectre.Console.Cli.CommandParameterContext)">
            <summary>
            Validates the parameter value.
            </summary>
            <param name="context">The parameter context.</param>
            <returns>The validation result.</returns>
        </member>
        <member name="T:Spectre.Console.Cli.ParameterValueProviderAttribute">
            <summary>
            A base class attribute used for parameter completion.
            </summary>
            <seealso cref="T:System.Attribute" />
        </member>
        <member name="M:Spectre.Console.Cli.ParameterValueProviderAttribute.TryGetValue(Spectre.Console.Cli.CommandParameterContext,System.Object@)">
            <summary>
            Gets a value for the parameter.
            </summary>
            <param name="context">The parameter context.</param>
            <param name="result">The resulting value.</param>
            <returns><c>true</c> if a value was provided; otherwise, <c>false</c>.</returns>
        </member>
        <member name="T:Spectre.Console.Cli.AsyncCommand">
            <summary>
            Base class for an asynchronous command with no settings.
            </summary>
        </member>
        <member name="M:Spectre.Console.Cli.AsyncCommand.ExecuteAsync(Spectre.Console.Cli.CommandContext)">
            <summary>
            Executes the command.
            </summary>
            <param name="context">The command context.</param>
            <returns>An integer indicating whether or not the command executed successfully.</returns>
        </member>
        <member name="M:Spectre.Console.Cli.AsyncCommand.Spectre#Console#Cli#ICommand{Spectre#Console#Cli#EmptyCommandSettings}#Execute(Spectre.Console.Cli.CommandContext,Spectre.Console.Cli.EmptyCommandSettings)">
            <inheritdoc/>
        </member>
        <member name="M:Spectre.Console.Cli.AsyncCommand.Spectre#Console#Cli#ICommand#Execute(Spectre.Console.Cli.CommandContext,Spectre.Console.Cli.CommandSettings)">
            <inheritdoc/>
        </member>
        <member name="M:Spectre.Console.Cli.AsyncCommand.Spectre#Console#Cli#ICommand#Validate(Spectre.Console.Cli.CommandContext,Spectre.Console.Cli.CommandSettings)">
            <inheritdoc/>
        </member>
        <member name="T:Spectre.Console.Cli.AsyncCommand`1">
            <summary>
            Base class for an asynchronous command.
            </summary>
            <typeparam name="TSettings">The settings type.</typeparam>
        </member>
        <member name="M:Spectre.Console.Cli.AsyncCommand`1.Validate(Spectre.Console.Cli.CommandContext,`0)">
            <summary>
            Validates the specified settings and remaining arguments.
            </summary>
            <param name="context">The command context.</param>
            <param name="settings">The settings.</param>
            <returns>The validation result.</returns>
        </member>
        <member name="M:Spectre.Console.Cli.AsyncCommand`1.ExecuteAsync(Spectre.Console.Cli.CommandContext,`0)">
            <summary>
            Executes the command.
            </summary>
            <param name="context">The command context.</param>
            <param name="settings">The settings.</param>
            <returns>An integer indicating whether or not the command executed successfully.</returns>
        </member>
        <member name="M:Spectre.Console.Cli.AsyncCommand`1.Spectre#Console#Cli#ICommand#Validate(Spectre.Console.Cli.CommandContext,Spectre.Console.Cli.CommandSettings)">
            <inheritdoc/>
        </member>
        <member name="M:Spectre.Console.Cli.AsyncCommand`1.Spectre#Console#Cli#ICommand#Execute(Spectre.Console.Cli.CommandContext,Spectre.Console.Cli.CommandSettings)">
            <inheritdoc/>
        </member>
        <member name="M:Spectre.Console.Cli.AsyncCommand`1.Spectre#Console#Cli#ICommand{TSettings}#Execute(Spectre.Console.Cli.CommandContext,`0)">
            <inheritdoc/>
        </member>
        <member name="T:Spectre.Console.Cli.CaseSensitivity">
            <summary>
            Represents case sensitivity.
            </summary>
        </member>
        <member name="F:Spectre.Console.Cli.CaseSensitivity.None">
            <summary>
            Nothing is case sensitive.
            </summary>
        </member>
        <member name="F:Spectre.Console.Cli.CaseSensitivity.LongOptions">
            <summary>
            Long options are case sensitive.
            </summary>
        </member>
        <member name="F:Spectre.Console.Cli.CaseSensitivity.Commands">
            <summary>
            Commands are case sensitive.
            </summary>
        </member>
        <member name="F:Spectre.Console.Cli.CaseSensitivity.All">
            <summary>
            Everything is case sensitive.
            </summary>
        </member>
        <member name="T:Spectre.Console.Cli.Command">
            <summary>
            Base class for a command without settings.
            </summary>
            <seealso cref="T:Spectre.Console.Cli.AsyncCommand"/>
        </member>
        <member name="M:Spectre.Console.Cli.Command.Execute(Spectre.Console.Cli.CommandContext)">
            <summary>
            Executes the command.
            </summary>
            <param name="context">The command context.</param>
            <returns>An integer indicating whether or not the command executed successfully.</returns>
        </member>
        <member name="M:Spectre.Console.Cli.Command.Spectre#Console#Cli#ICommand{Spectre#Console#Cli#EmptyCommandSettings}#Execute(Spectre.Console.Cli.CommandContext,Spectre.Console.Cli.EmptyCommandSettings)">
            <inheritdoc/>
        </member>
        <member name="M:Spectre.Console.Cli.Command.Spectre#Console#Cli#ICommand#Execute(Spectre.Console.Cli.CommandContext,Spectre.Console.Cli.CommandSettings)">
            <inheritdoc/>
        </member>
        <member name="M:Spectre.Console.Cli.Command.Spectre#Console#Cli#ICommand#Validate(Spectre.Console.Cli.CommandContext,Spectre.Console.Cli.CommandSettings)">
            <inheritdoc/>
        </member>
        <member name="T:Spectre.Console.Cli.CommandApp">
            <summary>
            The entry point for a command line application.
            </summary>
        </member>
        <member name="M:Spectre.Console.Cli.CommandApp.#ctor(Spectre.Console.Cli.ITypeRegistrar)">
            <summary>
            Initializes a new instance of the <see cref="T:Spectre.Console.Cli.CommandApp"/> class.
            </summary>
            <param name="registrar">The registrar.</param>
        </member>
        <member name="M:Spectre.Console.Cli.CommandApp.Configure(System.Action{Spectre.Console.Cli.IConfigurator})">
            <summary>
            Configures the command line application.
            </summary>
            <param name="configuration">The configuration.</param>
        </member>
        <member name="M:Spectre.Console.Cli.CommandApp.SetDefaultCommand``1">
            <summary>
            Sets the default command.
            </summary>
            <typeparam name="TCommand">The command type.</typeparam>
            <returns>A <see cref="T:Spectre.Console.Cli.Internal.Configuration.DefaultCommandConfigurator"/> that can be used to configure the default command.</returns>
        </member>
        <member name="M:Spectre.Console.Cli.CommandApp.Run(System.Collections.Generic.IEnumerable{System.String})">
            <summary>
            Runs the command line application with specified arguments.
            </summary>
            <param name="args">The arguments.</param>
            <returns>The exit code from the executed command.</returns>
        </member>
        <member name="M:Spectre.Console.Cli.CommandApp.RunAsync(System.Collections.Generic.IEnumerable{System.String})">
            <summary>
            Runs the command line application with specified arguments.
            </summary>
            <param name="args">The arguments.</param>
            <returns>The exit code from the executed command.</returns>
        </member>
        <member name="T:Spectre.Console.Cli.CommandAppException">
            <summary>
            Represents errors that occur during application execution.
            </summary>
        </member>
        <member name="P:Spectre.Console.Cli.CommandAppException.Pretty">
            <summary>
            Gets the pretty formatted exception message.
            </summary>
        </member>
        <member name="T:Spectre.Console.Cli.CommandApp`1">
            <summary>
            The entry point for a command line application with a default command.
            </summary>
            <typeparam name="TDefaultCommand">The type of the default command.</typeparam>
        </member>
        <member name="M:Spectre.Console.Cli.CommandApp`1.#ctor(Spectre.Console.Cli.ITypeRegistrar)">
            <summary>
            Initializes a new instance of the <see cref="T:Spectre.Console.Cli.CommandApp`1"/> class.
            </summary>
            <param name="registrar">The registrar.</param>
        </member>
        <member name="M:Spectre.Console.Cli.CommandApp`1.Configure(System.Action{Spectre.Console.Cli.IConfigurator})">
            <summary>
            Configures the command line application.
            </summary>
            <param name="configuration">The configuration.</param>
        </member>
        <member name="M:Spectre.Console.Cli.CommandApp`1.Run(System.Collections.Generic.IEnumerable{System.String})">
            <summary>
            Runs the command line application with specified arguments.
            </summary>
            <param name="args">The arguments.</param>
            <returns>The exit code from the executed command.</returns>
        </member>
        <member name="M:Spectre.Console.Cli.CommandApp`1.RunAsync(System.Collections.Generic.IEnumerable{System.String})">
            <summary>
            Runs the command line application with specified arguments.
            </summary>
            <param name="args">The arguments.</param>
            <returns>The exit code from the executed command.</returns>
        </member>
        <member name="M:Spectre.Console.Cli.CommandApp`1.WithDescription(System.String)">
            <summary>
            Sets the description of the default command.
            </summary>
            <param name="description">The default command description.</param>
            <returns>The same <see cref="T:Spectre.Console.Cli.CommandApp`1"/> instance so that multiple calls can be chained.</returns>
        </member>
        <member name="M:Spectre.Console.Cli.CommandApp`1.WithData(System.Object)">
            <summary>
            Sets data that will be passed to the command via the <see cref="T:Spectre.Console.Cli.CommandContext"/>.
            </summary>
            <param name="data">The data to pass to the default command.</param>
            <returns>The same <see cref="T:Spectre.Console.Cli.CommandApp`1"/> instance so that multiple calls can be chained.</returns>
        </member>
        <member name="T:Spectre.Console.Cli.CommandConfigurationException">
            <summary>
            Represents errors that occur during configuration.
            </summary>
        </member>
        <member name="T:Spectre.Console.Cli.CommandContext">
            <summary>
            Represents a command context.
            </summary>
        </member>
        <member name="P:Spectre.Console.Cli.CommandContext.Remaining">
            <summary>
            Gets the remaining arguments.
            </summary>
            <value>
            The remaining arguments.
            </value>
        </member>
        <member name="P:Spectre.Console.Cli.CommandContext.Arguments">
            <summary>
            Gets all the arguments that were passed to the application.
            </summary>
        </member>
        <member name="P:Spectre.Console.Cli.CommandContext.Name">
            <summary>
            Gets the name of the command.
            </summary>
            <value>
            The name of the command.
            </value>
        </member>
        <member name="P:Spectre.Console.Cli.CommandContext.Data">
            <summary>
            Gets the data that was passed to the command during registration (if any).
            </summary>
            <value>
            The command data.
            </value>
        </member>
        <member name="M:Spectre.Console.Cli.CommandContext.#ctor(System.Collections.Generic.IEnumerable{System.String},Spectre.Console.Cli.IRemainingArguments,System.String,System.Object)">
            <summary>
            Initializes a new instance of the <see cref="T:Spectre.Console.Cli.CommandContext"/> class.
            </summary>
            <param name="arguments">All arguments that were passed to the application.</param>
            <param name="remaining">The remaining arguments.</param>
            <param name="name">The command name.</param>
            <param name="data">The command data.</param>
        </member>
        <member name="T:Spectre.Console.Cli.Command`1">
            <summary>
            Base class for a command.
            </summary>
            <typeparam name="TSettings">The settings type.</typeparam>
            <seealso cref="T:Spectre.Console.Cli.AsyncCommand`1"/>
        </member>
        <member name="M:Spectre.Console.Cli.Command`1.Validate(Spectre.Console.Cli.CommandContext,`0)">
            <summary>
            Validates the specified settings and remaining arguments.
            </summary>
            <param name="context">The command context.</param>
            <param name="settings">The settings.</param>
            <returns>The validation result.</returns>
        </member>
        <member name="M:Spectre.Console.Cli.Command`1.Execute(Spectre.Console.Cli.CommandContext,`0)">
            <summary>
            Executes the command.
            </summary>
            <param name="context">The command context.</param>
            <param name="settings">The settings.</param>
            <returns>An integer indicating whether or not the command executed successfully.</returns>
        </member>
        <member name="M:Spectre.Console.Cli.Command`1.Spectre#Console#Cli#ICommand#Validate(Spectre.Console.Cli.CommandContext,Spectre.Console.Cli.CommandSettings)">
            <inheritdoc/>
        </member>
        <member name="M:Spectre.Console.Cli.Command`1.Spectre#Console#Cli#ICommand#Execute(Spectre.Console.Cli.CommandContext,Spectre.Console.Cli.CommandSettings)">
            <inheritdoc/>
        </member>
        <member name="M:Spectre.Console.Cli.Command`1.Spectre#Console#Cli#ICommand{TSettings}#Execute(Spectre.Console.Cli.CommandContext,`0)">
            <inheritdoc/>
        </member>
        <member name="T:Spectre.Console.Cli.CommandParameterContext">
            <summary>
            Represents a context for <see cref="T:Spectre.Console.Cli.ICommandParameterInfo"/> related operations.
            </summary>
        </member>
        <member name="P:Spectre.Console.Cli.CommandParameterContext.Parameter">
            <summary>
            Gets the parameter.
            </summary>
        </member>
        <member name="P:Spectre.Console.Cli.CommandParameterContext.Resolver">
            <summary>
            Gets the type resolver.
            </summary>
        </member>
        <member name="P:Spectre.Console.Cli.CommandParameterContext.Value">
            <summary>
            Gets tje parameter value.
            </summary>
        </member>
        <member name="M:Spectre.Console.Cli.CommandParameterContext.#ctor(Spectre.Console.Cli.ICommandParameterInfo,Spectre.Console.Cli.ITypeResolver,System.Object)">
            <summary>
            Initializes a new instance of the <see cref="T:Spectre.Console.Cli.CommandParameterContext"/> class.
            </summary>
            <param name="parameter">The parameter.</param>
            <param name="resolver">The type resolver.</param>
            <param name="value">The parameter value.</param>
        </member>
        <member name="T:Spectre.Console.Cli.CommandParseException">
            <summary>
            Represents errors that occur during parsing.
            </summary>
        </member>
        <member name="T:Spectre.Console.Cli.CommandRuntimeException">
            <summary>
            Represents errors that occur during runtime.
            </summary>
        </member>
        <member name="T:Spectre.Console.Cli.CommandSettings">
            <summary>
            Base class for command settings.
            </summary>
        </member>
        <member name="M:Spectre.Console.Cli.CommandSettings.Validate">
            <summary>
            Performs validation of the settings.
            </summary>
            <returns>The validation result.</returns>
        </member>
        <member name="T:Spectre.Console.Cli.CommandTemplateException">
            <summary>
            Represents errors related to parameter templates.
            </summary>
        </member>
        <member name="P:Spectre.Console.Cli.CommandTemplateException.Template">
            <summary>
            Gets the template that contains the error.
            </summary>
        </member>
        <member name="T:Spectre.Console.Cli.ConfiguratorExtensions">
            <summary>
            Contains extensions for <see cref="T:Spectre.Console.Cli.IConfigurator"/>
            and <see cref="T:Spectre.Console.Cli.IConfigurator`1"/>.
            </summary>
        </member>
        <member name="M:Spectre.Console.Cli.ConfiguratorExtensions.SetHelpProvider(Spectre.Console.Cli.IConfigurator,Spectre.Console.Cli.Help.IHelpProvider)">
            <summary>
            Sets the help provider for the application.
            </summary>
            <param name="configurator">The configurator.</param>
            <param name="helpProvider">The help provider to use.</param>
            <returns>A configurator that can be used to configure the application further.</returns>
        </member>
        <member name="M:Spectre.Console.Cli.ConfiguratorExtensions.SetHelpProvider``1(Spectre.Console.Cli.IConfigurator)">
            <summary>
            Sets the help provider for the application.
            </summary>
            <param name="configurator">The configurator.</param>
            <typeparam name="T">The type of the help provider to instantiate at runtime and use.</typeparam>
            <returns>A configurator that can be used to configure the application further.</returns>
        </member>
        <member name="M:Spectre.Console.Cli.ConfiguratorExtensions.SetApplicationCulture(Spectre.Console.Cli.IConfigurator,System.Globalization.CultureInfo)">
            <summary>
            Sets the culture for the application.
            </summary>
            <param name="configurator">The configurator.</param>
            <param name="culture">The culture.</param>
            <returns>A configurator that can be used to configure the application further.</returns>
            <remarks>
            Text displayed by <see cref="T:Spectre.Console.Cli.Help.HelpProvider"/> can be localised, but defaults to English.
            Setting the application culture informs the resource manager which culture to use when fetching strings.
            English will be used when a culture has not been specified
            or a string has not been localised for the specified culture.
            </remarks>
        </member>
        <member name="M:Spectre.Console.Cli.ConfiguratorExtensions.SetApplicationName(Spectre.Console.Cli.IConfigurator,System.String)">
            <summary>
            Sets the name of the application.
            </summary>
            <param name="configurator">The configurator.</param>
            <param name="name">The name of the application.</param>
            <returns>A configurator that can be used to configure the application further.</returns>
        </member>
        <member name="M:Spectre.Console.Cli.ConfiguratorExtensions.SetApplicationVersion(Spectre.Console.Cli.IConfigurator,System.String)">
            <summary>
            Sets the version of the application.
            </summary>
            <param name="configurator">The configurator.</param>
            <param name="version">The version of application.</param>
            <returns>A configurator that can be used to configure the application further.</returns>
        </member>
        <member name="M:Spectre.Console.Cli.ConfiguratorExtensions.UseAssemblyInformationalVersion(Spectre.Console.Cli.IConfigurator)">
            <summary>
            Uses the version retrieved from the <see cref="T:System.Reflection.AssemblyInformationalVersionAttribute"/>
            as the application's version.
            </summary>
            <param name="configurator">The configurator.</param>
            <returns>A configurator that can be used to configure the application further.</returns>
        </member>
        <member name="M:Spectre.Console.Cli.ConfiguratorExtensions.HideOptionDefaultValues(Spectre.Console.Cli.IConfigurator)">
            <summary>
            Hides the <c>DEFAULT</c> column that lists default values coming from the
            <see cref="T:System.ComponentModel.DefaultValueAttribute"/> in the options help text.
            </summary>
            <param name="configurator">The configurator.</param>
            <returns>A configurator that can be used to configure the application further.</returns>
        </member>
        <member name="M:Spectre.Console.Cli.ConfiguratorExtensions.ConfigureConsole(Spectre.Console.Cli.IConfigurator,Spectre.Console.IAnsiConsole)">
            <summary>
            Configures the console.
            </summary>
            <param name="configurator">The configurator.</param>
            <param name="console">The console.</param>
            <returns>A configurator that can be used to configure the application further.</returns>
        </member>
        <member name="M:Spectre.Console.Cli.ConfiguratorExtensions.UseStrictParsing(Spectre.Console.Cli.IConfigurator)">
            <summary>
            Sets the parsing mode to strict.
            </summary>
            <param name="configurator">The configurator.</param>
            <returns>A configurator that can be used to configure the application further.</returns>
        </member>
        <member name="M:Spectre.Console.Cli.ConfiguratorExtensions.TrimTrailingPeriods(Spectre.Console.Cli.IConfigurator,System.Boolean)">
            <summary>
            Tells the help provider whether or not to trim trailing period.
            </summary>
            <param name="configurator">The configurator.</param>
            <param name="trimTrailingPeriods">True to trim trailing period (default), false to not.</param>
            <returns>A configurator that can be used to configure the application further.</returns>
        </member>
        <member name="M:Spectre.Console.Cli.ConfiguratorExtensions.PropagateExceptions(Spectre.Console.Cli.IConfigurator)">
            <summary>
            Tells the command line application to propagate all
            exceptions to the user.
            </summary>
            <param name="configurator">The configurator.</param>
            <returns>A configurator that can be used to configure the application further.</returns>
        </member>
        <member name="M:Spectre.Console.Cli.ConfiguratorExtensions.CaseSensitivity(Spectre.Console.Cli.IConfigurator,Spectre.Console.Cli.CaseSensitivity)">
            <summary>
            Configures case sensitivity.
            </summary>
            <param name="configurator">The configuration.</param>
            <param name="sensitivity">The case sensitivity.</param>
            <returns>A configurator that can be used to configure the application further.</returns>
        </member>
        <member name="M:Spectre.Console.Cli.ConfiguratorExtensions.ValidateExamples(Spectre.Console.Cli.IConfigurator)">
            <summary>
            Tells the command line application to validate all
            examples before running the application.
            </summary>
            <param name="configurator">The configurator.</param>
            <returns>A configurator that can be used to configure the application further.</returns>
        </member>
        <member name="M:Spectre.Console.Cli.ConfiguratorExtensions.SetInterceptor(Spectre.Console.Cli.IConfigurator,Spectre.Console.Cli.ICommandInterceptor)">
            <summary>
            Sets the command interceptor to be used.
            </summary>
            <param name="configurator">The configurator.</param>
            <param name="interceptor">A <see cref="T:Spectre.Console.Cli.ICommandInterceptor"/>.</param>
            <returns>A configurator that can be used to configure the application further.</returns>
        </member>
        <member name="M:Spectre.Console.Cli.ConfiguratorExtensions.AddBranch(Spectre.Console.Cli.IConfigurator,System.String,System.Action{Spectre.Console.Cli.IConfigurator{Spectre.Console.Cli.CommandSettings}})">
            <summary>
            Adds a command branch.
            </summary>
            <param name="configurator">The configurator.</param>
            <param name="name">The name of the command branch.</param>
            <param name="action">The command branch configuration.</param>
            <returns>A branch configurator that can be used to configure the branch further.</returns>
        </member>
        <member name="M:Spectre.Console.Cli.ConfiguratorExtensions.AddBranch``1(Spectre.Console.Cli.IConfigurator{``0},System.String,System.Action{Spectre.Console.Cli.IConfigurator{``0}})">
            <summary>
            Adds a command branch.
            </summary>
            <typeparam name="TSettings">The command setting type.</typeparam>
            <param name="configurator">The configurator.</param>
            <param name="name">The name of the command branch.</param>
            <param name="action">The command branch configuration.</param>
            <returns>A branch configurator that can be used to configure the branch further.</returns>
        </member>
        <member name="M:Spectre.Console.Cli.ConfiguratorExtensions.AddDelegate(Spectre.Console.Cli.IConfigurator,System.String,System.Func{Spectre.Console.Cli.CommandContext,System.Int32})">
            <summary>
            Adds a command without settings that executes a delegate.
            </summary>
            <param name="configurator">The configurator.</param>
            <param name="name">The name of the command.</param>
            <param name="func">The delegate to execute as part of command execution.</param>
            <returns>A command configurator that can be used to configure the command further.</returns>
        </member>
        <member name="M:Spectre.Console.Cli.ConfiguratorExtensions.AddAsyncDelegate(Spectre.Console.Cli.IConfigurator,System.String,System.Func{Spectre.Console.Cli.CommandContext,System.Threading.Tasks.Task{System.Int32}})">
            <summary>
            Adds a command without settings that executes an async delegate.
            </summary>
            <param name="configurator">The configurator.</param>
            <param name="name">The name of the command.</param>
            <param name="func">The delegate to execute as part of command execution.</param>
            <returns>A command configurator that can be used to configure the command further.</returns>
        </member>
        <member name="M:Spectre.Console.Cli.ConfiguratorExtensions.AddDelegate``1(Spectre.Console.Cli.IConfigurator{``0},System.String,System.Func{Spectre.Console.Cli.CommandContext,System.Int32})">
            <summary>
            Adds a command without settings that executes a delegate.
            </summary>
            <typeparam name="TSettings">The command setting type.</typeparam>
            <param name="configurator">The configurator.</param>
            <param name="name">The name of the command.</param>
            <param name="func">The delegate to execute as part of command execution.</param>
            <returns>A command configurator that can be used to configure the command further.</returns>
        </member>
        <member name="M:Spectre.Console.Cli.ConfiguratorExtensions.AddAsyncDelegate``1(Spectre.Console.Cli.IConfigurator{``0},System.String,System.Func{Spectre.Console.Cli.CommandContext,System.Threading.Tasks.Task{System.Int32}})">
            <summary>
            Adds a command without settings that executes an async delegate.
            </summary>
            <typeparam name="TSettings">The command setting type.</typeparam>
            <param name="configurator">The configurator.</param>
            <param name="name">The name of the command.</param>
            <param name="func">The delegate to execute as part of command execution.</param>
            <returns>A command configurator that can be used to configure the command further.</returns>
        </member>
        <member name="M:Spectre.Console.Cli.ConfiguratorExtensions.SetExceptionHandler(Spectre.Console.Cli.IConfigurator,System.Action{System.Exception,Spectre.Console.Cli.ITypeResolver})">
            <summary>
            Sets the ExceptionsHandler.
            <para>Setting <see cref="P:Spectre.Console.Cli.ICommandAppSettings.ExceptionHandler"/> this way will use the
            default exit code of -1.</para>
            </summary>
            <param name="configurator">The configurator.</param>
            <param name="exceptionHandler">The Action that handles the exception.</param>
            <returns>A configurator that can be used to configure the application further.</returns>
        </member>
        <member name="M:Spectre.Console.Cli.ConfiguratorExtensions.SetExceptionHandler(Spectre.Console.Cli.IConfigurator,System.Func{System.Exception,Spectre.Console.Cli.ITypeResolver,System.Int32})">
            <summary>
            Sets the ExceptionsHandler.
            </summary>
            <param name="configurator">The configurator.</param>
            <param name="exceptionHandler">The Action that handles the exception.</param>
            <returns>A configurator that can be used to configure the application further.</returns>
        </member>
        <member name="T:Spectre.Console.Cli.EmptyCommandSettings">
            <summary>
            Represents empty settings.
            </summary>
        </member>
        <member name="T:Spectre.Console.Cli.FlagValue`1">
            <summary>
            Implementation of a flag with an optional value.
            </summary>
            <typeparam name="T">The flag's element type.</typeparam>
        </member>
        <member name="P:Spectre.Console.Cli.FlagValue`1.IsSet">
            <summary>
            Gets or sets a value indicating whether or not the flag was set or not.
            </summary>
        </member>
        <member name="P:Spectre.Console.Cli.FlagValue`1.Value">
            <summary>
            Gets or sets the flag's value.
            </summary>
        </member>
        <member name="P:Spectre.Console.Cli.FlagValue`1.Spectre#Console#Cli#IFlagValue#Type">
            <inheritdoc/>
        </member>
        <member name="P:Spectre.Console.Cli.FlagValue`1.Spectre#Console#Cli#IFlagValue#Value">
            <inheritdoc/>
        </member>
        <member name="M:Spectre.Console.Cli.FlagValue`1.ToString">
            <inheritdoc/>
        </member>
        <member name="T:Spectre.Console.Cli.Help.HelpProvider">
            <summary>
            The help provider for Spectre.Console.
            </summary>
            <remarks>
            Other IHelpProvider implementations can be injected into the CommandApp, if desired.
            </remarks>
        </member>
        <member name="P:Spectre.Console.Cli.Help.HelpProvider.MaximumIndirectExamples">
            <summary>
            Gets a value indicating how many examples from direct children to show in the help text.
            </summary>
        </member>
        <member name="P:Spectre.Console.Cli.Help.HelpProvider.ShowOptionDefaultValues">
            <summary>
            Gets a value indicating whether any default values for command options are shown in the help text.
            </summary>
        </member>
        <member name="P:Spectre.Console.Cli.Help.HelpProvider.TrimTrailingPeriod">
            <summary>
            Gets a value indicating whether a trailing period of a description is trimmed in the help text.
            </summary>
        </member>
        <member name="P:Spectre.Console.Cli.Help.HelpProvider.RenderMarkupInline">
            <summary>
            Gets a value indicating whether to emit the markup styles, inline, when rendering the help text.
            </summary>
            <remarks>
            Useful for unit testing different styling of the same help text.
            </remarks>
        </member>
        <member name="M:Spectre.Console.Cli.Help.HelpProvider.#ctor(Spectre.Console.Cli.ICommandAppSettings)">
            <summary>
            Initializes a new instance of the <see cref="T:Spectre.Console.Cli.Help.HelpProvider"/> class.
            </summary>
            <param name="settings">The command line application settings used for configuration.</param>
        </member>
        <member name="M:Spectre.Console.Cli.Help.HelpProvider.Write(Spectre.Console.Cli.Help.ICommandModel,Spectre.Console.Cli.Help.ICommandInfo)">
            <inheritdoc/>
        </member>
        <member name="M:Spectre.Console.Cli.Help.HelpProvider.GetHeader(Spectre.Console.Cli.Help.ICommandModel,Spectre.Console.Cli.Help.ICommandInfo)">
            <summary>
            Gets the header for the help information.
            </summary>
            <param name="model">The command model to write help for.</param>
            <param name="command">The command for which to write help information (optional).</param>
            <returns>An enumerable collection of <see cref="T:Spectre.Console.Rendering.IRenderable"/> objects.</returns>
        </member>
        <member name="M:Spectre.Console.Cli.Help.HelpProvider.GetDescription(Spectre.Console.Cli.Help.ICommandModel,Spectre.Console.Cli.Help.ICommandInfo)">
            <summary>
            Gets the description section of the help information.
            </summary>
            <param name="model">The command model to write help for.</param>
            <param name="command">The command for which to write help information (optional).</param>
            <returns>An enumerable collection of <see cref="T:Spectre.Console.Rendering.IRenderable"/> objects.</returns>
        </member>
        <member name="M:Spectre.Console.Cli.Help.HelpProvider.GetUsage(Spectre.Console.Cli.Help.ICommandModel,Spectre.Console.Cli.Help.ICommandInfo)">
            <summary>
            Gets the usage section of the help information.
            </summary>
            <param name="model">The command model to write help for.</param>
            <param name="command">The command for which to write help information (optional).</param>
            <returns>An enumerable collection of <see cref="T:Spectre.Console.Rendering.IRenderable"/> objects.</returns>
        </member>
        <member name="M:Spectre.Console.Cli.Help.HelpProvider.GetExamples(Spectre.Console.Cli.Help.ICommandModel,Spectre.Console.Cli.Help.ICommandInfo)">
            <summary>
            Gets the examples section of the help information.
            </summary>
            <param name="model">The command model to write help for.</param>
            <param name="command">The command for which to write help information (optional).</param>
            <returns>An enumerable collection of <see cref="T:Spectre.Console.Rendering.IRenderable"/> objects.</returns>
            <remarks>
            Examples from the command's direct children are used
            if no examples have been set on the specified command or model.
            </remarks>
        </member>
        <member name="M:Spectre.Console.Cli.Help.HelpProvider.GetArguments(Spectre.Console.Cli.Help.ICommandModel,Spectre.Console.Cli.Help.ICommandInfo)">
            <summary>
            Gets the arguments section of the help information.
            </summary>
            <param name="model">The command model to write help for.</param>
            <param name="command">The command for which to write help information (optional).</param>
            <returns>An enumerable collection of <see cref="T:Spectre.Console.Rendering.IRenderable"/> objects.</returns>
        </member>
        <member name="M:Spectre.Console.Cli.Help.HelpProvider.GetOptions(Spectre.Console.Cli.Help.ICommandModel,Spectre.Console.Cli.Help.ICommandInfo)">
            <summary>
            Gets the options section of the help information.
            </summary>
            <param name="model">The command model to write help for.</param>
            <param name="command">The command for which to write help information (optional).</param>
            <returns>An enumerable collection of <see cref="T:Spectre.Console.Rendering.IRenderable"/> objects.</returns>
        </member>
        <member name="M:Spectre.Console.Cli.Help.HelpProvider.GetCommands(Spectre.Console.Cli.Help.ICommandModel,Spectre.Console.Cli.Help.ICommandInfo)">
            <summary>
            Gets the commands section of the help information.
            </summary>
            <param name="model">The command model to write help for.</param>
            <param name="command">The command for which to write help information (optional).</param>
            <returns>An enumerable collection of <see cref="T:Spectre.Console.Rendering.IRenderable"/> objects.</returns>
        </member>
        <member name="M:Spectre.Console.Cli.Help.HelpProvider.GetFooter(Spectre.Console.Cli.Help.ICommandModel,Spectre.Console.Cli.Help.ICommandInfo)">
            <summary>
            Gets the footer for the help information.
            </summary>
            <param name="model">The command model to write help for.</param>
            <param name="command">The command for which to write help information (optional).</param>
            <returns>An enumerable collection of <see cref="T:Spectre.Console.Rendering.IRenderable"/> objects.</returns>
        </member>
        <member name="T:Spectre.Console.Cli.Help.HelpProviderResources">
            <summary>
            A strongly-typed resource class, for looking up localized strings, etc.
            </summary>
        </member>
        <member name="P:Spectre.Console.Cli.Help.HelpProviderResources.Arguments">
            <summary>
            Gets the localised string for ARGUMENTS.
            </summary>
        </member>
        <member name="P:Spectre.Console.Cli.Help.HelpProviderResources.Command">
            <summary>
            Gets the localised string for COMMAND.
            </summary>
        </member>
        <member name="P:Spectre.Console.Cli.Help.HelpProviderResources.Commands">
            <summary>
            Gets the localised string for COMMANDS.
            </summary>
        </member>
        <member name="P:Spectre.Console.Cli.Help.HelpProviderResources.Default">
            <summary>
            Gets the localised string for DEFAULT.
            </summary>
        </member>
        <member name="P:Spectre.Console.Cli.Help.HelpProviderResources.Description">
            <summary>
            Gets the localised string for DESCRIPTION.
            </summary>
        </member>
        <member name="P:Spectre.Console.Cli.Help.HelpProviderResources.Examples">
            <summary>
            Gets the localised string for EXAMPLES.
            </summary>
        </member>
        <member name="P:Spectre.Console.Cli.Help.HelpProviderResources.Options">
            <summary>
            Gets the localised string for OPTIONS.
            </summary>
        </member>
        <member name="P:Spectre.Console.Cli.Help.HelpProviderResources.PrintHelpDescription">
            <summary>
            Gets the localised string for Prints help information.
            </summary>
        </member>
        <member name="P:Spectre.Console.Cli.Help.HelpProviderResources.PrintVersionDescription">
            <summary>
            Gets the localised string for Prints version information.
            </summary>
        </member>
        <member name="P:Spectre.Console.Cli.Help.HelpProviderResources.Usage">
            <summary>
            Gets the localised string for USAGE.
            </summary>
        </member>
        <member name="T:Spectre.Console.Cli.Help.HelpProviderStyle">
            <summary>
            Styles for the HelpProvider to use when rendering help text.
            </summary>
        </member>
        <member name="P:Spectre.Console.Cli.Help.HelpProviderStyle.Description">
            <summary>
            Gets or sets the style for describing the purpose or details of a command.
            </summary>
        </member>
        <member name="P:Spectre.Console.Cli.Help.HelpProviderStyle.Usage">
            <summary>
            Gets or sets the style for specifying the usage format of a command.
            </summary>
        </member>
        <member name="P:Spectre.Console.Cli.Help.HelpProviderStyle.Examples">
            <summary>
            Gets or sets the style for providing examples of command usage.
            </summary>
        </member>
        <member name="P:Spectre.Console.Cli.Help.HelpProviderStyle.Arguments">
            <summary>
            Gets or sets the style for specifying arguments in a command.
            </summary>
        </member>
        <member name="P:Spectre.Console.Cli.Help.HelpProviderStyle.Options">
            <summary>
            Gets or sets the style for specifying options or flags in a command.
            </summary>
        </member>
        <member name="P:Spectre.Console.Cli.Help.HelpProviderStyle.Commands">
            <summary>
            Gets or sets the style for specifying subcommands or nested commands.
            </summary>
        </member>
        <member name="P:Spectre.Console.Cli.Help.HelpProviderStyle.Default">
            <summary>
            Gets the default HelpProvider styles.
            </summary>
        </member>
        <member name="T:Spectre.Console.Cli.Help.DescriptionStyle">
            <summary>
            Defines styles for describing the purpose or details of a command.
            </summary>
        </member>
        <member name="P:Spectre.Console.Cli.Help.DescriptionStyle.Header">
            <summary>
            Gets or sets the style for the header in the description.
            </summary>
        </member>
        <member name="T:Spectre.Console.Cli.Help.UsageStyle">
            <summary>
            Defines styles for specifying the usage format of a command.
            </summary>
        </member>
        <member name="P:Spectre.Console.Cli.Help.UsageStyle.Header">
            <summary>
            Gets or sets the style for the header in the usage.
            </summary>
        </member>
        <member name="P:Spectre.Console.Cli.Help.UsageStyle.CurrentCommand">
            <summary>
            Gets or sets the style for the current command in the usage.
            </summary>
        </member>
        <member name="P:Spectre.Console.Cli.Help.UsageStyle.Command">
            <summary>
            Gets or sets the style for general commands in the usage.
            </summary>
        </member>
        <member name="P:Spectre.Console.Cli.Help.UsageStyle.Options">
            <summary>
            Gets or sets the style for options in the usage.
            </summary>
        </member>
        <member name="P:Spectre.Console.Cli.Help.UsageStyle.RequiredArgument">
            <summary>
            Gets or sets the style for required arguments in the usage.
            </summary>
        </member>
        <member name="P:Spectre.Console.Cli.Help.UsageStyle.OptionalArgument">
            <summary>
            Gets or sets the style for optional arguments in the usage.
            </summary>
        </member>
        <member name="T:Spectre.Console.Cli.Help.ExampleStyle">
            <summary>
            Defines styles for providing examples of command usage.
            </summary>
        </member>
        <member name="P:Spectre.Console.Cli.Help.ExampleStyle.Header">
            <summary>
            Gets or sets the style for the header in the examples.
            </summary>
        </member>
        <member name="P:Spectre.Console.Cli.Help.ExampleStyle.Arguments">
            <summary>
            Gets or sets the style for arguments in the examples.
            </summary>
        </member>
        <member name="T:Spectre.Console.Cli.Help.ArgumentStyle">
            <summary>
            Defines styles for specifying arguments in a command.
            </summary>
        </member>
        <member name="P:Spectre.Console.Cli.Help.ArgumentStyle.Header">
            <summary>
            Gets or sets the style for the header in the arguments.
            </summary>
        </member>
        <member name="P:Spectre.Console.Cli.Help.ArgumentStyle.RequiredArgument">
            <summary>
            Gets or sets the style for required arguments.
            </summary>
        </member>
        <member name="P:Spectre.Console.Cli.Help.ArgumentStyle.OptionalArgument">
            <summary>
            Gets or sets the style for optional arguments.
            </summary>
        </member>
        <member name="T:Spectre.Console.Cli.Help.CommandStyle">
            <summary>
            Defines styles for specifying subcommands or nested commands.
            </summary>
        </member>
        <member name="P:Spectre.Console.Cli.Help.CommandStyle.Header">
            <summary>
            Gets or sets the style for the header in the command section.
            </summary>
        </member>
        <member name="P:Spectre.Console.Cli.Help.CommandStyle.ChildCommand">
            <summary>
            Gets or sets the style for child commands in the command section.
            </summary>
        </member>
        <member name="P:Spectre.Console.Cli.Help.CommandStyle.RequiredArgument">
            <summary>
            Gets or sets the style for required arguments in the command section.
            </summary>
        </member>
        <member name="T:Spectre.Console.Cli.Help.OptionStyle">
            <summary>
            Defines styles for specifying options or flags in a command.
            </summary>
        </member>
        <member name="P:Spectre.Console.Cli.Help.OptionStyle.Header">
            <summary>
            Gets or sets the style for the header in the options.
            </summary>
        </member>
        <member name="P:Spectre.Console.Cli.Help.OptionStyle.DefaultValueHeader">
            <summary>
            Gets or sets the style for the header of default values in the options.
            </summary>
        </member>
        <member name="P:Spectre.Console.Cli.Help.OptionStyle.DefaultValue">
            <summary>
            Gets or sets the style for default values in the options.
            </summary>
        </member>
        <member name="P:Spectre.Console.Cli.Help.OptionStyle.RequiredOption">
            <summary>
            Gets or sets the style for required options.
            </summary>
        </member>
        <member name="P:Spectre.Console.Cli.Help.OptionStyle.OptionalOption">
            <summary>
            Gets or sets the style for optional options.
            </summary>
        </member>
        <member name="T:Spectre.Console.Cli.Help.ICommandArgument">
            <summary>
            Represents a command argument.
            </summary>
        </member>
        <member name="P:Spectre.Console.Cli.Help.ICommandArgument.Value">
            <summary>
            Gets the value of the argument.
            </summary>
        </member>
        <member name="P:Spectre.Console.Cli.Help.ICommandArgument.Position">
            <summary>
            Gets the position of the argument.
            </summary>
        </member>
        <member name="T:Spectre.Console.Cli.Help.ICommandContainer">
            <summary>
            Represents a command container.
            </summary>
        </member>
        <member name="P:Spectre.Console.Cli.Help.ICommandContainer.Examples">
            <summary>
            Gets all the examples for the container.
            </summary>
        </member>
        <member name="P:Spectre.Console.Cli.Help.ICommandContainer.Commands">
            <summary>
            Gets all commands in the container.
            </summary>
        </member>
        <member name="P:Spectre.Console.Cli.Help.ICommandContainer.DefaultCommand">
            <summary>
            Gets the default command for the container.
            </summary>
            <remarks>
            Returns null if a default command has not been set.
            </remarks>
        </member>
        <member name="T:Spectre.Console.Cli.Help.ICommandInfo">
            <summary>
            Represents an executable command.
            </summary>
        </member>
        <member name="P:Spectre.Console.Cli.Help.ICommandInfo.Name">
            <summary>
            Gets the name of the command.
            </summary>
        </member>
        <member name="P:Spectre.Console.Cli.Help.ICommandInfo.Description">
            <summary>
            Gets the description of the command.
            </summary>
        </member>
        <member name="P:Spectre.Console.Cli.Help.ICommandInfo.IsBranch">
            <summary>
            Gets a value indicating whether the command is a branch.
            </summary>
        </member>
        <member name="P:Spectre.Console.Cli.Help.ICommandInfo.IsDefaultCommand">
            <summary>
            Gets a value indicating whether the command is the default command within its container.
            </summary>
        </member>
        <member name="P:Spectre.Console.Cli.Help.ICommandInfo.IsHidden">
            <summary>
            Gets a value indicating whether the command is hidden.
            </summary>
        </member>
        <member name="P:Spectre.Console.Cli.Help.ICommandInfo.Parameters">
            <summary>
            Gets the parameters associated with the command.
            </summary>
        </member>
        <member name="P:Spectre.Console.Cli.Help.ICommandInfo.Parent">
            <summary>
            Gets the parent command, if any.
            </summary>
        </member>
        <member name="M:Spectre.Console.Cli.Help.ICommandInfoExtensions.Flatten(Spectre.Console.Cli.Help.ICommandInfo)">
            <summary>
            Walks up the command.Parent tree, adding each command into a list as it goes.
            </summary>
            <remarks>The first command added to the list is the current (ie. this one).</remarks>
            <returns>The list of commands from current to root, as traversed by <see cref="P:Spectre.Console.Cli.CommandInfo.Parent"/>.</returns>
        </member>
        <member name="T:Spectre.Console.Cli.Help.ICommandModel">
            <summary>
            Represents a command model.
            </summary>
        </member>
        <member name="P:Spectre.Console.Cli.Help.ICommandModel.ApplicationName">
            <summary>
            Gets the name of the application.
            </summary>
        </member>
        <member name="P:Spectre.Console.Cli.Help.ICommandModel.ApplicationVersion">
            <summary>
            Gets the version of the application.
            </summary>
        </member>
        <member name="T:Spectre.Console.Cli.Help.ICommandOption">
            <summary>
            Represents a command option.
            </summary>
        </member>
        <member name="P:Spectre.Console.Cli.Help.ICommandOption.LongNames">
            <summary>
            Gets the long names of the option.
            </summary>
        </member>
        <member name="P:Spectre.Console.Cli.Help.ICommandOption.ShortNames">
            <summary>
            Gets the short names of the option.
            </summary>
        </member>
        <member name="P:Spectre.Console.Cli.Help.ICommandOption.ValueName">
            <summary>
            Gets the value name of the option, if applicable.
            </summary>
        </member>
        <member name="P:Spectre.Console.Cli.Help.ICommandOption.ValueIsOptional">
            <summary>
            Gets a value indicating whether the option value is optional.
            </summary>
        </member>
        <member name="T:Spectre.Console.Cli.Help.ICommandParameter">
            <summary>
            Represents a command parameter.
            </summary>
        </member>
        <member name="P:Spectre.Console.Cli.Help.ICommandParameter.IsFlag">
            <summary>
            Gets a value indicating whether the parameter is a flag.
            </summary>
        </member>
        <member name="P:Spectre.Console.Cli.Help.ICommandParameter.Required">
            <summary>
            Gets a value indicating whether the parameter is required.
            </summary>
        </member>
        <member name="P:Spectre.Console.Cli.Help.ICommandParameter.Description">
            <summary>
            Gets the description of the parameter.
            </summary>
        </member>
        <member name="P:Spectre.Console.Cli.Help.ICommandParameter.DefaultValue">
            <summary>
            Gets the default value of the parameter, if specified.
            </summary>
        </member>
        <member name="P:Spectre.Console.Cli.Help.ICommandParameter.IsHidden">
            <summary>
            Gets a value indicating whether the parameter is hidden.
            </summary>
        </member>
        <member name="T:Spectre.Console.Cli.Help.IHelpProvider">
            <summary>
            The help provider interface for Spectre.Console.
            </summary>
            <remarks>
            Implementations of this interface are responsbile
            for writing command help to the terminal when the
            `-h` or `--help` has been specified on the command line.
            </remarks>
        </member>
        <member name="M:Spectre.Console.Cli.Help.IHelpProvider.Write(Spectre.Console.Cli.Help.ICommandModel,Spectre.Console.Cli.Help.ICommandInfo)">
            <summary>
            Writes help information for the application.
            </summary>
            <param name="model">The command model to write help for.</param>
            <param name="command">The command for which to write help information (optional).</param>
            <returns>An enumerable collection of <see cref="T:Spectre.Console.Rendering.IRenderable"/> objects representing the help information.</returns>
        </member>
        <member name="T:Spectre.Console.Cli.IBranchConfigurator">
            <summary>
            Represents a branch configurator.
            </summary>
        </member>
        <member name="M:Spectre.Console.Cli.IBranchConfigurator.WithAlias(System.String)">
            <summary>
            Adds an alias (an alternative name) to the branch being configured.
            </summary>
            <param name="name">The alias to add to the branch being configured.</param>
            <returns>The same <see cref="T:Spectre.Console.Cli.IBranchConfigurator"/> instance so that multiple calls can be chained.</returns>
        </member>
        <member name="T:Spectre.Console.Cli.ICommand">
            <summary>
            Represents a command.
            </summary>
        </member>
        <member name="M:Spectre.Console.Cli.ICommand.Validate(Spectre.Console.Cli.CommandContext,Spectre.Console.Cli.CommandSettings)">
            <summary>
            Validates the specified settings and remaining arguments.
            </summary>
            <param name="context">The command context.</param>
            <param name="settings">The settings.</param>
            <returns>The validation result.</returns>
        </member>
        <member name="M:Spectre.Console.Cli.ICommand.Execute(Spectre.Console.Cli.CommandContext,Spectre.Console.Cli.CommandSettings)">
            <summary>
            Executes the command.
            </summary>
            <param name="context">The command context.</param>
            <param name="settings">The settings.</param>
            <returns>The validation result.</returns>
        </member>
        <member name="T:Spectre.Console.Cli.ICommandApp">
            <summary>
            Represents a command line application.
            </summary>
        </member>
        <member name="M:Spectre.Console.Cli.ICommandApp.Configure(System.Action{Spectre.Console.Cli.IConfigurator})">
            <summary>
            Configures the command line application.
            </summary>
            <param name="configuration">The configuration.</param>
        </member>
        <member name="M:Spectre.Console.Cli.ICommandApp.Run(System.Collections.Generic.IEnumerable{System.String})">
            <summary>
            Runs the command line application with specified arguments.
            </summary>
            <param name="args">The arguments.</param>
            <returns>The exit code from the executed command.</returns>
        </member>
        <member name="M:Spectre.Console.Cli.ICommandApp.RunAsync(System.Collections.Generic.IEnumerable{System.String})">
            <summary>
            Runs the command line application with specified arguments.
            </summary>
            <param name="args">The arguments.</param>
            <returns>The exit code from the executed command.</returns>
        </member>
        <member name="T:Spectre.Console.Cli.ICommandAppSettings">
            <summary>
            Represents a command line application settings.
            </summary>
        </member>
        <member name="P:Spectre.Console.Cli.ICommandAppSettings.Culture">
            <summary>
            Gets or sets the culture.
            </summary>
            <remarks>
            Text displayed by <see cref="T:Spectre.Console.Cli.Help.HelpProvider"/> can be localised, but defaults to English.
            Setting this property informs the resource manager which culture to use when fetching strings.
            English will be used when a culture has not been specified (ie. this property is null)
            or a string has not been localised for the specified culture.
            </remarks>
        </member>
        <member name="P:Spectre.Console.Cli.ICommandAppSettings.ApplicationName">
            <summary>
            Gets or sets the application name.
            </summary>
        </member>
        <member name="P:Spectre.Console.Cli.ICommandAppSettings.ApplicationVersion">
            <summary>
            Gets or sets the application version (use it to override auto-detected value).
            </summary>
        </member>
        <member name="P:Spectre.Console.Cli.ICommandAppSettings.MaximumIndirectExamples">
            <summary>
            Gets or sets a value indicating how many examples from direct children to show in the help text.
            </summary>
        </member>
        <member name="P:Spectre.Console.Cli.ICommandAppSettings.ShowOptionDefaultValues">
            <summary>
            Gets or sets a value indicating whether any default values for command options are shown in the help text.
            </summary>
        </member>
        <member name="P:Spectre.Console.Cli.ICommandAppSettings.TrimTrailingPeriod">
            <summary>
            Gets or sets a value indicating whether a trailing period of a description is trimmed in the help text.
            </summary>
        </member>
        <member name="P:Spectre.Console.Cli.ICommandAppSettings.HelpProviderStyles">
            <summary>
            Gets or sets the styles to used when rendering the help text.
            </summary>
        </member>
        <member name="P:Spectre.Console.Cli.ICommandAppSettings.Console">
            <summary>
            Gets or sets the <see cref="T:Spectre.Console.IAnsiConsole"/>.
            </summary>
        </member>
        <member name="P:Spectre.Console.Cli.ICommandAppSettings.Interceptor">
            <summary>
            Gets or sets the <see cref="T:Spectre.Console.Cli.ICommandInterceptor"/> used
            to intercept settings before it's being sent to the command.
            </summary>
        </member>
        <member name="P:Spectre.Console.Cli.ICommandAppSettings.Registrar">
            <summary>
            Gets the type registrar.
            </summary>
        </member>
        <member name="P:Spectre.Console.Cli.ICommandAppSettings.CaseSensitivity">
            <summary>
            Gets or sets case sensitivity.
            </summary>
        </member>
        <member name="P:Spectre.Console.Cli.ICommandAppSettings.StrictParsing">
            <summary>
            Gets or sets a value indicating whether or not parsing is strict.
            </summary>
        </member>
        <member name="P:Spectre.Console.Cli.ICommandAppSettings.ConvertFlagsToRemainingArguments">
            <summary>
            Gets or sets a value indicating whether or not flags found on the command line
            that would normally result in a <see cref="T:Spectre.Console.Cli.CommandParseException"/> being thrown
            during parsing with the message "Flags cannot be assigned a value."
            should instead be added to the remaining arguments collection.
            </summary>
        </member>
        <member name="P:Spectre.Console.Cli.ICommandAppSettings.PropagateExceptions">
            <summary>
            Gets or sets a value indicating whether or not exceptions should be propagated.
            <para>Setting this to <c>true</c> will disable default Exception handling and
            any <see cref="P:Spectre.Console.Cli.ICommandAppSettings.ExceptionHandler"/>, if set.</para>
            </summary>
        </member>
        <member name="P:Spectre.Console.Cli.ICommandAppSettings.ValidateExamples">
            <summary>
            Gets or sets a value indicating whether or not examples should be validated.
            </summary>
        </member>
        <member name="P:Spectre.Console.Cli.ICommandAppSettings.ExceptionHandler">
            <summary>
            Gets or sets a handler for Exceptions.
            <para>This handler will not be called, if <see cref="P:Spectre.Console.Cli.ICommandAppSettings.PropagateExceptions"/> is set to <c>true</c>.</para>
            The <see cref="T:Spectre.Console.Cli.ITypeResolver"/> argument will only be not-null, when the exception occurs during execution of
            a command. I.e. only when the resolver is available.
            </summary>
        </member>
        <member name="T:Spectre.Console.Cli.ICommandConfigurator">
            <summary>
            Represents a command configurator.
            </summary>
        </member>
        <member name="M:Spectre.Console.Cli.ICommandConfigurator.WithExample(System.String[])">
            <summary>
            Adds an example of how to use the command.
            </summary>
            <param name="args">The example arguments.</param>
            <returns>The same <see cref="T:Spectre.Console.Cli.ICommandConfigurator"/> instance so that multiple calls can be chained.</returns>
        </member>
        <member name="M:Spectre.Console.Cli.ICommandConfigurator.WithAlias(System.String)">
            <summary>
            Adds an alias (an alternative name) to the command being configured.
            </summary>
            <param name="name">The alias to add to the command being configured.</param>
            <returns>The same <see cref="T:Spectre.Console.Cli.ICommandConfigurator"/> instance so that multiple calls can be chained.</returns>
        </member>
        <member name="M:Spectre.Console.Cli.ICommandConfigurator.WithDescription(System.String)">
            <summary>
            Sets the description of the command.
            </summary>
            <param name="description">The command description.</param>
            <returns>The same <see cref="T:Spectre.Console.Cli.ICommandConfigurator"/> instance so that multiple calls can be chained.</returns>
        </member>
        <member name="M:Spectre.Console.Cli.ICommandConfigurator.WithData(System.Object)">
            <summary>
            Sets data that will be passed to the command via the <see cref="T:Spectre.Console.Cli.CommandContext"/>.
            </summary>
            <param name="data">The data to pass to the command.</param>
            <returns>The same <see cref="T:Spectre.Console.Cli.ICommandConfigurator"/> instance so that multiple calls can be chained.</returns>
        </member>
        <member name="M:Spectre.Console.Cli.ICommandConfigurator.IsHidden">
            <summary>
            Marks the command as hidden.
            Hidden commands do not show up in help documentation or
            generated XML models.
            </summary>
            <returns>The same <see cref="T:Spectre.Console.Cli.ICommandConfigurator"/> instance so that multiple calls can be chained.</returns>
        </member>
        <member name="T:Spectre.Console.Cli.ICommandInterceptor">
            <summary>
            Represents a command settings interceptor that
            will intercept command settings before it's
            passed to a command.
            </summary>
        </member>
        <member name="M:Spectre.Console.Cli.ICommandInterceptor.Intercept(Spectre.Console.Cli.CommandContext,Spectre.Console.Cli.CommandSettings)">
            <summary>
            Intercepts command information before it's passed to a command.
            </summary>
            <param name="context">The intercepted <see cref="T:Spectre.Console.Cli.CommandContext"/>.</param>
            <param name="settings">The intercepted <see cref="T:Spectre.Console.Cli.CommandSettings"/>.</param>
        </member>
        <member name="M:Spectre.Console.Cli.ICommandInterceptor.InterceptResult(Spectre.Console.Cli.CommandContext,Spectre.Console.Cli.CommandSettings,System.Int32@)">
            <summary>
            Intercepts a command result before it's passed as the result.
            </summary>
            <param name="context">The intercepted <see cref="T:Spectre.Console.Cli.CommandContext"/>.</param>
            <param name="settings">The intercepted <see cref="T:Spectre.Console.Cli.CommandSettings"/>.</param>
            <param name="result">The result from the command execution.</param>
        </member>
        <member name="T:Spectre.Console.Cli.ICommandLimiter`1">
            <summary>
            Represents a command limiter.
            </summary>
            <typeparam name="TSettings">The type of the settings to limit to.</typeparam>
            <seealso cref="T:Spectre.Console.Cli.ICommand" />
        </member>
        <member name="T:Spectre.Console.Cli.ICommand`1">
            <summary>
            Represents a command.
            </summary>
            <typeparam name="TSettings">The settings type.</typeparam>
        </member>
        <member name="M:Spectre.Console.Cli.ICommand`1.Execute(Spectre.Console.Cli.CommandContext,`0)">
            <summary>
            Executes the command.
            </summary>
            <param name="context">The command context.</param>
            <param name="settings">The settings.</param>
            <returns>An integer indicating whether or not the command executed successfully.</returns>
        </member>
        <member name="T:Spectre.Console.Cli.ICommandParameterInfo">
            <summary>
            Represents a command parameter.
            </summary>
        </member>
        <member name="P:Spectre.Console.Cli.ICommandParameterInfo.PropertyName">
            <summary>
            Gets the property name.
            </summary>
            <value>The property name.</value>
        </member>
        <member name="P:Spectre.Console.Cli.ICommandParameterInfo.ParameterType">
            <summary>
            Gets the parameter type.
            </summary>
        </member>
        <member name="P:Spectre.Console.Cli.ICommandParameterInfo.Description">
            <summary>
            Gets the description.
            </summary>
            <value>The description.</value>
        </member>
        <member name="T:Spectre.Console.Cli.IConfigurator">
            <summary>
            Represents a configurator.
            </summary>
        </member>
        <member name="M:Spectre.Console.Cli.IConfigurator.SetHelpProvider(Spectre.Console.Cli.Help.IHelpProvider)">
            <summary>
            Sets the help provider for the application.
            </summary>
            <param name="helpProvider">The help provider to use.</param>
            <returns>A configurator that can be used for further configuration.</returns>
        </member>
        <member name="M:Spectre.Console.Cli.IConfigurator.SetHelpProvider``1">
            <summary>
            Sets the help provider for the application.
            </summary>
            <typeparam name="T">The type of the help provider to instantiate at runtime and use.</typeparam>
            <returns>A configurator that can be used for further configuration.</returns>
        </member>
        <member name="P:Spectre.Console.Cli.IConfigurator.Settings">
            <summary>
            Gets the command app settings.
            </summary>
        </member>
        <member name="M:Spectre.Console.Cli.IConfigurator.AddExample(System.String[])">
            <summary>
            Adds an example of how to use the application.
            </summary>
            <param name="args">The example arguments.</param>
            <returns>A configurator that can be used for further configuration.</returns>
        </member>
        <member name="M:Spectre.Console.Cli.IConfigurator.AddCommand``1(System.String)">
            <summary>
            Adds a command.
            </summary>
            <typeparam name="TCommand">The command type.</typeparam>
            <param name="name">The name of the command.</param>
            <returns>A command configurator that can be used to configure the command further.</returns>
        </member>
        <member name="M:Spectre.Console.Cli.IConfigurator.AddDelegate``1(System.String,System.Func{Spectre.Console.Cli.CommandContext,``0,System.Int32})">
            <summary>
            Adds a command that executes a delegate.
            </summary>
            <typeparam name="TSettings">The command setting type.</typeparam>
            <param name="name">The name of the command.</param>
            <param name="func">The delegate to execute as part of command execution.</param>
            <returns>A command configurator that can be used to configure the command further.</returns>
        </member>
        <member name="M:Spectre.Console.Cli.IConfigurator.AddAsyncDelegate``1(System.String,System.Func{Spectre.Console.Cli.CommandContext,``0,System.Threading.Tasks.Task{System.Int32}})">
            <summary>
            Adds a command that executes an async delegate.
            </summary>
            <typeparam name="TSettings">The command setting type.</typeparam>
            <param name="name">The name of the command.</param>
            <param name="func">The delegate to execute as part of command execution.</param>
            <returns>A command configurator that can be used to configure the command further.</returns>
        </member>
        <member name="M:Spectre.Console.Cli.IConfigurator.AddBranch``1(System.String,System.Action{Spectre.Console.Cli.IConfigurator{``0}})">
            <summary>
            Adds a command branch.
            </summary>
            <typeparam name="TSettings">The command setting type.</typeparam>
            <param name="name">The name of the command branch.</param>
            <param name="action">The command branch configurator.</param>
            <returns>A branch configurator that can be used to configure the branch further.</returns>
        </member>
        <member name="T:Spectre.Console.Cli.IConfigurator`1">
            <summary>
            Represents a configurator for specific settings.
            </summary>
            <typeparam name="TSettings">The command setting type.</typeparam>
        </member>
        <member name="M:Spectre.Console.Cli.IConfigurator`1.SetDescription(System.String)">
            <summary>
            Sets the description of the branch.
            </summary>
            <param name="description">The description of the branch.</param>
        </member>
        <member name="M:Spectre.Console.Cli.IConfigurator`1.AddExample(System.String[])">
            <summary>
            Adds an example of how to use the branch.
            </summary>
            <param name="args">The example arguments.</param>
        </member>
        <member name="M:Spectre.Console.Cli.IConfigurator`1.SetDefaultCommand``1">
            <summary>
            Adds a default command.
            </summary>
            <remarks>
            This is the command that will run if the user doesn't specify one on the command line.
            It must be able to execute successfully by itself ie. without requiring any command line
            arguments, flags or option values.
            </remarks>
            <typeparam name="TDefaultCommand">The default command type.</typeparam>
        </member>
        <member name="M:Spectre.Console.Cli.IConfigurator`1.HideBranch">
            <summary>
            Marks the branch as hidden.
            Hidden branches do not show up in help documentation or
            generated XML models.
            </summary>
        </member>
        <member name="M:Spectre.Console.Cli.IConfigurator`1.AddCommand``1(System.String)">
            <summary>
            Adds a command.
            </summary>
            <typeparam name="TCommand">The command type.</typeparam>
            <param name="name">The name of the command.</param>
            <returns>A command configurator that can be used to configure the command further.</returns>
        </member>
        <member name="M:Spectre.Console.Cli.IConfigurator`1.AddDelegate``1(System.String,System.Func{Spectre.Console.Cli.CommandContext,``0,System.Int32})">
            <summary>
            Adds a command that executes a delegate.
            </summary>
            <typeparam name="TDerivedSettings">The derived command setting type.</typeparam>
            <param name="name">The name of the command.</param>
            <param name="func">The delegate to execute as part of command execution.</param>
            <returns>A command configurator that can be used to configure the command further.</returns>
        </member>
        <member name="M:Spectre.Console.Cli.IConfigurator`1.AddAsyncDelegate``1(System.String,System.Func{Spectre.Console.Cli.CommandContext,``0,System.Threading.Tasks.Task{System.Int32}})">
            <summary>
            Adds a command that executes an async delegate.
            </summary>
            <typeparam name="TDerivedSettings">The derived command setting type.</typeparam>
            <param name="name">The name of the command.</param>
            <param name="func">The delegate to execute as part of command execution.</param>
            <returns>A command configurator that can be used to configure the command further.</returns>
        </member>
        <member name="M:Spectre.Console.Cli.IConfigurator`1.AddBranch``1(System.String,System.Action{Spectre.Console.Cli.IConfigurator{``0}})">
            <summary>
            Adds a command branch.
            </summary>
            <typeparam name="TDerivedSettings">The derived command setting type.</typeparam>
            <param name="name">The name of the command branch.</param>
            <param name="action">The command branch configuration.</param>
            <returns>A branch configurator that can be used to configure the branch further.</returns>
        </member>
        <member name="T:Spectre.Console.Cli.IFlagValue">
            <summary>
            Represents a flag with an optional value.
            </summary>
        </member>
        <member name="P:Spectre.Console.Cli.IFlagValue.IsSet">
            <summary>
            Gets or sets a value indicating whether or not the flag was set or not.
            </summary>
        </member>
        <member name="P:Spectre.Console.Cli.IFlagValue.Type">
            <summary>
            Gets the flag's element type.
            </summary>
        </member>
        <member name="P:Spectre.Console.Cli.IFlagValue.Value">
            <summary>
            Gets or sets the flag's value.
            </summary>
        </member>
        <member name="T:Spectre.Console.Cli.CommandValueResolver.SmartConverter">
            <summary>
            Convert inputs using the given <see cref="P:Spectre.Console.Cli.CommandValueResolver.SmartConverter.TypeConverter"/> and fallback to finding a constructor taking a single argument of the input type.
            </summary>
        </member>
        <member name="T:Spectre.Console.Cli.IMultiMap">
            <summary>
            Representation of a multi map.
            </summary>
        </member>
        <member name="M:Spectre.Console.Cli.IMultiMap.Add(System.ValueTuple{System.Object,System.Object})">
            <summary>
            Adds a key and a value to the multi map.
            </summary>
            <param name="pair">The pair to add.</param>
        </member>
        <member name="M:Spectre.Console.Cli.CommandExecutor.InternalParseCommandLineArguments(Spectre.Console.Cli.CommandModel,Spectre.Console.Cli.CommandAppSettings,System.Collections.Generic.IReadOnlyList{System.String})">
            <summary>
            Parse the command line arguments using the specified <see cref="T:Spectre.Console.Cli.CommandModel"/> and <see cref="T:Spectre.Console.Cli.CommandAppSettings"/>,
            returning the parser and tokenizer results.
            </summary>
            <returns>The parser and tokenizer results as a tuple.</returns>
        </member>
        <member name="F:Spectre.Console.Cli.Composer._renderMarkup">
            <summary>
            Whether to emit the markup styles, inline, when rendering the content.
            </summary>
        </member>
        <member name="T:Spectre.Console.Cli.Internal.Configuration.DefaultCommandConfigurator">
            <summary>
            Fluent configurator for the default command.
            </summary>
        </member>
        <member name="M:Spectre.Console.Cli.Internal.Configuration.DefaultCommandConfigurator.WithDescription(System.String)">
            <summary>
            Sets the description of the default command.
            </summary>
            <param name="description">The default command description.</param>
            <returns>The same <see cref="T:Spectre.Console.Cli.Internal.Configuration.DefaultCommandConfigurator"/> instance so that multiple calls can be chained.</returns>
        </member>
        <member name="M:Spectre.Console.Cli.Internal.Configuration.DefaultCommandConfigurator.WithData(System.Object)">
            <summary>
            Sets data that will be passed to the command via the <see cref="T:Spectre.Console.Cli.CommandContext"/>.
            </summary>
            <param name="data">The data to pass to the default command.</param>
            <returns>The same <see cref="T:Spectre.Console.Cli.Internal.Configuration.DefaultCommandConfigurator"/> instance so that multiple calls can be chained.</returns>
        </member>
        <member name="T:Spectre.Console.Cli.IConfiguration">
            <summary>
            Represents a configuration.
            </summary>
        </member>
        <member name="P:Spectre.Console.Cli.IConfiguration.Commands">
            <summary>
            Gets the configured commands.
            </summary>
        </member>
        <member name="P:Spectre.Console.Cli.IConfiguration.Settings">
            <summary>
            Gets the settings for the configuration.
            </summary>
        </member>
        <member name="P:Spectre.Console.Cli.IConfiguration.DefaultCommand">
            <summary>
            Gets the default command for the configuration.
            </summary>
        </member>
        <member name="P:Spectre.Console.Cli.IConfiguration.Examples">
            <summary>
            Gets all examples for the configuration.
            </summary>
        </member>
        <member name="M:Spectre.Console.Cli.DefaultPairDeconstructor.Spectre#Console#Cli#IPairDeconstructor#Deconstruct(Spectre.Console.Cli.ITypeResolver,System.Type,System.Type,System.String)">
            <inheritdoc/>
        </member>
        <member name="T:Spectre.Console.Cli.IPairDeconstructor">
            <summary>
            Represents a pair deconstructor.
            </summary>
        </member>
        <member name="M:Spectre.Console.Cli.IPairDeconstructor.Deconstruct(Spectre.Console.Cli.ITypeResolver,System.Type,System.Type,System.String)">
            <summary>
            Deconstructs the specified value into its components.
            </summary>
            <param name="resolver">The type resolver to use.</param>
            <param name="keyType">The key type.</param>
            <param name="valueType">The value type.</param>
            <param name="value">The value to deconstruct.</param>
            <returns>A deconstructed value.</returns>
        </member>
        <member name="M:Spectre.Console.Cli.CommandModel.GetApplicationName(System.String)">
            <summary>
            Gets the name of the application.
            If the provided <paramref name="applicationName"/> is not null or empty,
            it is returned. Otherwise the name of the current application
            is determined based on the executable file's name.
            </summary>
            <param name="applicationName">The optional name of the application.</param>
            <returns>
            The name of the application, or a default value of "?" if no valid application name can be determined.
            </returns>
        </member>
        <member name="T:Spectre.Console.Cli.ICommandContainer">
            <summary>
            Represents a command container.
            </summary>
        </member>
        <member name="P:Spectre.Console.Cli.ICommandContainer.Commands">
            <summary>
            Gets all commands in the container.
            </summary>
        </member>
        <member name="P:Spectre.Console.Cli.ICommandContainer.DefaultCommand">
            <summary>
            Gets the default command for the container.
            </summary>
            <remarks>
            Returns null if a default command has not been set.
            </remarks>
        </member>
        <member name="P:Spectre.Console.Cli.CommandTreeToken.HadSeparator">
            <summary>
            Gets or sets a value indicating whether a separater was encountered immediately before the <see cref="P:Spectre.Console.Cli.CommandTreeToken.Value"/>.
            </summary>
        </member>
        <member name="T:Spectre.Console.Cli.IRemainingArguments">
            <summary>
            Represents the remaining arguments.
            </summary>
        </member>
        <member name="P:Spectre.Console.Cli.IRemainingArguments.Parsed">
            <summary>
            Gets the parsed remaining arguments.
            </summary>
        </member>
        <member name="P:Spectre.Console.Cli.IRemainingArguments.Raw">
            <summary>
            Gets the raw, non-parsed remaining arguments.
            This is normally everything after the `--` delimiter.
            </summary>
        </member>
        <member name="T:Spectre.Console.Cli.ITypeRegistrar">
            <summary>
            Represents a type registrar.
            </summary>
        </member>
        <member name="M:Spectre.Console.Cli.ITypeRegistrar.Register(System.Type,System.Type)">
            <summary>
            Registers the specified service.
            </summary>
            <param name="service">The service.</param>
            <param name="implementation">The implementation.</param>
        </member>
        <member name="M:Spectre.Console.Cli.ITypeRegistrar.RegisterInstance(System.Type,System.Object)">
            <summary>
            Registers the specified instance.
            </summary>
            <param name="service">The service.</param>
            <param name="implementation">The implementation.</param>
        </member>
        <member name="M:Spectre.Console.Cli.ITypeRegistrar.RegisterLazy(System.Type,System.Func{System.Object})">
            <summary>
            Registers the specified instance lazily.
            </summary>
            <param name="service">The service.</param>
            <param name="factory">The factory that creates the implementation.</param>
        </member>
        <member name="M:Spectre.Console.Cli.ITypeRegistrar.Build">
            <summary>
            Builds the type resolver representing the registrations
            specified in the current instance.
            </summary>
            <returns>A type resolver.</returns>
        </member>
        <member name="T:Spectre.Console.Cli.ITypeRegistrarFrontend">
            <summary>
            Represents a user friendly frontend for a <see cref="T:Spectre.Console.Cli.ITypeRegistrar"/>.
            </summary>
        </member>
        <member name="M:Spectre.Console.Cli.ITypeRegistrarFrontend.Register``2">
            <summary>
            Registers the type with the type registrar as a singleton.
            </summary>
            <typeparam name="TService">The exposed service type.</typeparam>
            <typeparam name="TImplementation">The implementing type.</typeparam>
        </member>
        <member name="M:Spectre.Console.Cli.ITypeRegistrarFrontend.RegisterInstance``1(``0)">
            <summary>
            Registers the specified instance with the type registrar as a singleton.
            </summary>
            <typeparam name="TImplementation">The type of the instance.</typeparam>
            <param name="instance">The instance to register.</param>
        </member>
        <member name="M:Spectre.Console.Cli.ITypeRegistrarFrontend.RegisterInstance``2(``1)">
            <summary>
            Registers the specified instance with the type registrar as a singleton.
            </summary>
            <typeparam name="TService">The exposed service type.</typeparam>
            <typeparam name="TImplementation"> implementing type.</typeparam>
            <param name="instance">The instance to register.</param>
        </member>
        <member name="T:Spectre.Console.Cli.ITypeResolver">
            <summary>
            Represents a type resolver.
            </summary>
        </member>
        <member name="M:Spectre.Console.Cli.ITypeResolver.Resolve(System.Type)">
            <summary>
            Resolves an instance of the specified type.
            </summary>
            <param name="type">The type to resolve.</param>
            <returns>An instance of the specified type, or <c>null</c> if no registration for the specified type exists.</returns>
        </member>
        <member name="T:Spectre.Console.Cli.PairDeconstructor`2">
            <summary>
            Base class for a pair deconstructor.
            </summary>
            <typeparam name="TKey">The key type.</typeparam>
            <typeparam name="TValue">The value type.</typeparam>
        </member>
        <member name="M:Spectre.Console.Cli.PairDeconstructor`2.Deconstruct(System.String)">
            <summary>
            Deconstructs the provided <see cref="T:System.String"/> into a pair.
            </summary>
            <param name="value">The string to deconstruct into a pair.</param>
            <returns>The deconstructed pair.</returns>
        </member>
        <member name="M:Spectre.Console.Cli.PairDeconstructor`2.Spectre#Console#Cli#IPairDeconstructor#Deconstruct(Spectre.Console.Cli.ITypeResolver,System.Type,System.Type,System.String)">
            <inheritdoc/>
        </member>
        <member name="T:Spectre.Console.Cli.PairDeconstuctor`2">
            <summary>
            Base class for a pair deconstructor.
            </summary>
            <typeparam name="TKey">The key type.</typeparam>
            <typeparam name="TValue">The value type.</typeparam>
            <remarks>This class is misspelled, use <see cref="T:Spectre.Console.Cli.PairDeconstructor`2"/> instead.</remarks>
        </member>
        <member name="T:Spectre.Console.Cli.Resources.HelpProvider">
            <summary>
              A strongly-typed resource class, for looking up localized strings, etc.
            </summary>
        </member>
        <member name="P:Spectre.Console.Cli.Resources.HelpProvider.ResourceManager">
            <summary>
              Returns the cached ResourceManager instance used by this class.
            </summary>
        </member>
        <member name="P:Spectre.Console.Cli.Resources.HelpProvider.Culture">
            <summary>
              Overrides the current thread's CurrentUICulture property for all
              resource lookups using this strongly typed resource class.
            </summary>
        </member>
        <member name="P:Spectre.Console.Cli.Resources.HelpProvider.Arguments">
            <summary>
              Looks up a localized string similar to ARGUMENTS.
            </summary>
        </member>
        <member name="P:Spectre.Console.Cli.Resources.HelpProvider.Command">
            <summary>
              Looks up a localized string similar to COMMAND.
            </summary>
        </member>
        <member name="P:Spectre.Console.Cli.Resources.HelpProvider.Commands">
            <summary>
              Looks up a localized string similar to COMMANDS.
            </summary>
        </member>
        <member name="P:Spectre.Console.Cli.Resources.HelpProvider.Default">
            <summary>
              Looks up a localized string similar to DEFAULT.
            </summary>
        </member>
        <member name="P:Spectre.Console.Cli.Resources.HelpProvider.Description">
            <summary>
              Looks up a localized string similar to DESCRIPTION.
            </summary>
        </member>
        <member name="P:Spectre.Console.Cli.Resources.HelpProvider.Examples">
            <summary>
              Looks up a localized string similar to EXAMPLES.
            </summary>
        </member>
        <member name="P:Spectre.Console.Cli.Resources.HelpProvider.Options">
            <summary>
              Looks up a localized string similar to OPTIONS.
            </summary>
        </member>
        <member name="P:Spectre.Console.Cli.Resources.HelpProvider.PrintHelpDescription">
            <summary>
              Looks up a localized string similar to Prints help information..
            </summary>
        </member>
        <member name="P:Spectre.Console.Cli.Resources.HelpProvider.PrintVersionDescription">
            <summary>
              Looks up a localized string similar to Prints version information..
            </summary>
        </member>
        <member name="P:Spectre.Console.Cli.Resources.HelpProvider.Usage">
            <summary>
              Looks up a localized string similar to USAGE.
            </summary>
        </member>
        <member name="T:Spectre.Console.Cli.Unsafe.IUnsafeBranchConfigurator">
            <summary>
            Represents an unsafe configurator for a branch.
            </summary>
        </member>
        <member name="M:Spectre.Console.Cli.Unsafe.IUnsafeBranchConfigurator.SetDescription(System.String)">
            <summary>
            Sets the description of the branch.
            </summary>
            <param name="description">The description of the branch.</param>
        </member>
        <member name="M:Spectre.Console.Cli.Unsafe.IUnsafeBranchConfigurator.AddExample(System.String[])">
            <summary>
            Adds an example of how to use the branch.
            </summary>
            <param name="args">The example arguments.</param>
        </member>
        <member name="T:Spectre.Console.Cli.Unsafe.IUnsafeConfigurator">
            <summary>
            Represents an unsafe configurator.
            </summary>
        </member>
        <member name="M:Spectre.Console.Cli.Unsafe.IUnsafeConfigurator.AddCommand(System.String,System.Type)">
            <summary>
            Adds a command.
            </summary>
            <param name="name">The name of the command.</param>
            <param name="command">The command type.</param>
            <returns>A command configurator that can be used to configure the command further.</returns>
        </member>
        <member name="M:Spectre.Console.Cli.Unsafe.IUnsafeConfigurator.AddBranch(System.String,System.Type,System.Action{Spectre.Console.Cli.Unsafe.IUnsafeBranchConfigurator})">
            <summary>
            Adds a command branch.
            </summary>
            <param name="name">The name of the command branch.</param>
            <param name="settings">The command setting type.</param>
            <param name="action">The command branch configurator.</param>
            <returns>A branch configurator that can be used to configure the branch further.</returns>
        </member>
        <member name="T:Spectre.Console.Cli.Unsafe.UnsafeConfiguratorExtensions">
            <summary>
            Contains unsafe extensions for <see cref="T:Spectre.Console.Cli.IConfigurator"/>.
            </summary>
        </member>
        <member name="M:Spectre.Console.Cli.Unsafe.UnsafeConfiguratorExtensions.SafetyOff(Spectre.Console.Cli.IConfigurator)">
            <summary>
            Gets an <see cref="T:Spectre.Console.Cli.Unsafe.IUnsafeConfigurator"/> that allows
            composition of commands without type safety.
            </summary>
            <param name="configurator">The configurator.</param>
            <returns>An <see cref="T:Spectre.Console.Cli.Unsafe.IUnsafeConfigurator"/>.</returns>
        </member>
        <member name="M:Spectre.Console.Cli.Unsafe.UnsafeConfiguratorExtensions.SafetyOn(Spectre.Console.Cli.Unsafe.IUnsafeConfigurator)">
            <summary>
            Converts an <see cref="T:Spectre.Console.Cli.Unsafe.IUnsafeConfigurator"/> to
            a configurator with type safety.
            </summary>
            <param name="configurator">The configurator.</param>
            <returns>An <see cref="T:Spectre.Console.Cli.IConfigurator"/>.</returns>
        </member>
        <member name="M:Spectre.Console.Cli.Unsafe.UnsafeConfiguratorExtensions.SafetyOff``1(Spectre.Console.Cli.IConfigurator{``0})">
            <summary>
            Gets an <see cref="T:Spectre.Console.Cli.Unsafe.IUnsafeConfigurator"/> that allows
            composition of commands without type safety.
            </summary>
            <typeparam name="TSettings">The command settings.</typeparam>
            <param name="configurator">The configurator.</param>
            <returns>An <see cref="T:Spectre.Console.Cli.Unsafe.IUnsafeConfigurator"/>.</returns>
        </member>
        <member name="M:Spectre.Console.Cli.Unsafe.UnsafeConfiguratorExtensions.SafetyOn``1(Spectre.Console.Cli.Unsafe.IUnsafeBranchConfigurator)">
            <summary>
            Converts an <see cref="T:Spectre.Console.Cli.Unsafe.IUnsafeConfigurator"/> to
            a configurator with type safety.
            </summary>
            <typeparam name="TSettings">The command settings.</typeparam>
            <param name="configurator">The configurator.</param>
            <returns>An <see cref="T:Spectre.Console.Cli.IConfigurator`1"/>.</returns>
        </member>
        <member name="T:System.Diagnostics.CodeAnalysis.AllowNullAttribute">
            <summary>
            Specifies that null is allowed as an input even if the corresponding type disallows it.
            </summary>
        </member>
        <member name="T:System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute">
            <summary>
            Indicates that the specified method parameter expects a constant.
            </summary>
            <remarks>
            This can be used to inform tooling that a constant should be used as an argument for the annotated parameter.
            </remarks>
        </member>
        <member name="P:System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute.Min">
            <summary>
            Indicates the minimum bound of the expected constant, inclusive.
            </summary>
        </member>
        <member name="P:System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute.Max">
            <summary>
            Indicates the maximum bound of the expected constant, inclusive.
            </summary>
        </member>
        <member name="T:System.Diagnostics.CodeAnalysis.DisallowNullAttribute">
            <summary>
            Specifies that null is disallowed as an input even if the corresponding type allows it.
            </summary>
        </member>
        <member name="T:System.Diagnostics.CodeAnalysis.DoesNotReturnAttribute">
            <summary>
            Applied to a method that will never return under any circumstance.
            </summary>
        </member>
        <member name="T:System.Diagnostics.CodeAnalysis.DoesNotReturnIfAttribute">
            <summary>
            Specifies that the method will not return if the associated Boolean parameter is passed the specified value.
            </summary>
        </member>
        <member name="M:System.Diagnostics.CodeAnalysis.DoesNotReturnIfAttribute.#ctor(System.Boolean)">
            <summary>
            Initializes the attribute with the specified parameter value.
            </summary>
            <param name="parameterValue">
            The condition parameter value. Code after the method will be considered unreachable
            by diagnostics if the argument to the associated parameter matches this value.
            </param>
        </member>
        <member name="P:System.Diagnostics.CodeAnalysis.DoesNotReturnIfAttribute.ParameterValue">
            <summary>
            Gets the condition parameter value.
            </summary>
        </member>
        <member name="T:System.Diagnostics.CodeAnalysis.ExperimentalAttribute">
            <summary>
            Indicates that an API is experimental and it may change in the future.
            </summary>
            <remarks>
            This attribute allows call sites to be flagged with a diagnostic that indicates that an experimental
            feature is used. Authors can use this attribute to ship preview features in their assemblies.
            </remarks>
        </member>
        <member name="M:System.Diagnostics.CodeAnalysis.ExperimentalAttribute.#ctor(System.String)">
            <summary>
            Initializes a new instance of the <see cref="T:System.Diagnostics.CodeAnalysis.ExperimentalAttribute"/> class,
            specifying the ID that the compiler will use when reporting a use of the API the attribute applies to.
            </summary>
            <param name="diagnosticId">The ID that the compiler will use when reporting a use of the API the attribute applies to.</param>
        </member>
        <member name="P:System.Diagnostics.CodeAnalysis.ExperimentalAttribute.DiagnosticId">
            <summary>
            Gets the ID that the compiler will use when reporting a use of the API the attribute applies to.
            </summary>
            <value>The unique diagnostic ID.</value>
            <remarks>
            The diagnostic ID is shown in build output for warnings and errors.
            <para>This property represents the unique ID that can be used to suppress the warnings or errors, if needed.</para>
            </remarks>
        </member>
        <member name="P:System.Diagnostics.CodeAnalysis.ExperimentalAttribute.UrlFormat">
            <summary>
            Gets or sets the URL for corresponding documentation.
            The API accepts a format string instead of an actual URL, creating a generic URL that includes the diagnostic ID.
            </summary>
            <value>The format string that represents a URL to corresponding documentation.</value>
            <remarks>An example format string is <c>https://contoso.com/obsoletion-warnings/{0}</c>.</remarks>
        </member>
        <member name="T:System.Diagnostics.CodeAnalysis.MaybeNullAttribute">
            <summary>
            Specifies that an output may be null even if the corresponding type disallows it.
            </summary>
        </member>
        <member name="T:System.Diagnostics.CodeAnalysis.MaybeNullWhenAttribute">
            <summary>
            Specifies that when a method returns <see cref="P:System.Diagnostics.CodeAnalysis.MaybeNullWhenAttribute.ReturnValue"/>, the parameter may be null even if the corresponding type disallows it.
            </summary>
        </member>
        <member name="M:System.Diagnostics.CodeAnalysis.MaybeNullWhenAttribute.#ctor(System.Boolean)">
            <summary>
            Initializes the attribute with the specified return value condition.
            </summary>
            <param name="returnValue">The return value condition. If the method returns this value, the associated parameter may be null.</param>
        </member>
        <member name="P:System.Diagnostics.CodeAnalysis.MaybeNullWhenAttribute.ReturnValue">
            <summary>
            Gets the return value condition.
            </summary>
        </member>
        <member name="T:System.Diagnostics.CodeAnalysis.MemberNotNullAttribute">
            <summary>
            Specifies that the method or property will ensure that the listed field and property members have not-null values.
            </summary>
        </member>
        <member name="M:System.Diagnostics.CodeAnalysis.MemberNotNullAttribute.#ctor(System.String)">
            <summary>
            Initializes the attribute with a field or property member.
            </summary>
            <param name="member">The field or property member that is promised to be not-null.</param>
        </member>
        <member name="M:System.Diagnostics.CodeAnalysis.MemberNotNullAttribute.#ctor(System.String[])">
            <summary>
            Initializes the attribute with the list of field and property members.
            </summary>
            <param name="members">The list of field and property members that are promised to be not-null.</param>
        </member>
        <member name="P:System.Diagnostics.CodeAnalysis.MemberNotNullAttribute.Members">
            <summary>
            Gets field or property member names.
            </summary>
        </member>
        <member name="T:System.Diagnostics.CodeAnalysis.MemberNotNullWhenAttribute">
            <summary>
            Specifies that the method or property will ensure that the listed field and property
            members have not-null values when returning with the specified return value condition.
            </summary>
        </member>
        <member name="M:System.Diagnostics.CodeAnalysis.MemberNotNullWhenAttribute.#ctor(System.Boolean,System.String)">
            <summary>
            Initializes the attribute with the specified return value condition and a field or property member.
            </summary>
            <param name="returnValue">The return value condition. If the method returns this value, the associated parameter will not be null.</param>
            <param name="member">The field or property member that is promised to be not-null.</param>
        </member>
        <member name="M:System.Diagnostics.CodeAnalysis.MemberNotNullWhenAttribute.#ctor(System.Boolean,System.String[])">
            <summary>
            Initializes the attribute with the specified return value condition and list of field and property members.
            </summary>
            <param name="returnValue">The return value condition. If the method returns this value, the associated parameter will not be null.</param>
            <param name="members">The list of field and property members that are promised to be not-null.</param>
        </member>
        <member name="P:System.Diagnostics.CodeAnalysis.MemberNotNullWhenAttribute.ReturnValue">
            <summary>
            Gets the return value condition.
            </summary>
        </member>
        <member name="P:System.Diagnostics.CodeAnalysis.MemberNotNullWhenAttribute.Members">
            <summary>
            Gets field or property member names.
            </summary>
        </member>
        <member name="T:System.Diagnostics.CodeAnalysis.NotNullAttribute">
            <summary>
            Specifies that an output will not be null even if the corresponding type allows it.
            Specifies that an input argument was not null when the call returns.
            </summary>
        </member>
        <member name="T:System.Diagnostics.CodeAnalysis.NotNullIfNotNullAttribute">
            <summary>
            Specifies that the output will be non-null if the named parameter is non-null.
            </summary>
        </member>
        <member name="M:System.Diagnostics.CodeAnalysis.NotNullIfNotNullAttribute.#ctor(System.String)">
            <summary>
            Initializes the attribute with the associated parameter name.
            </summary>
            <param name="parameterName">The associated parameter name. The output will be non-null if the argument to the parameter specified is non-null.</param>
        </member>
        <member name="P:System.Diagnostics.CodeAnalysis.NotNullIfNotNullAttribute.ParameterName">
            <summary>
            Gets the associated parameter name.
            </summary>
        </member>
        <member name="T:System.Diagnostics.CodeAnalysis.NotNullWhenAttribute">
            <summary>
            Specifies that when a method returns <see cref="P:System.Diagnostics.CodeAnalysis.NotNullWhenAttribute.ReturnValue"/>, the parameter will not be null even if the corresponding type allows it.
            </summary>
        </member>
        <member name="M:System.Diagnostics.CodeAnalysis.NotNullWhenAttribute.#ctor(System.Boolean)">
            <summary>
            Initializes the attribute with the specified return value condition.
            </summary>
            <param name="returnValue">The return value condition. If the method returns this value, the associated parameter will not be null.</param>
        </member>
        <member name="P:System.Diagnostics.CodeAnalysis.NotNullWhenAttribute.ReturnValue">
            <summary>Gets the return value condition.</summary>
        </member>
        <member name="T:System.Diagnostics.CodeAnalysis.SetsRequiredMembersAttribute">
            <summary>
            Specifies that this constructor sets all required members for the current type,
            and callers do not need to set any required members themselves.
            </summary>
        </member>
        <member name="T:System.Diagnostics.CodeAnalysis.StringSyntaxAttribute">
            <summary>
            Specifies the syntax used in a string.
            </summary>
        </member>
        <member name="M:System.Diagnostics.CodeAnalysis.StringSyntaxAttribute.#ctor(System.String)">
            <summary>
            Initializes the <see cref="T:System.Diagnostics.CodeAnalysis.StringSyntaxAttribute"/> with the identifier of the syntax used.
            </summary>
            <param name="syntax">The syntax identifier.</param>
        </member>
        <member name="M:System.Diagnostics.CodeAnalysis.StringSyntaxAttribute.#ctor(System.String,System.Object[])">
            <summary>Initializes the <see cref="T:System.Diagnostics.CodeAnalysis.StringSyntaxAttribute"/> with the identifier of the syntax used.</summary>
            <param name="syntax">The syntax identifier.</param>
            <param name="arguments">Optional arguments associated with the specific syntax employed.</param>
        </member>
        <member name="P:System.Diagnostics.CodeAnalysis.StringSyntaxAttribute.Syntax">
            <summary>Gets the identifier of the syntax used.</summary>
        </member>
        <member name="P:System.Diagnostics.CodeAnalysis.StringSyntaxAttribute.Arguments">
            <summary>Optional arguments associated with the specific syntax employed.</summary>
        </member>
        <member name="F:System.Diagnostics.CodeAnalysis.StringSyntaxAttribute.CompositeFormat">
            <summary>The syntax identifier for strings containing composite formats for string formatting.</summary>
        </member>
        <member name="F:System.Diagnostics.CodeAnalysis.StringSyntaxAttribute.DateOnlyFormat">
            <summary>The syntax identifier for strings containing date format specifiers.</summary>
        </member>
        <member name="F:System.Diagnostics.CodeAnalysis.StringSyntaxAttribute.DateTimeFormat">
            <summary>The syntax identifier for strings containing date and time format specifiers.</summary>
        </member>
        <member name="F:System.Diagnostics.CodeAnalysis.StringSyntaxAttribute.EnumFormat">
            <summary>The syntax identifier for strings containing <see cref="T:System.Enum"/> format specifiers.</summary>
        </member>
        <member name="F:System.Diagnostics.CodeAnalysis.StringSyntaxAttribute.GuidFormat">
            <summary>The syntax identifier for strings containing <see cref="T:System.Guid"/> format specifiers.</summary>
        </member>
        <member name="F:System.Diagnostics.CodeAnalysis.StringSyntaxAttribute.Json">
            <summary>The syntax identifier for strings containing JavaScript Object Notation (JSON).</summary>
        </member>
        <member name="F:System.Diagnostics.CodeAnalysis.StringSyntaxAttribute.NumericFormat">
            <summary>The syntax identifier for strings containing numeric format specifiers.</summary>
        </member>
        <member name="F:System.Diagnostics.CodeAnalysis.StringSyntaxAttribute.Regex">
            <summary>The syntax identifier for strings containing regular expressions.</summary>
        </member>
        <member name="F:System.Diagnostics.CodeAnalysis.StringSyntaxAttribute.TimeOnlyFormat">
            <summary>The syntax identifier for strings containing time format specifiers.</summary>
        </member>
        <member name="F:System.Diagnostics.CodeAnalysis.StringSyntaxAttribute.TimeSpanFormat">
            <summary>The syntax identifier for strings containing <see cref="T:System.TimeSpan"/> format specifiers.</summary>
        </member>
        <member name="F:System.Diagnostics.CodeAnalysis.StringSyntaxAttribute.Uri">
            <summary>The syntax identifier for strings containing URIs.</summary>
        </member>
        <member name="F:System.Diagnostics.CodeAnalysis.StringSyntaxAttribute.Xml">
            <summary>The syntax identifier for strings containing XML.</summary>
        </member>
        <member name="T:System.Diagnostics.CodeAnalysis.UnscopedRefAttribute">
            <summary>
            Used to indicate a byref escapes and is not scoped.
            </summary>
            <remarks>
            <para>
            There are several cases where the C# compiler treats a <see langword="ref"/> as implicitly
            <see langword="scoped"/> - where the compiler does not allow the <see langword="ref"/> to escape the method.
            </para>
            <para>
            For example:
            <list type="number">
                <item><see langword="this"/> for <see langword="struct"/> instance methods.</item>
                <item><see langword="ref"/> parameters that refer to <see langword="ref"/> <see langword="struct"/> types.</item>
                <item><see langword="out"/> parameters.</item>
            </list>
            </para>
            <para>
            This attribute is used in those instances where the <see langword="ref"/> should be allowed to escape.
            </para>
            <para>
            Applying this attribute, in any form, has impact on consumers of the applicable API. It is necessary for
            API authors to understand the lifetime implications of applying this attribute and how it may impact their users.
            </para>
            </remarks>
        </member>
        <member name="T:System.Index">
            <summary>Represent a type can be used to index a collection either from the start or the end.</summary>
            <remarks>
            Index is used by the C# compiler to support the new index syntax
            <code>
            int[] someArray = new int[5] { 1, 2, 3, 4, 5 } ;
            int lastElement = someArray[^1]; // lastElement = 5
            </code>
            </remarks>
        </member>
        <member name="M:System.Index.#ctor(System.Int32,System.Boolean)">
            <summary>Construct an Index using a value and indicating if the index is from the start or from the end.</summary>
            <param name="value">The index value. it has to be zero or positive number.</param>
            <param name="fromEnd">Indicating if the index is from the start or from the end.</param>
            <remarks>
            If the Index constructed from the end, index value 1 means pointing at the last element and index value 0 means pointing at beyond last element.
            </remarks>
        </member>
        <member name="P:System.Index.Start">
            <summary>Create an Index pointing at first element.</summary>
        </member>
        <member name="P:System.Index.End">
            <summary>Create an Index pointing at beyond last element.</summary>
        </member>
        <member name="M:System.Index.FromStart(System.Int32)">
            <summary>Create an Index from the start at the position indicated by the value.</summary>
            <param name="value">The index value from the start.</param>
        </member>
        <member name="M:System.Index.FromEnd(System.Int32)">
            <summary>Create an Index from the end at the position indicated by the value.</summary>
            <param name="value">The index value from the end.</param>
        </member>
        <member name="P:System.Index.Value">
            <summary>Returns the index value.</summary>
        </member>
        <member name="P:System.Index.IsFromEnd">
            <summary>Indicates whether the index is from the start or the end.</summary>
        </member>
        <member name="M:System.Index.GetOffset(System.Int32)">
            <summary>Calculate the offset from the start using the giving collection length.</summary>
            <param name="length">The length of the collection that the Index will be used with. length has to be a positive value</param>
            <remarks>
            For performance reason, we don't validate the input length parameter and the returned offset value against negative values.
            we don't validate either the returned offset is greater than the input length.
            It is expected Index will be used with collections which always have non negative length/count. If the returned offset is negative and
            then used to index a collection will get out of range exception which will be same affect as the validation.
            </remarks>
        </member>
        <member name="M:System.Index.Equals(System.Object)">
            <summary>Indicates whether the current Index object is equal to another object of the same type.</summary>
            <param name="value">An object to compare with this object</param>
        </member>
        <member name="M:System.Index.Equals(System.Index)">
            <summary>Indicates whether the current Index object is equal to another Index object.</summary>
            <param name="other">An object to compare with this object</param>
        </member>
        <member name="M:System.Index.GetHashCode">
            <summary>Returns the hash code for this instance.</summary>
        </member>
        <member name="M:System.Index.op_Implicit(System.Int32)~System.Index">
            <summary>Converts integer number to an Index.</summary>
        </member>
        <member name="M:System.Index.ToString">
            <summary>Converts the value of the current Index object to its equivalent string representation.</summary>
        </member>
        <member name="T:System.Range">
            <summary>Represent a range has start and end indexes.</summary>
            <remarks>
            Range is used by the C# compiler to support the range syntax.
            <code>
            int[] someArray = new int[5] { 1, 2, 3, 4, 5 };
            int[] subArray1 = someArray[0..2]; // { 1, 2 }
            int[] subArray2 = someArray[1..^0]; // { 2, 3, 4, 5 }
            </code>
            </remarks>
        </member>
        <member name="P:System.Range.Start">
            <summary>Represent the inclusive start index of the Range.</summary>
        </member>
        <member name="P:System.Range.End">
            <summary>Represent the exclusive end index of the Range.</summary>
        </member>
        <member name="M:System.Range.#ctor(System.Index,System.Index)">
            <summary>Construct a Range object using the start and end indexes.</summary>
            <param name="start">Represent the inclusive start index of the range.</param>
            <param name="end">Represent the exclusive end index of the range.</param>
        </member>
        <member name="M:System.Range.Equals(System.Object)">
            <summary>Indicates whether the current Range object is equal to another object of the same type.</summary>
            <param name="value">An object to compare with this object</param>
        </member>
        <member name="M:System.Range.Equals(System.Range)">
            <summary>Indicates whether the current Range object is equal to another Range object.</summary>
            <param name="other">An object to compare with this object</param>
        </member>
        <member name="M:System.Range.GetHashCode">
            <summary>Returns the hash code for this instance.</summary>
        </member>
        <member name="M:System.Range.ToString">
            <summary>Converts the value of the current Range object to its equivalent string representation.</summary>
        </member>
        <member name="M:System.Range.StartAt(System.Index)">
            <summary>Create a Range object starting from start index to the end of the collection.</summary>
        </member>
        <member name="M:System.Range.EndAt(System.Index)">
            <summary>Create a Range object starting from first element in the collection to the end Index.</summary>
        </member>
        <member name="P:System.Range.All">
            <summary>Create a Range object starting from first element to the end.</summary>
        </member>
        <member name="M:System.Range.GetOffsetAndLength(System.Int32)">
            <summary>Calculate the start offset and length of range object using a collection length.</summary>
            <param name="length">The length of the collection that the range will be used with. length has to be a positive value.</param>
            <remarks>
            For performance reason, we don't validate the input length parameter against negative values.
            It is expected Range will be used with collections which always have non negative length/count.
            We validate the range is inside the length scope though.
            </remarks>
        </member>
        <member name="T:System.Runtime.CompilerServices.AsyncMethodBuilderAttribute">
            <summary>
            Indicates the type of the async method builder that should be used by a language compiler to
            build the attributed async method or to build the attributed type when used as the return type
            of an async method.
            </summary>
        </member>
        <member name="M:System.Runtime.CompilerServices.AsyncMethodBuilderAttribute.#ctor(System.Type)">
            <summary>Initializes the <see cref="T:System.Runtime.CompilerServices.AsyncMethodBuilderAttribute"/>.</summary>
            <param name="builderType">The <see cref="T:System.Type"/> of the associated builder.</param>
        </member>
        <member name="P:System.Runtime.CompilerServices.AsyncMethodBuilderAttribute.BuilderType">
            <summary>Gets the <see cref="T:System.Type"/> of the associated builder.</summary>
        </member>
        <member name="T:System.Runtime.CompilerServices.CallerArgumentExpressionAttribute">
            <summary>
            An attribute that allows parameters to receive the expression of other parameters.
            </summary>
        </member>
        <member name="M:System.Runtime.CompilerServices.CallerArgumentExpressionAttribute.#ctor(System.String)">
            <summary>
            Initializes a new instance of the <see cref="T:System.Runtime.CompilerServices.CallerArgumentExpressionAttribute"/> class.
            </summary>
            <param name="parameterName">The condition parameter value.</param>
        </member>
        <member name="P:System.Runtime.CompilerServices.CallerArgumentExpressionAttribute.ParameterName">
            <summary>
            Gets the parameter name the expression is retrieved from.
            </summary>
        </member>
        <member name="M:System.Runtime.CompilerServices.CollectionBuilderAttribute.#ctor(System.Type,System.String)">
            <summary>
            Initialize the attribute to refer to the <paramref name="methodName"/> method on the <paramref name="builderType"/> type.
            </summary>
            <param name="builderType">The type of the builder to use to construct the collection.</param>
            <param name="methodName">The name of the method on the builder to use to construct the collection.</param>
            <remarks>
            <paramref name="methodName"/> must refer to a static method that accepts a single parameter of
            type <see cref="T:System.ReadOnlySpan`1"/> and returns an instance of the collection being built containing
            a copy of the data from that span.  In future releases of .NET, additional patterns may be supported.
            </remarks>
        </member>
        <member name="P:System.Runtime.CompilerServices.CollectionBuilderAttribute.BuilderType">
            <summary>
            Gets the type of the builder to use to construct the collection.
            </summary>
        </member>
        <member name="P:System.Runtime.CompilerServices.CollectionBuilderAttribute.MethodName">
            <summary>
            Gets the name of the method on the builder to use to construct the collection.
            </summary>
            <remarks>
            This should match the metadata name of the target method.
            For example, this might be ".ctor" if targeting the type's constructor.
            </remarks>
        </member>
        <member name="T:System.Runtime.CompilerServices.CompilerFeatureRequiredAttribute">
            <summary>
            Indicates that compiler support for a particular feature is required for the location where this attribute is applied.
            </summary>
        </member>
        <member name="M:System.Runtime.CompilerServices.CompilerFeatureRequiredAttribute.#ctor(System.String)">
            <summary>
            Creates a new instance of the <see cref="T:System.Runtime.CompilerServices.CompilerFeatureRequiredAttribute"/> type.
            </summary>
            <param name="featureName">The name of the feature to indicate.</param>
        </member>
        <member name="P:System.Runtime.CompilerServices.CompilerFeatureRequiredAttribute.FeatureName">
            <summary>
            The name of the compiler feature.
            </summary>
        </member>
        <member name="P:System.Runtime.CompilerServices.CompilerFeatureRequiredAttribute.IsOptional">
            <summary>
            If true, the compiler can choose to allow access to the location where this attribute is applied if it does not understand <see cref="P:System.Runtime.CompilerServices.CompilerFeatureRequiredAttribute.FeatureName"/>.
            </summary>
        </member>
        <member name="F:System.Runtime.CompilerServices.CompilerFeatureRequiredAttribute.RefStructs">
            <summary>
            The <see cref="P:System.Runtime.CompilerServices.CompilerFeatureRequiredAttribute.FeatureName"/> used for the ref structs C# feature.
            </summary>
        </member>
        <member name="F:System.Runtime.CompilerServices.CompilerFeatureRequiredAttribute.RequiredMembers">
            <summary>
            The <see cref="P:System.Runtime.CompilerServices.CompilerFeatureRequiredAttribute.FeatureName"/> used for the required members C# feature.
            </summary>
        </member>
        <member name="T:System.Runtime.CompilerServices.InterpolatedStringHandlerArgumentAttribute">
            <summary>
            Indicates which arguments to a method involving an interpolated string handler should be passed to that handler.
            </summary>
        </member>
        <member name="M:System.Runtime.CompilerServices.InterpolatedStringHandlerArgumentAttribute.#ctor(System.String)">
            <summary>
            Initializes a new instance of the <see cref="T:System.Runtime.CompilerServices.InterpolatedStringHandlerArgumentAttribute"/> class.
            </summary>
            <param name="argument">The name of the argument that should be passed to the handler.</param>
            <remarks><see langword="null"/> may be used as the name of the receiver in an instance method.</remarks>
        </member>
        <member name="M:System.Runtime.CompilerServices.InterpolatedStringHandlerArgumentAttribute.#ctor(System.String[])">
            <summary>
            Initializes a new instance of the <see cref="T:System.Runtime.CompilerServices.InterpolatedStringHandlerArgumentAttribute"/> class.
            </summary>
            <param name="arguments">The names of the arguments that should be passed to the handler.</param>
            <remarks><see langword="null"/> may be used as the name of the receiver in an instance method.</remarks>
        </member>
        <member name="P:System.Runtime.CompilerServices.InterpolatedStringHandlerArgumentAttribute.Arguments">
            <summary>
            Gets the names of the arguments that should be passed to the handler.
            </summary>
            <remarks><see langword="null"/> may be used as the name of the receiver in an instance method.</remarks>
        </member>
        <member name="T:System.Runtime.CompilerServices.InterpolatedStringHandlerAttribute">
            <summary>
            Indicates the attributed type is to be used as an interpolated string handler.
            </summary>
        </member>
        <member name="T:System.Runtime.CompilerServices.IsExternalInit">
            <summary>
            Reserved to be used by the compiler for tracking metadata.
            This class should not be used by developers in source code.
            </summary>
        </member>
        <member name="T:System.Runtime.CompilerServices.ModuleInitializerAttribute">
             <summary>
             Used to indicate to the compiler that a method should be called
             in its containing module's initializer.
             </summary>
             <remarks>
             When one or more valid methods
             with this attribute are found in a compilation, the compiler will
             emit a module initializer which calls each of the attributed methods.
            
             Certain requirements are imposed on any method targeted with this attribute:
             - The method must be `static`.
             - The method must be an ordinary member method, as opposed to a property accessor, constructor, local function, etc.
             - The method must be parameterless.
             - The method must return `void`.
             - The method must not be generic or be contained in a generic type.
             - The method's effective accessibility must be `internal` or `public`.
            
             The specification for module initializers in the .NET runtime can be found here:
             https://github.com/dotnet/runtime/blob/main/docs/design/specs/Ecma-335-Augments.md#module-initializer
             </remarks>
        </member>
        <member name="T:System.Runtime.CompilerServices.OverloadResolutionPriorityAttribute">
            <summary>
            Specifies the priority of a member in overload resolution. When unspecified, the default priority is 0.
            </summary>
        </member>
        <member name="M:System.Runtime.CompilerServices.OverloadResolutionPriorityAttribute.#ctor(System.Int32)">
            <summary>
            Initializes a new instance of the <see cref="T:System.Runtime.CompilerServices.OverloadResolutionPriorityAttribute"/> class.
            </summary>
            <param name="priority">The priority of the attributed member. Higher numbers are prioritized, lower numbers are deprioritized. 0 is the default if no attribute is present.</param>
        </member>
        <member name="P:System.Runtime.CompilerServices.OverloadResolutionPriorityAttribute.Priority">
            <summary>
            The priority of the member.
            </summary>
        </member>
        <member name="T:System.Runtime.CompilerServices.ParamCollectionAttribute">
            <summary>
            Indicates that a method will allow a variable number of arguments in its invocation.
            </summary>
        </member>
        <member name="T:System.Runtime.CompilerServices.RequiredMemberAttribute">
            <summary>
            Specifies that a type has required members or that a member is required.
            </summary>
        </member>
        <member name="T:System.Runtime.CompilerServices.RequiresLocationAttribute">
            <summary>
            Reserved for use by a compiler for tracking metadata.
            This attribute should not be used by developers in source code.
            </summary>
        </member>
        <member name="T:System.Runtime.CompilerServices.SkipLocalsInitAttribute">
            <summary>
            Used to indicate to the compiler that the <c>.locals init</c> flag should not be set in method headers.
            </summary>
        </member>
        <member name="M:System.Runtime.Versioning.RequiresPreviewFeaturesAttribute.#ctor">
            <summary>
            Initializes a new instance of the <see cref="T:System.Runtime.Versioning.RequiresPreviewFeaturesAttribute"/> class.
            </summary>
        </member>
        <member name="M:System.Runtime.Versioning.RequiresPreviewFeaturesAttribute.#ctor(System.String)">
            <summary>
            Initializes a new instance of the <see cref="T:System.Runtime.Versioning.RequiresPreviewFeaturesAttribute"/> class with the specified message.
            </summary>
            <param name="message">An optional message associated with this attribute instance.</param>
        </member>
        <member name="P:System.Runtime.Versioning.RequiresPreviewFeaturesAttribute.Message">
            <summary>
            Returns the optional message associated with this attribute instance.
            </summary>
        </member>
        <member name="P:System.Runtime.Versioning.RequiresPreviewFeaturesAttribute.Url">
            <summary>
            Returns the optional URL associated with this attribute instance.
            </summary>
        </member>
    </members>
</doc>