1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
|
<?xml version="1.0"?>
<doc>
<assembly>
<name>Svg</name>
</assembly>
<members>
<member name="T:Svg.SvgImage">
<summary>
Represents and SVG image
</summary>
</member>
<member name="M:Svg.SvgImage.#ctor">
<summary>
Initializes a new instance of the <see cref="T:Svg.SvgImage"/> class.
</summary>
</member>
<member name="P:Svg.SvgImage.Location">
<summary>
Gets an <see cref="T:Svg.SvgPoint"/> representing the top left point of the rectangle.
</summary>
</member>
<member name="P:Svg.SvgImage.AspectRatio">
<summary>
Gets or sets the aspect of the viewport.
</summary>
<value></value>
</member>
<member name="P:Svg.SvgImage.Bounds">
<summary>
Gets the bounds of the element.
</summary>
<value>The bounds.</value>
</member>
<member name="M:Svg.SvgImage.Path(Svg.ISvgRenderer)">
<summary>
Gets the <see cref="T:System.Drawing.Drawing2D.GraphicsPath"/> for this element.
</summary>
</member>
<member name="M:Svg.SvgImage.Render(Svg.ISvgRenderer)">
<summary>
Renders the <see cref="T:Svg.SvgElement"/> and contents to the specified <see cref="T:System.Drawing.Graphics"/> object.
</summary>
</member>
<member name="T:Svg.SvgVisualElement">
<summary>
The class that all SVG elements should derive from when they are to be rendered.
</summary>
</member>
<member name="M:Svg.SvgVisualElement.Path(Svg.ISvgRenderer)">
<summary>
Gets the <see cref="T:System.Drawing.Drawing2D.GraphicsPath"/> for this element.
</summary>
</member>
<member name="P:Svg.SvgVisualElement.Bounds">
<summary>
Gets the bounds of the element.
</summary>
<value>The bounds.</value>
</member>
<member name="P:Svg.SvgVisualElement.Clip">
<summary>
Gets the associated <see cref="T:Svg.SvgClipPath"/> if one has been specified.
</summary>
</member>
<member name="P:Svg.SvgVisualElement.ClipPath">
<summary>
Gets the associated <see cref="T:Svg.SvgClipPath"/> if one has been specified.
</summary>
</member>
<member name="P:Svg.SvgVisualElement.ClipRule">
<summary>
Gets or sets the algorithm which is to be used to determine the clipping region.
</summary>
</member>
<member name="P:Svg.SvgVisualElement.Filter">
<summary>
Gets the associated <see cref="T:Svg.SvgClipPath"/> if one has been specified.
</summary>
</member>
<member name="P:Svg.SvgVisualElement.RequiresSmoothRendering">
<summary>
Gets or sets a value to determine if anti-aliasing should occur when the element is being rendered.
</summary>
</member>
<member name="M:Svg.SvgVisualElement.#ctor">
<summary>
Initializes a new instance of the <see cref="!:SvgGraphicsElement"/> class.
</summary>
</member>
<member name="M:Svg.SvgVisualElement.Render(Svg.ISvgRenderer)">
<summary>
Renders the <see cref="T:Svg.SvgElement"/> and contents to the specified <see cref="T:System.Drawing.Graphics"/> object.
</summary>
<param name="renderer">The <see cref="T:Svg.ISvgRenderer"/> object to render to.</param>
</member>
<member name="M:Svg.SvgVisualElement.RenderFill(Svg.ISvgRenderer)">
<summary>
Renders the fill of the <see cref="T:Svg.SvgVisualElement"/> to the specified <see cref="T:Svg.ISvgRenderer"/>
</summary>
<param name="renderer">The <see cref="T:Svg.ISvgRenderer"/> object to render to.</param>
</member>
<member name="M:Svg.SvgVisualElement.RenderStroke(Svg.ISvgRenderer)">
<summary>
Renders the stroke of the <see cref="T:Svg.SvgVisualElement"/> to the specified <see cref="T:Svg.ISvgRenderer"/>
</summary>
<param name="renderer">The <see cref="T:Svg.ISvgRenderer"/> object to render to.</param>
</member>
<member name="M:Svg.SvgVisualElement.SetClip(Svg.ISvgRenderer)">
<summary>
Sets the clipping region of the specified <see cref="T:Svg.ISvgRenderer"/>.
</summary>
<param name="renderer">The <see cref="T:Svg.ISvgRenderer"/> to have its clipping region set.</param>
</member>
<member name="M:Svg.SvgVisualElement.ResetClip(Svg.ISvgRenderer)">
<summary>
Resets the clipping region of the specified <see cref="T:Svg.ISvgRenderer"/> back to where it was before the <see cref="M:Svg.SvgVisualElement.SetClip(Svg.ISvgRenderer)"/> method was called.
</summary>
<param name="renderer">The <see cref="T:Svg.ISvgRenderer"/> to have its clipping region reset.</param>
</member>
<member name="M:Svg.SvgVisualElement.Svg#ISvgClipable#SetClip(Svg.ISvgRenderer)">
<summary>
Sets the clipping region of the specified <see cref="T:Svg.ISvgRenderer"/>.
</summary>
<param name="renderer">The <see cref="T:Svg.ISvgRenderer"/> to have its clipping region set.</param>
</member>
<member name="M:Svg.SvgVisualElement.Svg#ISvgClipable#ResetClip(Svg.ISvgRenderer)">
<summary>
Resets the clipping region of the specified <see cref="T:Svg.ISvgRenderer"/> back to where it was before the <see cref="M:Svg.SvgVisualElement.SetClip(Svg.ISvgRenderer)"/> method was called.
</summary>
<param name="renderer">The <see cref="T:Svg.ISvgRenderer"/> to have its clipping region reset.</param>
</member>
<member name="P:Svg.SvgVisualElement.Visible">
<summary>
Gets or sets a value to determine whether the element will be rendered.
</summary>
</member>
<member name="P:Svg.SvgVisualElement.Display">
<summary>
Gets or sets a value to determine whether the element will be rendered.
Needed to support SVG attribute display="none"
</summary>
</member>
<member name="P:Svg.SvgVisualElement.EnableBackground">
<summary>
Gets or sets the fill <see cref="T:Svg.SvgPaintServer"/> of this element.
</summary>
</member>
<member name="T:Svg.SvgCircle">
<summary>
An SVG element to render circles to the document.
</summary>
</member>
<member name="P:Svg.SvgCircle.Center">
<summary>
Gets the center point of the circle.
</summary>
<value>The center.</value>
</member>
<member name="P:Svg.SvgCircle.Bounds">
<summary>
Gets the bounds of the circle.
</summary>
<value>The rectangular bounds of the circle.</value>
</member>
<member name="P:Svg.SvgCircle.RequiresSmoothRendering">
<summary>
Gets a value indicating whether the circle requires anti-aliasing when being rendered.
</summary>
<value>
<c>true</c> if the circle requires anti-aliasing; otherwise, <c>false</c>.
</value>
</member>
<member name="M:Svg.SvgCircle.Path(Svg.ISvgRenderer)">
<summary>
Gets the <see cref="T:System.Drawing.Drawing2D.GraphicsPath"/> representing this element.
</summary>
</member>
<member name="M:Svg.SvgCircle.Render(Svg.ISvgRenderer)">
<summary>
Renders the circle to the specified <see cref="T:System.Drawing.Graphics"/> object.
</summary>
<param name="graphics">The graphics object.</param>
</member>
<member name="M:Svg.SvgCircle.#ctor">
<summary>
Initializes a new instance of the <see cref="T:Svg.SvgCircle"/> class.
</summary>
</member>
<member name="T:Svg.SvgEllipse">
<summary>
Represents and SVG ellipse element.
</summary>
</member>
<member name="P:Svg.SvgEllipse.RequiresSmoothRendering">
<summary>
Gets or sets a value to determine if anti-aliasing should occur when the element is being rendered.
</summary>
<value></value>
</member>
<member name="P:Svg.SvgEllipse.Bounds">
<summary>
Gets the bounds of the element.
</summary>
<value>The bounds.</value>
</member>
<member name="M:Svg.SvgEllipse.Path(Svg.ISvgRenderer)">
<summary>
Gets the <see cref="T:System.Drawing.Drawing2D.GraphicsPath"/> for this element.
</summary>
<value></value>
</member>
<member name="M:Svg.SvgEllipse.Render(Svg.ISvgRenderer)">
<summary>
Renders the <see cref="T:Svg.SvgElement"/> and contents to the specified <see cref="T:System.Drawing.Graphics"/> object.
</summary>
<param name="graphics">The <see cref="T:System.Drawing.Graphics"/> object to render to.</param>
</member>
<member name="M:Svg.SvgEllipse.#ctor">
<summary>
Initializes a new instance of the <see cref="T:Svg.SvgEllipse"/> class.
</summary>
</member>
<member name="T:Svg.SvgLine">
<summary>
Represents and SVG line element.
</summary>
</member>
<member name="P:Svg.SvgLine.MarkerEnd">
<summary>
Gets or sets the marker (end cap) of the path.
</summary>
</member>
<member name="P:Svg.SvgLine.MarkerMid">
<summary>
Gets or sets the marker (start cap) of the path.
</summary>
</member>
<member name="P:Svg.SvgLine.MarkerStart">
<summary>
Gets or sets the marker (start cap) of the path.
</summary>
</member>
<member name="M:Svg.SvgLine.RenderStroke(Svg.ISvgRenderer)">
<summary>
Renders the stroke of the <see cref="T:Svg.SvgVisualElement"/> to the specified <see cref="T:Svg.ISvgRenderer"/>
</summary>
<param name="renderer">The <see cref="T:Svg.ISvgRenderer"/> object to render to.</param>
</member>
<member name="T:Svg.SvgPolygon">
<summary>
SvgPolygon defines a closed shape consisting of a set of connected straight line segments.
</summary>
</member>
<member name="P:Svg.SvgPolygon.Points">
<summary>
The points that make up the SvgPolygon
</summary>
</member>
<member name="P:Svg.SvgPolygon.MarkerEnd">
<summary>
Gets or sets the marker (end cap) of the path.
</summary>
</member>
<member name="P:Svg.SvgPolygon.MarkerMid">
<summary>
Gets or sets the marker (start cap) of the path.
</summary>
</member>
<member name="P:Svg.SvgPolygon.MarkerStart">
<summary>
Gets or sets the marker (start cap) of the path.
</summary>
</member>
<member name="M:Svg.SvgPolygon.RenderStroke(Svg.ISvgRenderer)">
<summary>
Renders the stroke of the <see cref="T:Svg.SvgVisualElement"/> to the specified <see cref="T:Svg.ISvgRenderer"/>
</summary>
<param name="renderer">The <see cref="T:Svg.ISvgRenderer"/> object to render to.</param>
</member>
<member name="T:Svg.SvgPolyline">
<summary>
SvgPolyline defines a set of connected straight line segments. Typically, <see cref="T:Svg.SvgPolyline"/> defines open shapes.
</summary>
</member>
<member name="P:Svg.SvgPolyline.MarkerEnd">
<summary>
Gets or sets the marker (end cap) of the path.
</summary>
</member>
<member name="P:Svg.SvgPolyline.MarkerMid">
<summary>
Gets or sets the marker (start cap) of the path.
</summary>
</member>
<member name="P:Svg.SvgPolyline.MarkerStart">
<summary>
Gets or sets the marker (start cap) of the path.
</summary>
</member>
<member name="M:Svg.SvgPolyline.RenderStroke(Svg.ISvgRenderer)">
<summary>
Renders the stroke of the <see cref="T:Svg.SvgVisualElement"/> to the specified <see cref="T:Svg.ISvgRenderer"/>
</summary>
<param name="renderer">The <see cref="T:Svg.ISvgRenderer"/> object to render to.</param>
</member>
<member name="T:Svg.ISvgClipable">
<summary>
Defines the methods and properties that an <see cref="T:Svg.SvgElement"/> must implement to support clipping.
</summary>
</member>
<member name="P:Svg.ISvgClipable.ClipPath">
<summary>
Gets or sets the ID of the associated <see cref="T:Svg.SvgClipPath"/> if one has been specified.
</summary>
</member>
<member name="P:Svg.ISvgClipable.ClipRule">
<summary>
Specifies the rule used to define the clipping region when the element is within a <see cref="T:Svg.SvgClipPath"/>.
</summary>
</member>
<member name="M:Svg.ISvgClipable.SetClip(Svg.ISvgRenderer)">
<summary>
Sets the clipping region of the specified <see cref="T:Svg.ISvgRenderer"/>.
</summary>
<param name="renderer">The <see cref="T:Svg.ISvgRenderer"/> to have its clipping region set.</param>
</member>
<member name="M:Svg.ISvgClipable.ResetClip(Svg.ISvgRenderer)">
<summary>
Resets the clipping region of the specified <see cref="T:Svg.ISvgRenderer"/> back to where it was before the <see cref="M:Svg.ISvgClipable.SetClip(Svg.ISvgRenderer)"/> method was called.
</summary>
<param name="renderer">The <see cref="T:Svg.ISvgRenderer"/> to have its clipping region reset.</param>
</member>
<member name="T:Svg.SvgClipRule">
<summary>
Indicates the algorithm which is to be used to determine the clipping region.
</summary>
<remarks>
<para>This rule determines the "insideness" of a point on the canvas by drawing a ray from
that point to infinity in any direction and then examining the places where a segment of the
shape crosses the ray.</para>
</remarks>
</member>
<member name="F:Svg.SvgClipRule.NonZero">
<summary>
This rule determines the "insideness" of a point on the canvas by drawing a ray from that point to infinity in any direction and then examining the places where a segment of the shape crosses the ray. Starting with a count of zero, add one each time a path segment crosses the ray from left to right and subtract one each time a path segment crosses the ray from right to left. After counting the crossings, if the result is zero then the point is outside the path. Otherwise, it is inside.
</summary>
</member>
<member name="F:Svg.SvgClipRule.EvenOdd">
<summary>
This rule determines the "insideness" of a point on the canvas by drawing a ray from that point to infinity in any direction and counting the number of path segments from the given shape that the ray crosses. If this number is odd, the point is inside; if even, the point is outside.
</summary>
</member>
<member name="T:Svg.SvgClipPath">
<summary>
Defines a path that can be used by other <see cref="T:Svg.ISvgClipable"/> elements.
</summary>
</member>
<member name="P:Svg.SvgClipPath.ClipPathUnits">
<summary>
Specifies the coordinate system for the clipping path.
</summary>
</member>
<member name="M:Svg.SvgClipPath.#ctor">
<summary>
Initializes a new instance of the <see cref="T:Svg.SvgClipPath"/> class.
</summary>
</member>
<member name="M:Svg.SvgClipPath.GetClipRegion(Svg.SvgVisualElement)">
<summary>
Gets this <see cref="T:Svg.SvgClipPath"/>'s region to be used as a clipping region.
</summary>
<returns>A new <see cref="T:System.Drawing.Region"/> containing the <see cref="T:System.Drawing.Region"/> to be used for clipping.</returns>
</member>
<member name="M:Svg.SvgClipPath.CombinePaths(System.Drawing.Drawing2D.GraphicsPath,Svg.SvgElement)">
<summary>
</summary>
<param name="region"></param>
<param name="element"></param>
</member>
<member name="M:Svg.SvgClipPath.AddElement(Svg.SvgElement,System.Int32)">
<summary>
Called by the underlying <see cref="T:Svg.SvgElement"/> when an element has been added to the
<see cref="!:Children"/> collection.
</summary>
<param name="child">The <see cref="T:Svg.SvgElement"/> that has been added.</param>
<param name="index">An <see cref="T:System.Int32"/> representing the index where the element was added to the collection.</param>
</member>
<member name="M:Svg.SvgClipPath.RemoveElement(Svg.SvgElement)">
<summary>
Called by the underlying <see cref="T:Svg.SvgElement"/> when an element has been removed from the
<see cref="P:Svg.SvgElement.Children"/> collection.
</summary>
<param name="child">The <see cref="T:Svg.SvgElement"/> that has been removed.</param>
</member>
<member name="M:Svg.SvgClipPath.Render(Svg.ISvgRenderer)">
<summary>
Renders the <see cref="T:Svg.SvgElement"/> and contents to the specified <see cref="T:Svg.ISvgRenderer"/> object.
</summary>
<param name="renderer">The <see cref="T:Svg.ISvgRenderer"/> object to render to.</param>
</member>
<member name="T:Svg.SvgPointCollection">
<summary>
Represents a list of <see cref="!:SvgUnits"/> used with the <see cref="T:Svg.SvgPolyline"/> and <see cref="T:Svg.SvgPolygon"/>.
</summary>
</member>
<member name="T:Svg.SvgPointCollectionConverter">
<summary>
A class to convert string into <see cref="T:Svg.SvgUnitCollection"/> instances.
</summary>
</member>
<member name="M:Svg.SvgPointCollectionConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object)">
<summary>
Converts the given object to the type of this converter, using the specified context and culture information.
</summary>
<param name="context">An <see cref="T:System.ComponentModel.ITypeDescriptorContext"/> that provides a format context.</param>
<param name="culture">The <see cref="T:System.Globalization.CultureInfo"/> to use as the current culture.</param>
<param name="value">The <see cref="T:System.Object"/> to convert.</param>
<returns>
An <see cref="T:System.Object"/> that represents the converted value.
</returns>
<exception cref="T:System.NotSupportedException">The conversion cannot be performed. </exception>
</member>
<member name="T:Svg.SvgTextDecoration">
<summary>This property describes decorations that are added to the text of an element. Conforming SVG Viewers are not required to support the blink value.</summary>
</member>
<member name="F:Svg.SvgTextDecoration.Inherit">
<summary>The value is inherited from the parent element.</summary>
</member>
<member name="F:Svg.SvgTextDecoration.None">
<summary>The text is not decorated</summary>
</member>
<member name="F:Svg.SvgTextDecoration.Underline">
<summary>The text is underlined.</summary>
</member>
<member name="F:Svg.SvgTextDecoration.Overline">
<summary>The text is overlined.</summary>
</member>
<member name="F:Svg.SvgTextDecoration.LineThrough">
<summary>The text is struck through.</summary>
</member>
<member name="F:Svg.SvgTextDecoration.Blink">
<summary>The text will blink.</summary>
</member>
<member name="T:Svg.SvgTextLengthAdjust">
<summary>Indicates the type of adjustments which the user agent shall make to make the rendered length of the text match the value specified on the ‘textLength’ attribute.</summary>
<remarks>
<para>The user agent is required to achieve correct start and end positions for the text strings, but the locations of intermediate glyphs are not predictable because user agents might employ advanced algorithms to stretch or compress text strings in order to balance correct start and end positioning with optimal typography.</para>
<para>Note that, for a text string that contains n characters, the adjustments to the advance values often occur only for n−1 characters (see description of attribute ‘textLength’), whereas stretching or compressing of the glyphs will be applied to all n characters.</para>
</remarks>
</member>
<member name="F:Svg.SvgTextLengthAdjust.Spacing">
<summary>Indicates that only the advance values are adjusted. The glyphs themselves are not stretched or compressed.</summary>
</member>
<member name="F:Svg.SvgTextLengthAdjust.SpacingAndGlyphs">
<summary>Indicates that the advance values are adjusted and the glyphs themselves stretched or compressed in one axis (i.e., a direction parallel to the inline-progression-direction).</summary>
</member>
<member name="T:Svg.SvgTextPathMethod">
<summary>Indicates the method by which text should be rendered along the path.</summary>
</member>
<member name="F:Svg.SvgTextPathMethod.Align">
<summary>Indicates that the glyphs should be rendered using simple 2x3 transformations such that there is no stretching/warping of the glyphs. Typically, supplemental rotation, scaling and translation transformations are done for each glyph to be rendered. As a result, with align, fonts where the glyphs are designed to be connected (e.g., cursive fonts), the connections may not align properly when text is rendered along a path.</summary>
</member>
<member name="F:Svg.SvgTextPathMethod.Stretch">
<summary>Indicates that the glyph outlines will be converted into paths, and then all end points and control points will be adjusted to be along the perpendicular vectors from the path, thereby stretching and possibly warping the glyphs. With this approach, connected glyphs, such as in cursive scripts, will maintain their connections.</summary>
</member>
<member name="T:Svg.SvgTextPathSpacing">
<summary>Indicates how the user agent should determine the spacing between glyphs that are to be rendered along a path.</summary>
</member>
<member name="F:Svg.SvgTextPathSpacing.Exact">
<summary>Indicates that the glyphs should be rendered exactly according to the spacing rules as specified in Text on a path layout rules.</summary>
</member>
<member name="F:Svg.SvgTextPathSpacing.Auto">
<summary>Indicates that the user agent should use text-on-a-path layout algorithms to adjust the spacing between glyphs in order to achieve visually appealing results.</summary>
</member>
<member name="T:Svg.Document_Structure.SvgSymbol">
<summary>
An element used to group SVG shapes.
</summary>
</member>
<member name="P:Svg.Document_Structure.SvgSymbol.ViewBox">
<summary>
Gets or sets the viewport of the element.
</summary>
<value></value>
</member>
<member name="P:Svg.Document_Structure.SvgSymbol.AspectRatio">
<summary>
Gets or sets the aspect of the viewport.
</summary>
<value></value>
</member>
<member name="M:Svg.Document_Structure.SvgSymbol.Path(Svg.ISvgRenderer)">
<summary>
Gets the <see cref="!:GraphicsPath"/> for this element.
</summary>
<value></value>
</member>
<member name="P:Svg.Document_Structure.SvgSymbol.Bounds">
<summary>
Gets the bounds of the element.
</summary>
<value>The bounds.</value>
</member>
<member name="M:Svg.Document_Structure.SvgSymbol.PushTransforms(Svg.ISvgRenderer)">
<summary>
Applies the required transforms to <see cref="T:Svg.ISvgRenderer"/>.
</summary>
<param name="renderer">The <see cref="T:Svg.ISvgRenderer"/> to be transformed.</param>
</member>
<member name="T:Svg.FilterEffects.SvgColourMatrix">
<summary>
Note: this is not used in calculations to bitmap - used only to allow for svg xml output
</summary>
</member>
<member name="P:Svg.FilterEffects.SvgColourMatrix.Type">
<summary>
matrix | saturate | hueRotate | luminanceToAlpha
Indicates the type of matrix operation. The keyword 'matrix' indicates that a full 5x4 matrix of values will be provided. The other keywords represent convenience shortcuts to allow commonly used color operations to be performed without specifying a complete matrix. If attribute ‘type’ is not specified, then the effect is as if a value of matrix were specified.
Note: this is not used in calculations to bitmap - used only to allow for svg xml output
</summary>
</member>
<!-- Badly formed XML comment ignored for member "P:Svg.FilterEffects.SvgColourMatrix.Values" -->
<member name="T:Svg.FilterEffects.SvgOffset">
<summary>
Note: this is not used in calculations to bitmap - used only to allow for svg xml output
</summary>
</member>
<member name="P:Svg.FilterEffects.SvgOffset.Dx">
<summary>
The amount to offset the input graphic along the x-axis. The offset amount is expressed in the coordinate system established by attribute ‘primitiveUnits’ on the ‘filter’ element.
If the attribute is not specified, then the effect is as if a value of 0 were specified.
Note: this is not used in calculations to bitmap - used only to allow for svg xml output
</summary>
</member>
<member name="P:Svg.FilterEffects.SvgOffset.Dy">
<summary>
The amount to offset the input graphic along the y-axis. The offset amount is expressed in the coordinate system established by attribute ‘primitiveUnits’ on the ‘filter’ element.
If the attribute is not specified, then the effect is as if a value of 0 were specified.
Note: this is not used in calculations to bitmap - used only to allow for svg xml output
</summary>
</member>
<member name="T:Svg.FilterEffects.SvgFilter">
<summary>
A filter effect consists of a series of graphics operations that are applied to a given source graphic to produce a modified graphical result.
</summary>
</member>
<member name="P:Svg.FilterEffects.SvgFilter.X">
<summary>
Gets or sets the position where the left point of the filter.
</summary>
</member>
<member name="P:Svg.FilterEffects.SvgFilter.Y">
<summary>
Gets or sets the position where the top point of the filter.
</summary>
</member>
<member name="P:Svg.FilterEffects.SvgFilter.Width">
<summary>
Gets or sets the width of the resulting filter graphic.
</summary>
</member>
<member name="P:Svg.FilterEffects.SvgFilter.Height">
<summary>
Gets or sets the height of the resulting filter graphic.
</summary>
</member>
<member name="P:Svg.FilterEffects.SvgFilter.ColorInterpolationFilters">
<summary>
Gets or sets the color-interpolation-filters of the resulting filter graphic.
NOT currently mapped through to bitmap
</summary>
</member>
<member name="M:Svg.FilterEffects.SvgFilter.#ctor">
<summary>
Initializes a new instance of the <see cref="T:Svg.FilterEffects.SvgFilter"/> class.
</summary>
</member>
<member name="M:Svg.FilterEffects.SvgFilter.Render(Svg.ISvgRenderer)">
<summary>
Renders the <see cref="T:Svg.SvgElement"/> and contents to the specified <see cref="T:Svg.ISvgRenderer"/> object.
</summary>
<param name="renderer">The <see cref="T:Svg.ISvgRenderer"/> object to render to.</param>
</member>
<member name="M:Svg.FilterEffects.SvgFilter.Clone">
<summary>
Creates a new object that is a copy of the current instance.
</summary>
<returns>
A new object that is a copy of this instance.
</returns>
</member>
<member name="P:Svg.FilterEffects.SvgGaussianBlur.StdDeviation">
<summary>
Gets or sets the radius of the blur (only allows for one value - not the two specified in the SVG Spec)
</summary>
</member>
<member name="T:Svg.SvgFallbackPaintServer">
<summary>
A wrapper for a paint server has a fallback if the primary server doesn't work.
</summary>
</member>
<member name="T:Svg.SvgElement">
<summary>
The base class of which all SVG elements are derived from.
</summary>
</member>
<member name="P:Svg.SvgElement.IsPathDirty">
<summary>
Gets or sets a value indicating whether this element's <see cref="!:Path"/> is dirty.
</summary>
<value>
<c>true</c> if the path is dirty; otherwise, <c>false</c>.
</value>
</member>
<member name="P:Svg.SvgElement.Fill">
<summary>
Gets or sets the fill <see cref="T:Svg.SvgPaintServer"/> of this element.
</summary>
</member>
<member name="P:Svg.SvgElement.Stroke">
<summary>
Gets or sets the <see cref="T:Svg.SvgPaintServer"/> to be used when rendering a stroke around this element.
</summary>
</member>
<member name="P:Svg.SvgElement.FillOpacity">
<summary>
Gets or sets the opacity of this element's <see cref="P:Svg.SvgElement.Fill"/>.
</summary>
</member>
<member name="P:Svg.SvgElement.StrokeWidth">
<summary>
Gets or sets the width of the stroke (if the <see cref="P:Svg.SvgElement.Stroke"/> property has a valid value specified.
</summary>
</member>
<member name="P:Svg.SvgElement.StrokeOpacity">
<summary>
Gets or sets the opacity of the stroke, if the <see cref="P:Svg.SvgElement.Stroke"/> property has been specified. 1.0 is fully opaque; 0.0 is transparent.
</summary>
</member>
<member name="P:Svg.SvgElement.StopColor">
<summary>
Gets or sets the colour of the gradient stop.
</summary>
<remarks>Apparently this can be set on non-sensical elements. Don't ask; just check the tests.</remarks>
</member>
<member name="P:Svg.SvgElement.Opacity">
<summary>
Gets or sets the opacity of the element. 1.0 is fully opaque; 0.0 is transparent.
</summary>
</member>
<member name="P:Svg.SvgElement.FontFamily">
<summary>
Indicates which font family is to be used to render the text.
</summary>
</member>
<member name="P:Svg.SvgElement.FontSize">
<summary>
Refers to the size of the font from baseline to baseline when multiple lines of text are set solid in a multiline layout environment.
</summary>
</member>
<member name="P:Svg.SvgElement.FontStyle">
<summary>
Refers to the style of the font.
</summary>
</member>
<member name="P:Svg.SvgElement.FontVariant">
<summary>
Refers to the varient of the font.
</summary>
</member>
<member name="P:Svg.SvgElement.TextDecoration">
<summary>
Refers to the boldness of the font.
</summary>
</member>
<member name="P:Svg.SvgElement.FontWeight">
<summary>
Refers to the boldness of the font.
</summary>
</member>
<member name="P:Svg.SvgElement.Font">
<summary>
Set all font information.
</summary>
</member>
<member name="M:Svg.SvgElement.GetFont(Svg.ISvgRenderer)">
<summary>
Get the font information based on data stored with the text object or inherited from the parent.
</summary>
<returns></returns>
</member>
<member name="P:Svg.SvgElement.ElementName">
<summary>
Gets the name of the element.
</summary>
</member>
<member name="P:Svg.SvgElement.Color">
<summary>
Gets or sets the color <see cref="T:Svg.SvgPaintServer"/> of this element which drives the currentColor property.
</summary>
</member>
<member name="F:Svg.SvgElement._content">
<summary>
Gets or sets the content of the element.
</summary>
</member>
<member name="P:Svg.SvgElement.Events">
<summary>
Gets an <see cref="T:System.ComponentModel.EventHandlerList"/> of all events belonging to the element.
</summary>
</member>
<member name="E:Svg.SvgElement.Load">
<summary>
Occurs when the element is loaded.
</summary>
</member>
<member name="P:Svg.SvgElement.Children">
<summary>
Gets a collection of all child <see cref="!:SvgElements"/>.
</summary>
</member>
<member name="M:Svg.SvgElement.HasChildren">
<summary>
Gets a value to determine whether the element has children.
</summary>
</member>
<member name="P:Svg.SvgElement.Parent">
<summary>
Gets the parent <see cref="T:Svg.SvgElement"/>.
</summary>
<value>An <see cref="T:Svg.SvgElement"/> if one exists; otherwise null.</value>
</member>
<member name="P:Svg.SvgElement.OwnerDocument">
<summary>
Gets the owner <see cref="T:Svg.SvgDocument"/>.
</summary>
</member>
<member name="P:Svg.SvgElement.Attributes">
<summary>
Gets a collection of element attributes.
</summary>
</member>
<member name="P:Svg.SvgElement.CustomAttributes">
<summary>
Gets a collection of custom attributes
</summary>
</member>
<member name="M:Svg.SvgElement.PushTransforms(Svg.ISvgRenderer)">
<summary>
Applies the required transforms to <see cref="T:Svg.ISvgRenderer"/>.
</summary>
<param name="renderer">The <see cref="T:Svg.ISvgRenderer"/> to be transformed.</param>
</member>
<member name="M:Svg.SvgElement.PopTransforms(Svg.ISvgRenderer)">
<summary>
Removes any previously applied transforms from the specified <see cref="T:Svg.ISvgRenderer"/>.
</summary>
<param name="renderer">The <see cref="T:Svg.ISvgRenderer"/> that should have transforms removed.</param>
</member>
<member name="M:Svg.SvgElement.Svg#ISvgTransformable#PushTransforms(Svg.ISvgRenderer)">
<summary>
Applies the required transforms to <see cref="T:Svg.ISvgRenderer"/>.
</summary>
<param name="renderer">The <see cref="T:Svg.ISvgRenderer"/> to be transformed.</param>
</member>
<member name="M:Svg.SvgElement.Svg#ISvgTransformable#PopTransforms(Svg.ISvgRenderer)">
<summary>
Removes any previously applied transforms from the specified <see cref="T:Svg.ISvgRenderer"/>.
</summary>
<param name="renderer">The <see cref="T:Svg.ISvgRenderer"/> that should have transforms removed.</param>
</member>
<member name="P:Svg.SvgElement.Transforms">
<summary>
Gets or sets the element transforms.
</summary>
<value>The transforms.</value>
</member>
<member name="P:Svg.SvgElement.ID">
<summary>
Gets or sets the ID of the element.
</summary>
<exception cref="T:Svg.SvgException">The ID is already used within the <see cref="T:Svg.SvgDocument"/>.</exception>
</member>
<member name="P:Svg.SvgElement.SpaceHandling">
<summary>
Gets or sets the text anchor.
</summary>
<value>The text anchor.</value>
</member>
<member name="M:Svg.SvgElement.ForceUniqueID(System.String)">
<summary>
Only used by the ID Manager
</summary>
<param name="newID"></param>
</member>
<member name="M:Svg.SvgElement.AddElement(Svg.SvgElement,System.Int32)">
<summary>
Called by the underlying <see cref="T:Svg.SvgElement"/> when an element has been added to the
<see cref="P:Svg.SvgElement.Children"/> collection.
</summary>
<param name="child">The <see cref="T:Svg.SvgElement"/> that has been added.</param>
<param name="index">An <see cref="T:System.Int32"/> representing the index where the element was added to the collection.</param>
</member>
<member name="E:Svg.SvgElement.ChildAdded">
<summary>
Fired when an Element was added to the children of this Element
</summary>
</member>
<member name="M:Svg.SvgElement.OnElementAdded(Svg.SvgElement,System.Int32)">
<summary>
Calls the <see cref="M:Svg.SvgElement.AddElement(Svg.SvgElement,System.Int32)"/> method with the specified parameters.
</summary>
<param name="child">The <see cref="T:Svg.SvgElement"/> that has been added.</param>
<param name="index">An <see cref="T:System.Int32"/> representing the index where the element was added to the collection.</param>
</member>
<member name="M:Svg.SvgElement.RemoveElement(Svg.SvgElement)">
<summary>
Called by the underlying <see cref="T:Svg.SvgElement"/> when an element has been removed from the
<see cref="P:Svg.SvgElement.Children"/> collection.
</summary>
<param name="child">The <see cref="T:Svg.SvgElement"/> that has been removed.</param>
</member>
<member name="M:Svg.SvgElement.OnElementRemoved(Svg.SvgElement)">
<summary>
Calls the <see cref="M:Svg.SvgElement.RemoveElement(Svg.SvgElement)"/> method with the specified <see cref="T:Svg.SvgElement"/> as the parameter.
</summary>
<param name="child">The <see cref="T:Svg.SvgElement"/> that has been removed.</param>
</member>
<member name="M:Svg.SvgElement.#ctor">
<summary>
Initializes a new instance of the <see cref="T:Svg.SvgElement"/> class.
</summary>
</member>
<member name="M:Svg.SvgElement.RenderElement(Svg.ISvgRenderer)">
<summary>
Renders this element to the <see cref="T:Svg.ISvgRenderer"/>.
</summary>
<param name="renderer">The <see cref="T:Svg.ISvgRenderer"/> that the element should use to render itself.</param>
</member>
<member name="M:Svg.SvgElement.ShouldWriteElement">
<summary>Derrived classes may decide that the element should not be written. For example, the text element shouldn't be written if it's empty.</summary>
</member>
<member name="M:Svg.SvgElement.Render(Svg.ISvgRenderer)">
<summary>
Renders the <see cref="T:Svg.SvgElement"/> and contents to the specified <see cref="T:Svg.ISvgRenderer"/> object.
</summary>
<param name="renderer">The <see cref="T:Svg.ISvgRenderer"/> object to render to.</param>
</member>
<member name="M:Svg.SvgElement.RenderChildren(Svg.ISvgRenderer)">
<summary>
Renders the children of this <see cref="T:Svg.SvgElement"/>.
</summary>
<param name="renderer">The <see cref="T:Svg.ISvgRenderer"/> to render the child <see cref="T:Svg.SvgElement"/>s to.</param>
</member>
<member name="M:Svg.SvgElement.Svg#ISvgElement#Render(Svg.ISvgRenderer)">
<summary>
Renders the <see cref="T:Svg.SvgElement"/> and contents to the specified <see cref="T:Svg.ISvgRenderer"/> object.
</summary>
<param name="renderer">The <see cref="T:Svg.ISvgRenderer"/> object to render to.</param>
</member>
<member name="M:Svg.SvgElement.AddPaths(Svg.SvgElement,System.Drawing.Drawing2D.GraphicsPath)">
<summary>
Recursive method to add up the paths of all children
</summary>
<param name="elem"></param>
<param name="path"></param>
</member>
<member name="M:Svg.SvgElement.GetPaths(Svg.SvgElement,Svg.ISvgRenderer)">
<summary>
Recursive method to add up the paths of all children
</summary>
<param name="elem"></param>
<param name="path"></param>
</member>
<member name="M:Svg.SvgElement.Clone">
<summary>
Creates a new object that is a copy of the current instance.
</summary>
<returns>
A new object that is a copy of this instance.
</returns>
</member>
<member name="E:Svg.SvgElement.AttributeChanged">
<summary>
Fired when an Atrribute of this Element has changed
</summary>
</member>
<member name="E:Svg.SvgElement.ContentChanged">
<summary>
Fired when an Atrribute of this Element has changed
</summary>
</member>
<member name="P:Svg.SvgNodeReader.Value">
<summary>
Gets the text value of the current node.
</summary>
<value></value>
<returns>The value returned depends on the <see cref="P:System.Xml.XmlTextReader.NodeType"/> of the node. The following table lists node types that have a value to return. All other node types return String.Empty.Node Type Value AttributeThe value of the attribute. CDATAThe content of the CDATA section. CommentThe content of the comment. DocumentTypeThe internal subset. ProcessingInstructionThe entire content, excluding the target. SignificantWhitespaceThe white space within an xml:space= 'preserve' scope. TextThe content of the text node. WhitespaceThe white space between markup. XmlDeclarationThe content of the declaration. </returns>
</member>
<member name="P:Svg.SvgNodeReader.LocalName">
<summary>
Gets the local name of the current node.
</summary>
<value></value>
<returns>The name of the current node with the prefix removed. For example, LocalName is book for the element <bk:book>.For node types that do not have a name (like Text, Comment, and so on), this property returns String.Empty.</returns>
</member>
<member name="M:Svg.SvgNodeReader.MoveToNextAttribute">
<summary>
Moves to the next attribute.
</summary>
<returns>
true if there is a next attribute; false if there are no more attributes.
</returns>
</member>
<member name="M:Svg.SvgNodeReader.Read">
<summary>
Reads the next node from the stream.
</summary>
<returns>
true if the next node was read successfully; false if there are no more nodes to read.
</returns>
<exception cref="T:System.Xml.XmlException">An error occurred while parsing the XML. </exception>
</member>
<member name="M:Svg.SvgNodeReader.ResolveEntity">
<summary>
Resolves the entity reference for EntityReference nodes.
</summary>
</member>
<member name="T:Svg.DataTypes.SvgMarkerUnits">
<summary>Defines the coordinate system for attributes ‘markerWidth’, ‘markerHeight’ and the contents of the ‘marker’.</summary>
</member>
<member name="F:Svg.DataTypes.SvgMarkerUnits.StrokeWidth">
<summary>If markerUnits="strokeWidth", ‘markerWidth’, ‘markerHeight’ and the contents of the ‘marker’ represent values in a coordinate system which has a single unit equal the size in user units of the current stroke width (see the ‘stroke-width’ property) in place for the graphic object referencing the marker.</summary>
</member>
<member name="F:Svg.DataTypes.SvgMarkerUnits.UserSpaceOnUse">
<summary>If markerUnits="userSpaceOnUse", ‘markerWidth’, ‘markerHeight’ and the contents of the ‘marker’ represent values in the current user coordinate system in place for the graphic object referencing the marker (i.e., the user coordinate system for the element referencing the ‘marker’ element via a ‘marker’, ‘marker-start’, ‘marker-mid’ or ‘marker-end’ property).</summary>
</member>
<member name="T:Svg.DataTypes.SvgColourInterpolation">
<summary>Specifies the color space for gradient interpolations, color animations and alpha compositing.</summary>
<remarks>When a child element is blended into a background, the value of the ‘color-interpolation’ property on the child determines the type of blending, not the value of the ‘color-interpolation’ on the parent. For gradients which make use of the ‘xlink:href’ attribute to reference another gradient, the gradient uses the ‘color-interpolation’ property value from the gradient element which is directly referenced by the ‘fill’ or ‘stroke’ property. When animating colors, color interpolation is performed according to the value of the ‘color-interpolation’ property on the element being animated.</remarks>
</member>
<member name="F:Svg.DataTypes.SvgColourInterpolation.Auto">
<summary>Indicates that the user agent can choose either the sRGB or linearRGB spaces for color interpolation. This option indicates that the author doesn't require that color interpolation occur in a particular color space.</summary>
</member>
<member name="F:Svg.DataTypes.SvgColourInterpolation.SRGB">
<summary>Indicates that color interpolation should occur in the sRGB color space.</summary>
</member>
<member name="F:Svg.DataTypes.SvgColourInterpolation.LinearRGB">
<summary>Indicates that color interpolation should occur in the linearized RGB color space as described above.</summary>
</member>
<member name="F:Svg.DataTypes.SvgColourInterpolation.Inherit">
<summary>The value is inherited from the parent element.</summary>
</member>
<member name="T:Svg.SvgFontStyle">
<summary>This is the descriptor for the style of a font and takes the same values as the 'font-style' property, except that a comma-separated list is permitted.</summary>
</member>
<member name="F:Svg.SvgFontStyle.All">
<summary>Indicates that the font-face supplies all styles (normal, oblique and italic).</summary>
</member>
<member name="F:Svg.SvgFontStyle.Normal">
<summary>Specifies a font that is classified as 'normal' in the UA's font database.</summary>
</member>
<member name="F:Svg.SvgFontStyle.Oblique">
<summary>Specifies a font that is classified as 'oblique' in the UA's font database. Fonts with Oblique, Slanted, or Incline in their names will typically be labeled 'oblique' in the font database. A font that is labeled 'oblique' in the UA's font database may actually have been generated by electronically slanting a normal font.</summary>
</member>
<member name="F:Svg.SvgFontStyle.Italic">
<summary>Specifies a font that is classified as 'italic' in the UA's font database, or, if that is not available, one labeled 'oblique'. Fonts with Italic, Cursive, or Kursiv in their names will typically be labeled 'italic'</summary>
</member>
<member name="T:Svg.SvgOrient">
<summary>
Represents an orientation in an Scalable Vector Graphics document.
</summary>
</member>
<member name="P:Svg.SvgOrient.Angle">
<summary>
Gets the value of the unit.
</summary>
</member>
<member name="P:Svg.SvgOrient.IsAuto">
<summary>
Gets the value of the unit.
</summary>
</member>
<member name="M:Svg.SvgOrient.Equals(System.Object)">
<summary>
Indicates whether this instance and a specified object are equal.
</summary>
<param name="obj">Another object to compare to.</param>
<returns>
true if <paramref name="obj"/> and this instance are the same type and represent the same value; otherwise, false.
</returns>
</member>
<member name="M:Svg.SvgOrient.op_Implicit(System.Single)~Svg.SvgOrient">
<summary>
Performs an implicit conversion from <see cref="T:System.Single"/> to <see cref="T:Svg.SvgOrient"/>.
</summary>
<param name="value">The value.</param>
<returns>The result of the conversion.</returns>
</member>
<member name="T:Svg.ISvgViewPort">
<summary>
Provides properties and methods to be implemented by view port elements.
</summary>
</member>
<member name="P:Svg.ISvgViewPort.ViewBox">
<summary>
Gets or sets the viewport of the element.
</summary>
</member>
<member name="T:Svg.SvgAspectRatio">
<summary>
Description of SvgAspectRatio.
</summary>
</member>
<member name="T:Svg.SvgCoordinateUnits">
<summary>
Defines the various coordinate units certain SVG elements may use.
</summary>
</member>
<member name="F:Svg.SvgCoordinateUnits.ObjectBoundingBox">
<summary>
Indicates that the coordinate system of the owner element is to be used.
</summary>
</member>
<member name="F:Svg.SvgCoordinateUnits.UserSpaceOnUse">
<summary>
Indicates that the coordinate system of the entire document is to be used.
</summary>
</member>
<member name="T:Svg.SvgFontWeight">
<summary>The weight of a face relative to others in the same font family.</summary>
</member>
<member name="F:Svg.SvgFontWeight.All">
<summary>All font weights.</summary>
</member>
<member name="F:Svg.SvgFontWeight.Inherit">
<summary>The value is inherited from the parent element.</summary>
</member>
<member name="F:Svg.SvgFontWeight.Normal">
<summary>Same as <see cref="F:Svg.SvgFontWeight.W400"/>.</summary>
</member>
<member name="F:Svg.SvgFontWeight.Bold">
<summary>Same as <see cref="F:Svg.SvgFontWeight.W700"/>.</summary>
</member>
<member name="F:Svg.SvgFontWeight.Bolder">
<summary>One font weight darker than the parent element.</summary>
</member>
<member name="F:Svg.SvgFontWeight.Lighter">
<summary>One font weight lighter than the parent element.</summary>
</member>
<member name="F:Svg.SvgFontWeight.W100">
<summary></summary>
</member>
<member name="F:Svg.SvgFontWeight.W200">
<summary></summary>
</member>
<member name="F:Svg.SvgFontWeight.W300">
<summary></summary>
</member>
<member name="F:Svg.SvgFontWeight.W400">
<summary>Same as <see cref="F:Svg.SvgFontWeight.Normal"/>.</summary>
</member>
<member name="F:Svg.SvgFontWeight.W500">
<summary></summary>
</member>
<member name="F:Svg.SvgFontWeight.W600">
<summary></summary>
</member>
<member name="F:Svg.SvgFontWeight.W700">
<summary>Same as <see cref="F:Svg.SvgFontWeight.Bold"/>.</summary>
</member>
<member name="F:Svg.SvgFontWeight.W800">
<summary></summary>
</member>
<member name="F:Svg.SvgFontWeight.W900">
<summary></summary>
</member>
<!-- Badly formed XML comment ignored for member "T:Svg.SvgOverflow" -->
<member name="F:Svg.SvgOverflow.Inherit">
<summary>The value is inherited from the parent element.</summary>
</member>
<member name="F:Svg.SvgOverflow.Auto">
<summary>The overflow is rendered - same as "visible".</summary>
</member>
<member name="F:Svg.SvgOverflow.Visible">
<summary>Overflow is rendered.</summary>
</member>
<member name="F:Svg.SvgOverflow.Hidden">
<summary>Overflow is not rendered.</summary>
</member>
<member name="F:Svg.SvgOverflow.Scroll">
<summary>Overflow causes a scrollbar to appear (horizontal, vertical or both).</summary>
</member>
<member name="T:Svg.SvgUnitCollection">
<summary>
Represents a list of <see cref="!:SvgUnits"/>.
</summary>
</member>
<member name="T:Svg.SvgUnitCollectionConverter">
<summary>
A class to convert string into <see cref="T:Svg.SvgUnitCollection"/> instances.
</summary>
</member>
<member name="M:Svg.SvgUnitCollectionConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object)">
<summary>
Converts the given object to the type of this converter, using the specified context and culture information.
</summary>
<param name="context">An <see cref="T:System.ComponentModel.ITypeDescriptorContext"/> that provides a format context.</param>
<param name="culture">The <see cref="T:System.Globalization.CultureInfo"/> to use as the current culture.</param>
<param name="value">The <see cref="T:System.Object"/> to convert.</param>
<returns>
An <see cref="T:System.Object"/> that represents the converted value.
</returns>
<exception cref="T:System.NotSupportedException">The conversion cannot be performed. </exception>
</member>
<member name="T:Svg.SvgViewBox">
<summary>
It is often desirable to specify that a given set of graphics stretch to fit a particular container element. The viewBox attribute provides this capability.
</summary>
</member>
<member name="P:Svg.SvgViewBox.MinX">
<summary>
Gets or sets the position where the viewport starts horizontally.
</summary>
</member>
<member name="P:Svg.SvgViewBox.MinY">
<summary>
Gets or sets the position where the viewport starts vertically.
</summary>
</member>
<member name="P:Svg.SvgViewBox.Width">
<summary>
Gets or sets the width of the viewport.
</summary>
</member>
<member name="P:Svg.SvgViewBox.Height">
<summary>
Gets or sets the height of the viewport.
</summary>
</member>
<member name="M:Svg.SvgViewBox.op_Implicit(Svg.SvgViewBox)~System.Drawing.RectangleF">
<summary>
Performs an implicit conversion from <see cref="T:Svg.SvgViewBox"/> to <see cref="T:System.Drawing.RectangleF"/>.
</summary>
<param name="value">The value.</param>
<returns>The result of the conversion.</returns>
</member>
<member name="M:Svg.SvgViewBox.op_Implicit(System.Drawing.RectangleF)~Svg.SvgViewBox">
<summary>
Performs an implicit conversion from <see cref="T:System.Drawing.RectangleF"/> to <see cref="T:Svg.SvgViewBox"/>.
</summary>
<param name="value">The value.</param>
<returns>The result of the conversion.</returns>
</member>
<member name="M:Svg.SvgViewBox.#ctor(System.Single,System.Single,System.Single,System.Single)">
<summary>
Initializes a new instance of the <see cref="T:Svg.SvgViewBox"/> struct.
</summary>
<param name="minX">The min X.</param>
<param name="minY">The min Y.</param>
<param name="width">The width.</param>
<param name="height">The height.</param>
</member>
<member name="M:Svg.SvgViewBoxConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object)">
<summary>
Converts the given object to the type of this converter, using the specified context and culture information.
</summary>
<param name="context">An <see cref="T:System.ComponentModel.ITypeDescriptorContext"/> that provides a format context.</param>
<param name="culture">The <see cref="T:System.Globalization.CultureInfo"/> to use as the current culture.</param>
<param name="value">The <see cref="T:System.Object"/> to convert.</param>
<returns>
An <see cref="T:System.Object"/> that represents the converted value.
</returns>
<exception cref="T:System.NotSupportedException">The conversion cannot be performed. </exception>
</member>
<member name="T:Svg.SvgSwitch">
<summary>
The ‘switch’ element evaluates the ‘requiredFeatures’, ‘requiredExtensions’ and ‘systemLanguage’ attributes on its direct child elements in order, and then processes and renders the first child for which these attributes evaluate to true
</summary>
</member>
<member name="M:Svg.SvgSwitch.Path(Svg.ISvgRenderer)">
<summary>
Gets the <see cref="T:System.Drawing.Drawing2D.GraphicsPath"/> for this element.
</summary>
<value></value>
</member>
<member name="P:Svg.SvgSwitch.Bounds">
<summary>
Gets the bounds of the element.
</summary>
<value>The bounds.</value>
</member>
<member name="M:Svg.SvgSwitch.Render(Svg.ISvgRenderer)">
<summary>
Renders the <see cref="T:Svg.SvgElement"/> and contents to the specified <see cref="T:System.Drawing.Graphics"/> object.
</summary>
<param name="renderer">The <see cref="T:System.Drawing.Graphics"/> object to render to.</param>
</member>
<member name="T:Svg.SvgDocumentMetadata">
<summary>
Represents a list of re-usable SVG components.
</summary>
</member>
<member name="M:Svg.SvgDocumentMetadata.#ctor">
<summary>
Initializes a new instance of the <see cref="T:Svg.SvgDocumentMetadata"/> class.
</summary>
</member>
<member name="M:Svg.SvgDocumentMetadata.Render(Svg.ISvgRenderer)">
<summary>
Renders the <see cref="T:Svg.SvgElement"/> and contents to the specified <see cref="T:Svg.ISvgRenderer"/> object.
</summary>
<param name="renderer">The <see cref="T:Svg.ISvgRenderer"/> object to render to.</param>
</member>
<member name="T:Svg.SvgForeignObject">
<summary>
The ‘foreignObject’ element allows for inclusion of a foreign namespace which has its graphical content drawn by a different user agent
</summary>
</member>
<member name="M:Svg.SvgForeignObject.Path(Svg.ISvgRenderer)">
<summary>
Gets the <see cref="T:System.Drawing.Drawing2D.GraphicsPath"/> for this element.
</summary>
<value></value>
</member>
<member name="P:Svg.SvgForeignObject.Bounds">
<summary>
Gets the bounds of the element.
</summary>
<value>The bounds.</value>
</member>
<member name="T:Svg.SvgDeferredPaintServer">
<summary>
A wrapper for a paint server which isn't defined currently in the parse process, but
should be defined by the time the image needs to render.
</summary>
</member>
<member name="M:Svg.SvgMarker.RenderMarker(Svg.ISvgRenderer,Svg.SvgVisualElement,System.Drawing.PointF,System.Drawing.PointF,System.Drawing.PointF)">
<summary>
Render this marker using the slope of the given line segment
</summary>
<param name="pRenderer"></param>
<param name="pOwner"></param>
<param name="pMarkerPoint1"></param>
<param name="pMarkerPoint2"></param>
</member>
<member name="M:Svg.SvgMarker.RenderMarker(Svg.ISvgRenderer,Svg.SvgVisualElement,System.Drawing.PointF,System.Drawing.PointF,System.Drawing.PointF,System.Drawing.PointF)">
<summary>
Render this marker using the average of the slopes of the two given line segments
</summary>
<param name="pRenderer"></param>
<param name="pOwner"></param>
<param name="pMarkerPoint1"></param>
<param name="pMarkerPoint2"></param>
<param name="pMarkerPoint3"></param>
</member>
<member name="M:Svg.SvgMarker.RenderPart2(System.Single,Svg.ISvgRenderer,Svg.SvgVisualElement,System.Drawing.PointF)">
<summary>
Common code for rendering a marker once the orientation angle has been calculated
</summary>
<param name="fAngle"></param>
<param name="pRenderer"></param>
<param name="pOwner"></param>
<param name="pMarkerPoint"></param>
</member>
<member name="M:Svg.SvgMarker.CreatePen(Svg.SvgVisualElement,Svg.ISvgRenderer)">
<summary>
Create a pen that can be used to render this marker
</summary>
<param name="pStroke"></param>
<returns></returns>
</member>
<member name="M:Svg.SvgMarker.GetClone(Svg.SvgVisualElement)">
<summary>
Get a clone of the current path, scaled for the stroke width
</summary>
<returns></returns>
</member>
<member name="M:Svg.SvgMarker.AdjustForViewBoxWidth(System.Single)">
<summary>
Adjust the given value to account for the width of the viewbox in the viewport
</summary>
<param name="fWidth"></param>
<returns></returns>
</member>
<member name="M:Svg.SvgMarker.AdjustForViewBoxHeight(System.Single)">
<summary>
Adjust the given value to account for the height of the viewbox in the viewport
</summary>
<param name="fWidth"></param>
<returns></returns>
</member>
<member name="T:Svg.SvgDefinitionList">
<summary>
Represents a list of re-usable SVG components.
</summary>
</member>
<member name="M:Svg.SvgDefinitionList.#ctor">
<summary>
Initializes a new instance of the <see cref="T:Svg.SvgDefinitionList"/> class.
</summary>
</member>
<member name="M:Svg.SvgDefinitionList.Render(Svg.ISvgRenderer)">
<summary>
Renders the <see cref="T:Svg.SvgElement"/> and contents to the specified <see cref="T:Svg.ISvgRenderer"/> object.
</summary>
<param name="renderer">The <see cref="T:Svg.ISvgRenderer"/> object to render to.</param>
</member>
<member name="T:Svg.SvgFragment">
<summary>
An <see cref="T:Svg.SvgFragment"/> represents an SVG fragment that can be the root element or an embedded fragment of an SVG document.
</summary>
</member>
<member name="F:Svg.SvgFragment.Namespace">
<summary>
Gets the SVG namespace string.
</summary>
</member>
<member name="P:Svg.SvgFragment.X">
<summary>
Gets or sets the position where the left point of the svg should start.
</summary>
</member>
<member name="P:Svg.SvgFragment.Y">
<summary>
Gets or sets the position where the top point of the svg should start.
</summary>
</member>
<member name="P:Svg.SvgFragment.Width">
<summary>
Gets or sets the width of the fragment.
</summary>
<value>The width.</value>
</member>
<member name="P:Svg.SvgFragment.Height">
<summary>
Gets or sets the height of the fragment.
</summary>
<value>The height.</value>
</member>
<member name="P:Svg.SvgFragment.ViewBox">
<summary>
Gets or sets the viewport of the element.
</summary>
<value></value>
</member>
<member name="P:Svg.SvgFragment.AspectRatio">
<summary>
Gets or sets the aspect of the viewport.
</summary>
<value></value>
</member>
<member name="P:Svg.SvgFragment.FontSize">
<summary>
Refers to the size of the font from baseline to baseline when multiple lines of text are set solid in a multiline layout environment.
</summary>
</member>
<member name="P:Svg.SvgFragment.FontFamily">
<summary>
Indicates which font family is to be used to render the text.
</summary>
</member>
<member name="M:Svg.SvgFragment.PushTransforms(Svg.ISvgRenderer)">
<summary>
Applies the required transforms to <see cref="T:Svg.ISvgRenderer"/>.
</summary>
<param name="renderer">The <see cref="T:Svg.ISvgRenderer"/> to be transformed.</param>
</member>
<member name="P:Svg.SvgFragment.Path">
<summary>
Gets the <see cref="T:System.Drawing.Drawing2D.GraphicsPath"/> for this element.
</summary>
<value></value>
</member>
<member name="P:Svg.SvgFragment.Bounds">
<summary>
Gets the bounds of the svg element.
</summary>
<value>The bounds.</value>
</member>
<member name="M:Svg.SvgFragment.#ctor">
<summary>
Initializes a new instance of the <see cref="T:Svg.SvgFragment"/> class.
</summary>
</member>
<member name="T:Svg.SvgGroup">
<summary>
An element used to group SVG shapes.
</summary>
</member>
<member name="M:Svg.SvgGroup.Path(Svg.ISvgRenderer)">
<summary>
Gets the <see cref="T:System.Drawing.Drawing2D.GraphicsPath"/> for this element.
</summary>
<value></value>
</member>
<member name="P:Svg.SvgGroup.Bounds">
<summary>
Gets the bounds of the element.
</summary>
<value>The bounds.</value>
</member>
<member name="M:Svg.SvgUse.PushTransforms(Svg.ISvgRenderer)">
<summary>
Applies the required transforms to <see cref="T:Svg.ISvgRenderer"/>.
</summary>
<param name="renderer">The <see cref="T:Svg.ISvgRenderer"/> to be transformed.</param>
</member>
<member name="M:Svg.SvgUse.#ctor">
<summary>
Initializes a new instance of the <see cref="T:Svg.SvgUse"/> class.
</summary>
</member>
<member name="P:Svg.EnumBaseConverter`1.DefaultValue">
<summary>If specified, upon conversion, the default value will result in 'null'.</summary>
</member>
<member name="M:Svg.EnumBaseConverter`1.#ctor">
<summary>Creates a new instance.</summary>
</member>
<member name="M:Svg.EnumBaseConverter`1.#ctor(`0)">
<summary>Creates a new instance.</summary>
<param name="defaultValue">Specified the default value of the enum.</param>
</member>
<member name="M:Svg.EnumBaseConverter`1.ConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object)">
<summary>Attempts to convert the provided value to <typeparamref name="T"/>.</summary>
</member>
<member name="M:Svg.EnumBaseConverter`1.ConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object,System.Type)">
<summary>Attempts to convert the value to the destination type.</summary>
</member>
<member name="T:Svg.SvgDefaults">
<summary>
Holds a dictionary of the default values of the SVG specification
</summary>
</member>
<member name="M:Svg.SvgDefaults.IsDefault(System.String,System.String)">
<summary>
Checks whether the property value is the default value of the svg definition.
</summary>
<param name="attributeName">Name of the svg attribute</param>
<param name="propertyValue">.NET value of the attribute</param>
</member>
<member name="T:Svg.SvgElementAttribute">
<summary>
Specifies the SVG name of an <see cref="T:Svg.SvgElement"/>.
</summary>
</member>
<member name="P:Svg.SvgElementAttribute.ElementName">
<summary>
Gets the name of the SVG element.
</summary>
</member>
<member name="M:Svg.SvgElementAttribute.#ctor(System.String)">
<summary>
Initializes a new instance of the <see cref="T:Svg.SvgElementAttribute"/> class with the specified element name;
</summary>
<param name="elementName">The name of the SVG element.</param>
</member>
<member name="T:Svg.SvgExtentions">
<summary>
Svg helpers
</summary>
</member>
<member name="T:Svg.SvgRenderer">
<summary>
Convenience wrapper around a graphics object
</summary>
</member>
<member name="M:Svg.SvgRenderer.#ctor(System.Drawing.Graphics)">
<summary>
Initializes a new instance of the <see cref="T:Svg.ISvgRenderer"/> class.
</summary>
</member>
<member name="M:Svg.SvgRenderer.FromImage(System.Drawing.Image)">
<summary>
Creates a new <see cref="T:Svg.ISvgRenderer"/> from the specified <see cref="T:System.Drawing.Image"/>.
</summary>
<param name="image"><see cref="T:System.Drawing.Image"/> from which to create the new <see cref="T:Svg.ISvgRenderer"/>.</param>
</member>
<member name="M:Svg.SvgRenderer.FromGraphics(System.Drawing.Graphics)">
<summary>
Creates a new <see cref="T:Svg.ISvgRenderer"/> from the specified <see cref="T:System.Drawing.Graphics"/>.
</summary>
<param name="graphics">The <see cref="T:System.Drawing.Graphics"/> to create the renderer from.</param>
</member>
<member name="T:Svg.SvgColourConverter">
<summary>
Converts string representations of colours into <see cref="T:System.Drawing.Color"/> objects.
</summary>
</member>
<member name="M:Svg.SvgColourConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object)">
<summary>
Converts the given object to the converter's native type.
</summary>
<param name="context">A <see cref="T:System.ComponentModel.TypeDescriptor"/> that provides a format context. You can use this object to get additional information about the environment from which this converter is being invoked.</param>
<param name="culture">A <see cref="T:System.Globalization.CultureInfo"/> that specifies the culture to represent the color.</param>
<param name="value">The object to convert.</param>
<returns>
An <see cref="T:System.Object"/> representing the converted value.
</returns>
<exception cref="T:System.ArgumentException">The conversion cannot be performed.</exception>
<PermissionSet>
<IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true"/>
</PermissionSet>
</member>
<member name="M:Svg.SvgColourConverter.Hsl2Rgb(System.Double,System.Double,System.Double)">
<summary>
Converts HSL color (with HSL specified from 0 to 1) to RGB color.
Taken from http://www.geekymonkey.com/Programming/CSharp/RGB2HSL_HSL2RGB.htm
</summary>
<param name="h"></param>
<param name="sl"></param>
<param name="l"></param>
<returns></returns>
</member>
<member name="T:Svg.SvgGradientSpreadMethod">
<summary>Indicates what happens if the gradient starts or ends inside the bounds of the target rectangle.</summary>
<remarks>
<para>Possible values are: 'pad', which says to use the terminal colors of the gradient to fill the remainder of the target region, 'reflect', which says to reflect the gradient pattern start-to-end, end-to-start, start-to-end, etc. continuously until the target rectangle is filled, and repeat, which says to repeat the gradient pattern start-to-end, start-to-end, start-to-end, etc. continuously until the target region is filled.</para>
<para>If the attribute is not specified, the effect is as if a value of 'pad' were specified.</para>
</remarks>
</member>
<member name="F:Svg.SvgGradientSpreadMethod.Pad">
<summary>Use the terminal colors of the gradient to fill the remainder of the target region.</summary>
</member>
<member name="F:Svg.SvgGradientSpreadMethod.Reflect">
<summary>Reflect the gradient pattern start-to-end, end-to-start, start-to-end, etc. continuously until the target rectangle is filled.</summary>
</member>
<member name="F:Svg.SvgGradientSpreadMethod.Repeat">
<summary>Repeat the gradient pattern start-to-end, start-to-end, start-to-end, etc. continuously until the target region is filled.</summary>
</member>
<member name="M:Svg.SvgDtdResolver.GetEntity(System.Uri,System.String,System.Type)">
<summary>
Maps a URI to an object containing the actual resource.
</summary>
<param name="absoluteUri">The URI returned from <see cref="M:System.Xml.XmlResolver.ResolveUri(System.Uri,System.String)"/></param>
<param name="role">The current implementation does not use this parameter when resolving URIs. This is provided for future extensibility purposes. For example, this can be mapped to the xlink:role and used as an implementation specific argument in other scenarios.</param>
<param name="ofObjectToReturn">The type of object to return. The current implementation only returns System.IO.Stream objects.</param>
<returns>
A System.IO.Stream object or null if a type other than stream is specified.
</returns>
<exception cref="T:System.Xml.XmlException">
<paramref name="ofObjectToReturn"/> is neither null nor a Stream type. </exception>
<exception cref="T:System.UriFormatException">The specified URI is not an absolute URI. </exception>
<exception cref="T:System.NullReferenceException">
<paramref name="absoluteUri"/> is null. </exception>
<exception cref="T:System.Exception">There is a runtime error (for example, an interrupted server connection). </exception>
</member>
<member name="T:Svg.SvgGradientServer">
<summary>
Provides the base class for all paint servers that wish to render a gradient.
</summary>
</member>
<member name="M:Svg.SvgGradientServer.#ctor">
<summary>
Initializes a new instance of the <see cref="T:Svg.SvgGradientServer"/> class.
</summary>
</member>
<member name="M:Svg.SvgGradientServer.AddElement(Svg.SvgElement,System.Int32)">
<summary>
Called by the underlying <see cref="T:Svg.SvgElement"/> when an element has been added to the
<see cref="!:Children"/> collection.
</summary>
<param name="child">The <see cref="T:Svg.SvgElement"/> that has been added.</param>
<param name="index">An <see cref="T:System.Int32"/> representing the index where the element was added to the collection.</param>
</member>
<member name="M:Svg.SvgGradientServer.RemoveElement(Svg.SvgElement)">
<summary>
Called by the underlying <see cref="T:Svg.SvgElement"/> when an element has been removed from the
<see cref="!:Children"/> collection.
</summary>
<param name="child">The <see cref="T:Svg.SvgElement"/> that has been removed.</param>
</member>
<member name="P:Svg.SvgGradientServer.Stops">
<summary>
Gets the ramp of colors to use on a gradient.
</summary>
</member>
<member name="P:Svg.SvgGradientServer.SpreadMethod">
<summary>
Specifies what happens if the gradient starts or ends inside the bounds of the target rectangle.
</summary>
</member>
<member name="P:Svg.SvgGradientServer.GradientUnits">
<summary>
Gets or sets the coordinate system of the gradient.
</summary>
</member>
<member name="P:Svg.SvgGradientServer.InheritGradient">
<summary>
Gets or sets another gradient fill from which to inherit the stops from.
</summary>
</member>
<member name="M:Svg.SvgGradientServer.GetColorBlend(Svg.ISvgRenderer,System.Single,System.Boolean)">
<summary>
Gets a <see cref="T:System.Drawing.Drawing2D.ColorBlend"/> representing the <see cref="T:Svg.SvgGradientServer"/>'s gradient stops.
</summary>
<param name="owner">The parent <see cref="T:Svg.SvgVisualElement"/>.</param>
<param name="opacity">The opacity of the colour blend.</param>
</member>
<member name="T:Svg.SvgGradientStop">
<summary>
Represents a colour stop in a gradient.
</summary>
</member>
<member name="P:Svg.SvgGradientStop.Offset">
<summary>
Gets or sets the offset, i.e. where the stop begins from the beginning, of the gradient stop.
</summary>
</member>
<member name="P:Svg.SvgGradientStop.StopColor">
<summary>
Gets or sets the colour of the gradient stop.
</summary>
</member>
<member name="P:Svg.SvgGradientStop.Opacity">
<summary>
Gets or sets the opacity of the gradient stop (0-1).
</summary>
</member>
<member name="M:Svg.SvgGradientStop.#ctor">
<summary>
Initializes a new instance of the <see cref="T:Svg.SvgGradientStop"/> class.
</summary>
</member>
<member name="M:Svg.SvgGradientStop.#ctor(Svg.SvgUnit,System.Drawing.Color)">
<summary>
Initializes a new instance of the <see cref="T:Svg.SvgGradientStop"/> class.
</summary>
<param name="offset">The offset.</param>
<param name="colour">The colour.</param>
</member>
<member name="T:Svg.ISvgStylable">
<summary>
Defines the methods and properties required for an SVG element to be styled.
</summary>
</member>
<member name="F:Svg.SvgColourServer.NotSet">
<summary>
An unspecified <see cref="T:Svg.SvgPaintServer"/>.
</summary>
</member>
<member name="F:Svg.SvgColourServer.Inherit">
<summary>
A <see cref="T:Svg.SvgPaintServer"/> that should inherit from its parent.
</summary>
</member>
<!-- Badly formed XML comment ignored for member "M:Svg.SvgLinearGradientServer.LineF.Intersection(Svg.SvgLinearGradientServer.LineF)" -->
<member name="T:Svg.SvgPaintServer">
<summary>
Represents the base class for all paint servers that are intended to be used as a fill or stroke.
</summary>
</member>
<member name="F:Svg.SvgPaintServer.None">
<summary>
An unspecified <see cref="T:Svg.SvgPaintServer"/>.
</summary>
</member>
<member name="M:Svg.SvgPaintServer.#ctor">
<summary>
Initializes a new instance of the <see cref="T:Svg.SvgPaintServer"/> class.
</summary>
</member>
<member name="M:Svg.SvgPaintServer.Render(Svg.ISvgRenderer)">
<summary>
Renders the <see cref="T:Svg.SvgElement"/> and contents to the specified <see cref="T:Svg.ISvgRenderer"/> object.
</summary>
<param name="renderer">The <see cref="T:Svg.ISvgRenderer"/> object to render to.</param>
</member>
<member name="M:Svg.SvgPaintServer.GetBrush(Svg.SvgVisualElement,Svg.ISvgRenderer,System.Single,System.Boolean)">
<summary>
Gets a <see cref="T:System.Drawing.Brush"/> representing the current paint server.
</summary>
<param name="styleOwner">The owner <see cref="T:Svg.SvgVisualElement"/>.</param>
<param name="opacity">The opacity of the brush.</param>
</member>
<member name="M:Svg.SvgPaintServer.ToString">
<summary>
Returns a <see cref="T:System.String"/> that represents the current <see cref="T:System.Object"/>.
</summary>
<returns>
A <see cref="T:System.String"/> that represents the current <see cref="T:System.Object"/>.
</returns>
</member>
<member name="T:Svg.SvgPatternServer">
<summary>
A pattern is used to fill or stroke an object using a pre-defined graphic object which can be replicated ("tiled") at fixed intervals in x and y to cover the areas to be painted.
</summary>
</member>
<member name="P:Svg.SvgPatternServer.ViewBox">
<summary>
Specifies a supplemental transformation which is applied on top of any
transformations necessary to create a new pattern coordinate system.
</summary>
</member>
<member name="P:Svg.SvgPatternServer.AspectRatio">
<summary>
Gets or sets the aspect of the viewport.
</summary>
<value></value>
</member>
<member name="P:Svg.SvgPatternServer.Width">
<summary>
Gets or sets the width of the pattern.
</summary>
</member>
<member name="P:Svg.SvgPatternServer.PatternUnits">
<summary>
Gets or sets the width of the pattern.
</summary>
</member>
<member name="P:Svg.SvgPatternServer.PatternContentUnits">
<summary>
Gets or sets the width of the pattern.
</summary>
</member>
<member name="P:Svg.SvgPatternServer.Height">
<summary>
Gets or sets the height of the pattern.
</summary>
</member>
<member name="P:Svg.SvgPatternServer.X">
<summary>
Gets or sets the X-axis location of the pattern.
</summary>
</member>
<member name="P:Svg.SvgPatternServer.Y">
<summary>
Gets or sets the Y-axis location of the pattern.
</summary>
</member>
<member name="P:Svg.SvgPatternServer.InheritGradient">
<summary>
Gets or sets another gradient fill from which to inherit the stops from.
</summary>
</member>
<member name="M:Svg.SvgPatternServer.#ctor">
<summary>
Initializes a new instance of the <see cref="T:Svg.SvgPatternServer"/> class.
</summary>
</member>
<member name="M:Svg.SvgPatternServer.GetBrush(Svg.SvgVisualElement,Svg.ISvgRenderer,System.Single,System.Boolean)">
<summary>
Gets a <see cref="T:System.Drawing.Brush"/> representing the current paint server.
</summary>
<param name="renderingElement">The owner <see cref="T:Svg.SvgVisualElement"/>.</param>
<param name="opacity">The opacity of the brush.</param>
</member>
<member name="M:Svg.SvgRadialGradientServer.CalcScale(System.Drawing.RectangleF,System.Drawing.Drawing2D.GraphicsPath,System.Drawing.Graphics)">
<summary>
Determine how much (approximately) the path must be scaled to contain the rectangle
</summary>
<param name="bounds">Bounds that the path must contain</param>
<param name="path">Path of the gradient</param>
<returns>Scale factor</returns>
<remarks>
This method continually transforms the rectangle (fewer points) until it is contained by the path
and returns the result of the search. The scale factor is set to a constant 95%
</remarks>
</member>
<member name="T:Svg.SvgStrokeLineCap">
<summary>Specifies the shape to be used at the end of open subpaths when they are stroked.</summary>
</member>
<member name="F:Svg.SvgStrokeLineCap.Inherit">
<summary>The value is inherited from the parent element.</summary>
</member>
<member name="F:Svg.SvgStrokeLineCap.Butt">
<summary>The ends of the subpaths are square but do not extend past the end of the subpath.</summary>
</member>
<member name="F:Svg.SvgStrokeLineCap.Round">
<summary>The ends of the subpaths are rounded.</summary>
</member>
<member name="F:Svg.SvgStrokeLineCap.Square">
<summary>The ends of the subpaths are square.</summary>
</member>
<member name="T:Svg.SvgStrokeLineJoin">
<summary>Specifies the shape to be used at the corners of paths or basic shapes when they are stroked.</summary>
</member>
<member name="F:Svg.SvgStrokeLineJoin.Inherit">
<summary>The value is inherited from the parent element.</summary>
</member>
<member name="F:Svg.SvgStrokeLineJoin.Miter">
<summary>The corners of the paths are joined sharply.</summary>
</member>
<member name="F:Svg.SvgStrokeLineJoin.Round">
<summary>The corners of the paths are rounded off.</summary>
</member>
<member name="F:Svg.SvgStrokeLineJoin.Bevel">
<summary>The corners of the paths are "flattened".</summary>
</member>
<member name="T:Svg.SvgPath">
<summary>
Represents an SVG path element.
</summary>
</member>
<member name="P:Svg.SvgPath.PathData">
<summary>
Gets or sets a <see cref="T:Svg.Pathing.SvgPathSegmentList"/> of path data.
</summary>
</member>
<member name="P:Svg.SvgPath.PathLength">
<summary>
Gets or sets the length of the path.
</summary>
</member>
<member name="P:Svg.SvgPath.MarkerEnd">
<summary>
Gets or sets the marker (end cap) of the path.
</summary>
</member>
<member name="P:Svg.SvgPath.MarkerMid">
<summary>
Gets or sets the marker (start cap) of the path.
</summary>
</member>
<member name="P:Svg.SvgPath.MarkerStart">
<summary>
Gets or sets the marker (start cap) of the path.
</summary>
</member>
<member name="M:Svg.SvgPath.Path(Svg.ISvgRenderer)">
<summary>
Gets the <see cref="T:System.Drawing.Drawing2D.GraphicsPath"/> for this element.
</summary>
</member>
<member name="P:Svg.SvgPath.RequiresSmoothRendering">
<summary>
Gets or sets a value to determine if anti-aliasing should occur when the element is being rendered.
</summary>
</member>
<member name="P:Svg.SvgPath.Bounds">
<summary>
Gets the bounds of the element.
</summary>
<value>The bounds.</value>
</member>
<member name="M:Svg.SvgPath.#ctor">
<summary>
Initializes a new instance of the <see cref="T:Svg.SvgPath"/> class.
</summary>
</member>
<member name="M:Svg.SvgPath.RenderStroke(Svg.ISvgRenderer)">
<summary>
Renders the stroke of the <see cref="T:Svg.SvgVisualElement"/> to the specified <see cref="T:Svg.ISvgRenderer"/>
</summary>
<param name="renderer">The <see cref="T:Svg.ISvgRenderer"/> object to render to.</param>
</member>
<member name="T:Svg.SvgRectangle">
<summary>
Represents an SVG rectangle that could also have rounded edges.
</summary>
</member>
<member name="M:Svg.SvgRectangle.#ctor">
<summary>
Initializes a new instance of the <see cref="T:Svg.SvgRectangle"/> class.
</summary>
</member>
<member name="P:Svg.SvgRectangle.Location">
<summary>
Gets an <see cref="T:Svg.SvgPoint"/> representing the top left point of the rectangle.
</summary>
</member>
<member name="P:Svg.SvgRectangle.X">
<summary>
Gets or sets the position where the left point of the rectangle should start.
</summary>
</member>
<member name="P:Svg.SvgRectangle.Y">
<summary>
Gets or sets the position where the top point of the rectangle should start.
</summary>
</member>
<member name="P:Svg.SvgRectangle.Width">
<summary>
Gets or sets the width of the rectangle.
</summary>
</member>
<member name="P:Svg.SvgRectangle.Height">
<summary>
Gets or sets the height of the rectangle.
</summary>
</member>
<member name="P:Svg.SvgRectangle.CornerRadiusX">
<summary>
Gets or sets the X-radius of the rounded edges of this rectangle.
</summary>
</member>
<member name="P:Svg.SvgRectangle.CornerRadiusY">
<summary>
Gets or sets the Y-radius of the rounded edges of this rectangle.
</summary>
</member>
<member name="P:Svg.SvgRectangle.RequiresSmoothRendering">
<summary>
Gets or sets a value to determine if anti-aliasing should occur when the element is being rendered.
</summary>
</member>
<member name="P:Svg.SvgRectangle.Bounds">
<summary>
Gets the bounds of the element.
</summary>
<value>The bounds.</value>
</member>
<member name="M:Svg.SvgRectangle.Path(Svg.ISvgRenderer)">
<summary>
Gets the <see cref="T:System.Drawing.Drawing2D.GraphicsPath"/> for this element.
</summary>
</member>
<member name="M:Svg.SvgRectangle.Render(Svg.ISvgRenderer)">
<summary>
Renders the <see cref="T:Svg.SvgElement"/> and contents to the specified <see cref="T:System.Drawing.Graphics"/> object.
</summary>
</member>
<member name="T:Svg.SvgDocument">
<summary>
The class used to create and load SVG documents.
</summary>
</member>
<member name="M:Svg.SvgDocument.#ctor">
<summary>
Initializes a new instance of the <see cref="T:Svg.SvgDocument"/> class.
</summary>
</member>
<member name="P:Svg.SvgDocument.IdManager">
<summary>
Gets an <see cref="T:Svg.SvgElementIdManager"/> for this document.
</summary>
</member>
<member name="M:Svg.SvgDocument.OverwriteIdManager(Svg.SvgElementIdManager)">
<summary>
Overwrites the current IdManager with a custom implementation.
Be careful with this: If elements have been inserted into the document before,
you have to take care that the new IdManager also knows of them.
</summary>
<param name="manager"></param>
</member>
<member name="P:Svg.SvgDocument.Ppi">
<summary>
Gets or sets the Pixels Per Inch of the rendered image.
</summary>
</member>
<member name="P:Svg.SvgDocument.ExternalCSSHref">
<summary>
Gets or sets an external Cascading Style Sheet (CSS)
</summary>
</member>
<member name="M:Svg.SvgDocument.GetElementById(System.String)">
<summary>
Retrieves the <see cref="T:Svg.SvgElement"/> with the specified ID.
</summary>
<param name="id">A <see cref="T:System.String"/> containing the ID of the element to find.</param>
<returns>An <see cref="T:Svg.SvgElement"/> of one exists with the specified ID; otherwise false.</returns>
</member>
<member name="M:Svg.SvgDocument.GetElementById``1(System.String)">
<summary>
Retrieves the <see cref="T:Svg.SvgElement"/> with the specified ID.
</summary>
<param name="id">A <see cref="T:System.String"/> containing the ID of the element to find.</param>
<returns>An <see cref="T:Svg.SvgElement"/> of one exists with the specified ID; otherwise false.</returns>
</member>
<member name="M:Svg.SvgDocument.Open(System.String)">
<summary>
Opens the document at the specified path and loads the SVG contents.
</summary>
<param name="path">A <see cref="T:System.String"/> containing the path of the file to open.</param>
<returns>An <see cref="T:Svg.SvgDocument"/> with the contents loaded.</returns>
<exception cref="T:System.IO.FileNotFoundException">The document at the specified <paramref name="path"/> cannot be found.</exception>
</member>
<member name="M:Svg.SvgDocument.Open``1(System.String)">
<summary>
Opens the document at the specified path and loads the SVG contents.
</summary>
<param name="path">A <see cref="T:System.String"/> containing the path of the file to open.</param>
<returns>An <see cref="T:Svg.SvgDocument"/> with the contents loaded.</returns>
<exception cref="T:System.IO.FileNotFoundException">The document at the specified <paramref name="path"/> cannot be found.</exception>
</member>
<member name="M:Svg.SvgDocument.Open``1(System.String,System.Collections.Generic.Dictionary{System.String,System.String})">
<summary>
Opens the document at the specified path and loads the SVG contents.
</summary>
<param name="path">A <see cref="T:System.String"/> containing the path of the file to open.</param>
<param name="entities">A dictionary of custom entity definitions to be used when resolving XML entities within the document.</param>
<returns>An <see cref="T:Svg.SvgDocument"/> with the contents loaded.</returns>
<exception cref="T:System.IO.FileNotFoundException">The document at the specified <paramref name="path"/> cannot be found.</exception>
</member>
<member name="M:Svg.SvgDocument.Open``1(System.IO.Stream)">
<summary>
Attempts to open an SVG document from the specified <see cref="T:System.IO.Stream"/>.
</summary>
<param name="stream">The <see cref="T:System.IO.Stream"/> containing the SVG document to open.</param>
</member>
<member name="M:Svg.SvgDocument.FromSvg``1(System.String)">
<summary>
Attempts to create an SVG document from the specified string data.
</summary>
<param name="svg">The SVG data.</param>
</member>
<member name="M:Svg.SvgDocument.Open``1(System.IO.Stream,System.Collections.Generic.Dictionary{System.String,System.String})">
<summary>
Opens an SVG document from the specified <see cref="T:System.IO.Stream"/> and adds the specified entities.
</summary>
<param name="stream">The <see cref="T:System.IO.Stream"/> containing the SVG document to open.</param>
<param name="entities">Custom entity definitions.</param>
<exception cref="T:System.ArgumentNullException">The <paramref name="stream"/> parameter cannot be <c>null</c>.</exception>
</member>
<member name="M:Svg.SvgDocument.Open(System.Xml.XmlDocument)">
<summary>
Opens an SVG document from the specified <see cref="T:System.Xml.XmlDocument"/>.
</summary>
<param name="document">The <see cref="T:System.Xml.XmlDocument"/> containing the SVG document XML.</param>
<exception cref="T:System.ArgumentNullException">The <paramref name="document"/> parameter cannot be <c>null</c>.</exception>
</member>
<member name="M:Svg.SvgDocument.Draw(Svg.ISvgRenderer)">
<summary>
Renders the <see cref="T:Svg.SvgDocument"/> to the specified <see cref="T:Svg.ISvgRenderer"/>.
</summary>
<param name="renderer">The <see cref="T:Svg.ISvgRenderer"/> to render the document with.</param>
<exception cref="T:System.ArgumentNullException">The <paramref name="renderer"/> parameter cannot be <c>null</c>.</exception>
</member>
<member name="M:Svg.SvgDocument.Draw(System.Drawing.Graphics)">
<summary>
Renders the <see cref="T:Svg.SvgDocument"/> to the specified <see cref="T:System.Drawing.Graphics"/>.
</summary>
<param name="graphics">The <see cref="T:System.Drawing.Graphics"/> to be rendered to.</param>
<exception cref="T:System.ArgumentNullException">The <paramref name="graphics"/> parameter cannot be <c>null</c>.</exception>
</member>
<member name="M:Svg.SvgDocument.Draw">
<summary>
Renders the <see cref="T:Svg.SvgDocument"/> and returns the image as a <see cref="T:System.Drawing.Bitmap"/>.
</summary>
<returns>A <see cref="T:System.Drawing.Bitmap"/> containing the rendered document.</returns>
</member>
<member name="M:Svg.SvgDocument.Draw(System.Drawing.Bitmap)">
<summary>
Renders the <see cref="T:Svg.SvgDocument"/> into a given Bitmap <see cref="T:System.Drawing.Bitmap"/>.
</summary>
</member>
<member name="M:Svg.SvgDocument.Draw(System.Int32,System.Int32)">
<summary>
Renders the <see cref="T:Svg.SvgDocument"/> in given size and returns the image as a <see cref="T:System.Drawing.Bitmap"/>.
</summary>
<returns>A <see cref="T:System.Drawing.Bitmap"/> containing the rendered document.</returns>
</member>
<member name="M:Svg.SvgDocument.RasterizeDimensions(System.Drawing.SizeF@,System.Int32,System.Int32)">
<summary>
If both or one of raster height and width is not given (0), calculate that missing value from original SVG size
while keeping original SVG size ratio
</summary>
<param name="size"></param>
<param name="rasterWidth"></param>
<param name="rasterHeight"></param>
</member>
<member name="T:Svg.SvgAttributeAttribute">
<summary>
Specifies the SVG attribute name of the associated property.
</summary>
</member>
<member name="F:Svg.SvgAttributeAttribute.SvgNamespace">
<summary>
Gets a <see cref="T:System.String"/> containing the XLink namespace (http://www.w3.org/1999/xlink).
</summary>
</member>
<member name="M:Svg.SvgAttributeAttribute.Match(System.Object)">
<summary>
When overridden in a derived class, returns a value that indicates whether this instance equals a specified object.
</summary>
<param name="obj">An <see cref="T:System.Object"/> to compare with this instance of <see cref="T:System.Attribute"/>.</param>
<returns>
true if this instance equals <paramref name="obj"/>; otherwise, false.
</returns>
</member>
<member name="P:Svg.SvgAttributeAttribute.NamespaceAndName">
<summary>
Gets the name of the SVG attribute.
</summary>
</member>
<member name="P:Svg.SvgAttributeAttribute.Name">
<summary>
Gets the name of the SVG attribute.
</summary>
</member>
<member name="P:Svg.SvgAttributeAttribute.NameSpace">
<summary>
Gets the namespace of the SVG attribute.
</summary>
</member>
<member name="M:Svg.SvgAttributeAttribute.#ctor">
<summary>
Initializes a new instance of the <see cref="T:Svg.SvgAttributeAttribute"/> class.
</summary>
</member>
<member name="M:Svg.SvgAttributeAttribute.#ctor(System.String)">
<summary>
Initializes a new instance of the <see cref="T:Svg.SvgAttributeAttribute"/> class with the specified attribute name.
</summary>
<param name="name">The name of the SVG attribute.</param>
</member>
<member name="M:Svg.SvgAttributeAttribute.#ctor(System.String,System.String)">
<summary>
Initializes a new instance of the <see cref="T:Svg.SvgAttributeAttribute"/> class with the specified SVG attribute name and namespace.
</summary>
<param name="name">The name of the SVG attribute.</param>
<param name="nameSpace">The namespace of the SVG attribute (e.g. http://www.w3.org/2000/svg).</param>
</member>
<member name="T:Svg.SvgAttributeCollection">
<summary>
A collection of Scalable Vector Attributes that can be inherited from the owner elements ancestors.
</summary>
</member>
<member name="M:Svg.SvgAttributeCollection.#ctor(Svg.SvgElement)">
<summary>
Initialises a new instance of a <see cref="T:Svg.SvgAttributeCollection"/> with the given <see cref="T:Svg.SvgElement"/> as the owner.
</summary>
<param name="owner">The <see cref="T:Svg.SvgElement"/> owner of the collection.</param>
</member>
<member name="M:Svg.SvgAttributeCollection.GetAttribute``1(System.String)">
<summary>
Gets the attribute with the specified name.
</summary>
<typeparam name="TAttributeType">The type of the attribute value.</typeparam>
<param name="attributeName">A <see cref="T:System.String"/> containing the name of the attribute.</param>
<returns>The attribute value if available; otherwise the default value of <typeparamref name="TAttributeType"/>.</returns>
</member>
<member name="M:Svg.SvgAttributeCollection.GetAttribute``1(System.String,``0)">
<summary>
Gets the attribute with the specified name.
</summary>
<typeparam name="T">The type of the attribute value.</typeparam>
<param name="attributeName">A <see cref="T:System.String"/> containing the name of the attribute.</param>
<param name="defaultValue">The value to return if a value hasn't already been specified.</param>
<returns>The attribute value if available; otherwise the default value of <typeparamref name="T"/>.</returns>
</member>
<member name="M:Svg.SvgAttributeCollection.GetInheritedAttribute``1(System.String)">
<summary>
Gets the attribute with the specified name and inherits from ancestors if there is no attribute set.
</summary>
<typeparam name="TAttributeType">The type of the attribute value.</typeparam>
<param name="attributeName">A <see cref="T:System.String"/> containing the name of the attribute.</param>
<returns>The attribute value if available; otherwise the ancestors value for the same attribute; otherwise the default value of <typeparamref name="TAttributeType"/>.</returns>
</member>
<member name="P:Svg.SvgAttributeCollection.Item(System.String)">
<summary>
Gets the attribute with the specified name.
</summary>
<param name="attributeName">A <see cref="T:System.String"/> containing the attribute name.</param>
<returns>The attribute value associated with the specified name; If there is no attribute the parent's value will be inherited.</returns>
</member>
<member name="E:Svg.SvgAttributeCollection.AttributeChanged">
<summary>
Fired when an Atrribute has changed
</summary>
</member>
<member name="T:Svg.SvgCustomAttributeCollection">
<summary>
A collection of Custom Attributes
</summary>
</member>
<member name="M:Svg.SvgCustomAttributeCollection.#ctor(Svg.SvgElement)">
<summary>
Initialises a new instance of a <see cref="T:Svg.SvgAttributeCollection"/> with the given <see cref="T:Svg.SvgElement"/> as the owner.
</summary>
<param name="owner">The <see cref="T:Svg.SvgElement"/> owner of the collection.</param>
</member>
<member name="P:Svg.SvgCustomAttributeCollection.Item(System.String)">
<summary>
Gets the attribute with the specified name.
</summary>
<param name="attributeName">A <see cref="T:System.String"/> containing the attribute name.</param>
<returns>The attribute value associated with the specified name; If there is no attribute the parent's value will be inherited.</returns>
</member>
<member name="E:Svg.SvgCustomAttributeCollection.AttributeChanged">
<summary>
Fired when an Atrribute has changed
</summary>
</member>
<member name="T:Svg.AttributeEventArgs">
<summary>
Describes the Attribute which was set
</summary>
</member>
<member name="T:Svg.ContentEventArgs">
<summary>
Content of this whas was set
</summary>
</member>
<member name="T:Svg.ChildAddedEventArgs">
<summary>
Describes the Attribute which was set
</summary>
</member>
<member name="T:Svg.MouseArg">
<summary>
Represents the state of the mouse at the moment the event occured.
</summary>
</member>
<member name="F:Svg.MouseArg.Button">
<summary>
1 = left, 2 = middle, 3 = right
</summary>
</member>
<member name="F:Svg.MouseArg.ClickCount">
<summary>
Amount of mouse clicks, e.g. 2 for double click
</summary>
</member>
<member name="F:Svg.MouseArg.AltKey">
<summary>
Alt modifier key pressed
</summary>
</member>
<member name="F:Svg.MouseArg.ShiftKey">
<summary>
Shift modifier key pressed
</summary>
</member>
<member name="F:Svg.MouseArg.CtrlKey">
<summary>
Control modifier key pressed
</summary>
</member>
<member name="T:Svg.StringArg">
<summary>
Represents a string argument
</summary>
</member>
<member name="F:Svg.MouseScrollArg.AltKey">
<summary>
Alt modifier key pressed
</summary>
</member>
<member name="F:Svg.MouseScrollArg.ShiftKey">
<summary>
Shift modifier key pressed
</summary>
</member>
<member name="F:Svg.MouseScrollArg.CtrlKey">
<summary>
Control modifier key pressed
</summary>
</member>
<member name="T:Svg.ISvgDescriptiveElement">
<summary>This interface mostly indicates that a node is not to be drawn when rendering the SVG.</summary>
</member>
<member name="T:Svg.SvgElementCollection">
<summary>
Represents a collection of <see cref="T:Svg.SvgElement"/>s.
</summary>
</member>
<member name="M:Svg.SvgElementCollection.#ctor(Svg.SvgElement)">
<summary>
Initialises a new instance of an <see cref="T:Svg.SvgElementCollection"/> class.
</summary>
<param name="owner">The owner <see cref="T:Svg.SvgElement"/> of the collection.</param>
</member>
<member name="M:Svg.SvgElementCollection.IndexOf(Svg.SvgElement)">
<summary>
Returns the index of the specified <see cref="T:Svg.SvgElement"/> in the collection.
</summary>
<param name="item">The <see cref="T:Svg.SvgElement"/> to search for.</param>
<returns>The index of the element if it is present; otherwise -1.</returns>
</member>
<member name="M:Svg.SvgElementCollection.Insert(System.Int32,Svg.SvgElement)">
<summary>
Inserts the given <see cref="T:Svg.SvgElement"/> to the collection at the specified index.
</summary>
<param name="index">The index that the <paramref name="item"/> should be added at.</param>
<param name="item">The <see cref="T:Svg.SvgElement"/> to be added.</param>
</member>
<member name="M:Svg.SvgElementCollection.FindSvgElementsOf``1">
<summary>
expensive recursive search for nodes of type T
</summary>
<typeparam name="T"></typeparam>
<returns></returns>
</member>
<member name="M:Svg.SvgElementCollection.FindSvgElementOf``1">
<summary>
expensive recursive search for first node of type T
</summary>
<typeparam name="T"></typeparam>
<returns></returns>
</member>
<member name="T:Svg.SvgElementFactory">
<summary>
Provides the methods required in order to parse and create <see cref="T:Svg.SvgElement"/> instances from XML.
</summary>
</member>
<member name="P:Svg.SvgElementFactory.AvailableElements">
<summary>
Gets a list of available types that can be used when creating an <see cref="T:Svg.SvgElement"/>.
</summary>
</member>
<member name="M:Svg.SvgElementFactory.CreateDocument``1(System.Xml.XmlReader)">
<summary>
Creates an <see cref="T:Svg.SvgDocument"/> from the current node in the specified <see cref="T:System.Xml.XmlTextReader"/>.
</summary>
<param name="reader">The <see cref="T:System.Xml.XmlTextReader"/> containing the node to parse into an <see cref="T:Svg.SvgDocument"/>.</param>
<exception cref="T:System.ArgumentNullException">The <paramref name="reader"/> parameter cannot be <c>null</c>.</exception>
<exception cref="T:System.InvalidOperationException">The CreateDocument method can only be used to parse root <svg> elements.</exception>
</member>
<member name="M:Svg.SvgElementFactory.CreateElement(System.Xml.XmlReader,Svg.SvgDocument)">
<summary>
Creates an <see cref="T:Svg.SvgElement"/> from the current node in the specified <see cref="T:System.Xml.XmlTextReader"/>.
</summary>
<param name="reader">The <see cref="T:System.Xml.XmlTextReader"/> containing the node to parse into a subclass of <see cref="T:Svg.SvgElement"/>.</param>
<param name="document">The <see cref="T:Svg.SvgDocument"/> that the created element belongs to.</param>
<exception cref="T:System.ArgumentNullException">The <paramref name="reader"/> and <paramref name="document"/> parameters cannot be <c>null</c>.</exception>
</member>
<member name="T:Svg.SvgElementFactory.ElementInfo">
<summary>
Contains information about a type inheriting from <see cref="T:Svg.SvgElement"/>.
</summary>
</member>
<member name="P:Svg.SvgElementFactory.ElementInfo.ElementName">
<summary>
Gets the SVG name of the <see cref="T:Svg.SvgElement"/>.
</summary>
</member>
<member name="P:Svg.SvgElementFactory.ElementInfo.ElementType">
<summary>
Gets the <see cref="T:System.Type"/> of the <see cref="T:Svg.SvgElement"/> subclass.
</summary>
</member>
<member name="M:Svg.SvgElementFactory.ElementInfo.#ctor(System.String,System.Type)">
<summary>
Initializes a new instance of the <see cref="T:Svg.SvgElementFactory.ElementInfo"/> struct.
</summary>
<param name="elementName">Name of the element.</param>
<param name="elementType">Type of the element.</param>
</member>
<member name="M:Svg.SvgElementFactory.ElementInfo.#ctor">
<summary>
Initializes a new instance of the <see cref="T:Svg.SvgElementFactory.ElementInfo"/> class.
</summary>
</member>
<member name="M:Svg.SvgPathBuilder.Parse(System.String)">
<summary>
Parses the specified string into a collection of path segments.
</summary>
<param name="path">A <see cref="T:System.String"/> containing path data.</param>
</member>
<member name="M:Svg.SvgPathBuilder.ToAbsolute(System.Single,System.Single,Svg.Pathing.SvgPathSegmentList,System.Boolean)">
<summary>
Creates point with absolute coorindates.
</summary>
<param name="x">Raw X-coordinate value.</param>
<param name="y">Raw Y-coordinate value.</param>
<param name="segments">Current path segments.</param>
<param name="isRelativeBoth"><b>true</b> if <paramref name="x"/> and <paramref name="y"/> contains relative coordinate values, otherwise <b>false</b>.</param>
<returns><see cref="T:System.Drawing.PointF"/> that contains absolute coordinates.</returns>
</member>
<member name="M:Svg.SvgPathBuilder.ToAbsolute(System.Single,System.Single,Svg.Pathing.SvgPathSegmentList,System.Boolean,System.Boolean)">
<summary>
Creates point with absolute coorindates.
</summary>
<param name="x">Raw X-coordinate value.</param>
<param name="y">Raw Y-coordinate value.</param>
<param name="segments">Current path segments.</param>
<param name="isRelativeX"><b>true</b> if <paramref name="x"/> contains relative coordinate value, otherwise <b>false</b>.</param>
<param name="isRelativeY"><b>true</b> if <paramref name="y"/> contains relative coordinate value, otherwise <b>false</b>.</param>
<returns><see cref="T:System.Drawing.PointF"/> that contains absolute coordinates.</returns>
</member>
<member name="T:Svg.SvgElementIdManager">
<summary>
Provides methods to ensure element ID's are valid and unique.
</summary>
</member>
<member name="M:Svg.SvgElementIdManager.GetElementById(System.String)">
<summary>
Retrieves the <see cref="T:Svg.SvgElement"/> with the specified ID.
</summary>
<param name="id">A <see cref="T:System.String"/> containing the ID of the element to find.</param>
<returns>An <see cref="T:Svg.SvgElement"/> of one exists with the specified ID; otherwise false.</returns>
</member>
<member name="M:Svg.SvgElementIdManager.Add(Svg.SvgElement)">
<summary>
Adds the specified <see cref="T:Svg.SvgElement"/> for ID management.
</summary>
<param name="element">The <see cref="T:Svg.SvgElement"/> to be managed.</param>
</member>
<member name="M:Svg.SvgElementIdManager.AddAndForceUniqueID(Svg.SvgElement,Svg.SvgElement,System.Boolean,System.Action{Svg.SvgElement,System.String,System.String})">
<summary>
Adds the specified <see cref="T:Svg.SvgElement"/> for ID management.
And can auto fix the ID if it already exists or it starts with a number.
</summary>
<param name="element">The <see cref="T:Svg.SvgElement"/> to be managed.</param>
<param name="autoForceUniqueID">Pass true here, if you want the ID to be fixed</param>
<param name="logElementOldIDNewID">If not null, the action is called before the id is fixed</param>
<returns>true, if ID was altered</returns>
</member>
<member name="M:Svg.SvgElementIdManager.Remove(Svg.SvgElement)">
<summary>
Removed the specified <see cref="T:Svg.SvgElement"/> from ID management.
</summary>
<param name="element">The <see cref="T:Svg.SvgElement"/> to be removed from ID management.</param>
</member>
<member name="M:Svg.SvgElementIdManager.EnsureValidId(System.String,System.Boolean)">
<summary>
Ensures that the specified ID is valid within the containing <see cref="T:Svg.SvgDocument"/>.
</summary>
<param name="id">A <see cref="T:System.String"/> containing the ID to validate.</param>
<param name="autoForceUniqueID">Creates a new unique id <see cref="T:System.String"/>.</param>
<exception cref="T:Svg.SvgException">
<para>The ID cannot start with a digit.</para>
<para>An element with the same ID already exists within the containing <see cref="T:Svg.SvgDocument"/>.</para>
</exception>
</member>
<member name="M:Svg.SvgElementIdManager.#ctor(Svg.SvgDocument)">
<summary>
Initialises a new instance of an <see cref="T:Svg.SvgElementIdManager"/>.
</summary>
<param name="document">The <see cref="T:Svg.SvgDocument"/> containing the <see cref="T:Svg.SvgElement"/>s to manage.</param>
</member>
<member name="T:Svg.SvgUnit">
<summary>
Represents a unit in an Scalable Vector Graphics document.
</summary>
</member>
<member name="F:Svg.SvgUnit.Empty">
<summary>
Gets and empty <see cref="T:Svg.SvgUnit"/>.
</summary>
</member>
<member name="F:Svg.SvgUnit.None">
<summary>
Gets an <see cref="T:Svg.SvgUnit"/> with a value of none.
</summary>
</member>
<member name="P:Svg.SvgUnit.IsEmpty">
<summary>
Gets a value to determine whether the unit is empty.
</summary>
</member>
<member name="P:Svg.SvgUnit.IsNone">
<summary>
Gets whether this unit is none.
</summary>
</member>
<member name="P:Svg.SvgUnit.Value">
<summary>
Gets the value of the unit.
</summary>
</member>
<member name="P:Svg.SvgUnit.Type">
<summary>
Gets the <see cref="T:Svg.SvgUnitType"/> of unit.
</summary>
</member>
<member name="M:Svg.SvgUnit.ToDeviceValue(Svg.ISvgRenderer,Svg.UnitRenderingType,Svg.SvgElement)">
<summary>
Converts the current unit to one that can be used at render time.
</summary>
<param name="boundable">The container element used as the basis for calculations</param>
<returns>The representation of the current unit in a device value (usually pixels).</returns>
</member>
<member name="M:Svg.SvgUnit.ToPercentage">
<summary>
Converts the current unit to a percentage, if applicable.
</summary>
<returns>An <see cref="T:Svg.SvgUnit"/> of type <see cref="!:SvgUnitType.Perscentage"/>.</returns>
</member>
<member name="M:Svg.SvgUnit.op_Implicit(Svg.SvgUnit)~System.Single">
<summary>
Performs an implicit conversion from <see cref="T:Svg.SvgUnit"/> to <see cref="T:System.Single"/>.
</summary>
<param name="value">The value.</param>
<returns>The result of the conversion.</returns>
</member>
<member name="M:Svg.SvgUnit.op_Implicit(System.Single)~Svg.SvgUnit">
<summary>
Performs an implicit conversion from <see cref="T:System.Single"/> to <see cref="T:Svg.SvgUnit"/>.
</summary>
<param name="value">The value.</param>
<returns>The result of the conversion.</returns>
</member>
<member name="M:Svg.SvgUnit.#ctor(Svg.SvgUnitType,System.Single)">
<summary>
Initializes a new instance of the <see cref="T:Svg.SvgUnit"/> struct.
</summary>
<param name="type">The type.</param>
<param name="value">The value.</param>
</member>
<member name="M:Svg.SvgUnit.#ctor(System.Single)">
<summary>
Initializes a new instance of the <see cref="T:Svg.SvgUnit"/> struct.
</summary>
<param name="value">The value.</param>
</member>
<member name="T:Svg.SvgUnitType">
<summary>
Defines the various types of unit an <see cref="T:Svg.SvgUnit"/> can be.
</summary>
</member>
<member name="F:Svg.SvgUnitType.None">
<summary>
Indicates that the unit holds no value.
</summary>
</member>
<member name="F:Svg.SvgUnitType.Pixel">
<summary>
Indicates that the unit is in pixels.
</summary>
</member>
<member name="F:Svg.SvgUnitType.Em">
<summary>
Indicates that the unit is equal to the pt size of the current font.
</summary>
</member>
<member name="F:Svg.SvgUnitType.Ex">
<summary>
Indicates that the unit is equal to the x-height of the current font.
</summary>
</member>
<member name="F:Svg.SvgUnitType.Percentage">
<summary>
Indicates that the unit is a percentage.
</summary>
</member>
<member name="F:Svg.SvgUnitType.User">
<summary>
Indicates that the unit has no unit identifier and is a value in the current user coordinate system.
</summary>
</member>
<member name="F:Svg.SvgUnitType.Inch">
<summary>
Indicates the the unit is in inches.
</summary>
</member>
<member name="F:Svg.SvgUnitType.Centimeter">
<summary>
Indicates that the unit is in centimeters.
</summary>
</member>
<member name="F:Svg.SvgUnitType.Millimeter">
<summary>
Indicates that the unit is in millimeters.
</summary>
</member>
<member name="F:Svg.SvgUnitType.Pica">
<summary>
Indicates that the unit is in picas.
</summary>
</member>
<member name="F:Svg.SvgUnitType.Point">
<summary>
Indicates that the unit is in points, the smallest unit of measure, being a subdivision of the larger <see cref="F:Svg.SvgUnitType.Pica"/>. There are 12 points in the <see cref="F:Svg.SvgUnitType.Pica"/>.
</summary>
</member>
<member name="P:Svg.SvgTextReader.Value">
<summary>
Gets the text value of the current node.
</summary>
<value></value>
<returns>The value returned depends on the <see cref="P:System.Xml.XmlTextReader.NodeType"/> of the node. The following table lists node types that have a value to return. All other node types return String.Empty.Node Type Value AttributeThe value of the attribute. CDATAThe content of the CDATA section. CommentThe content of the comment. DocumentTypeThe internal subset. ProcessingInstructionThe entire content, excluding the target. SignificantWhitespaceThe white space within an xml:space= 'preserve' scope. TextThe content of the text node. WhitespaceThe white space between markup. XmlDeclarationThe content of the declaration. </returns>
</member>
<member name="P:Svg.SvgTextReader.LocalName">
<summary>
Gets the local name of the current node.
</summary>
<value></value>
<returns>The name of the current node with the prefix removed. For example, LocalName is book for the element <bk:book>.For node types that do not have a name (like Text, Comment, and so on), this property returns String.Empty.</returns>
</member>
<member name="M:Svg.SvgTextReader.MoveToNextAttribute">
<summary>
Moves to the next attribute.
</summary>
<returns>
true if there is a next attribute; false if there are no more attributes.
</returns>
</member>
<member name="M:Svg.SvgTextReader.Read">
<summary>
Reads the next node from the stream.
</summary>
<returns>
true if the next node was read successfully; false if there are no more nodes to read.
</returns>
<exception cref="T:System.Xml.XmlException">An error occurred while parsing the XML. </exception>
</member>
<member name="M:Svg.SvgTextReader.ResolveEntity">
<summary>
Resolves the entity reference for EntityReference nodes.
</summary>
</member>
<member name="T:Svg.Text.FontFamily">
<summary>
http://stackoverflow.com/questions/3633000/net-enumerate-winforms-font-styles
</summary>
</member>
<member name="P:Svg.SvgFontFace.FontFamily">
<summary>
Indicates which font family is to be used to render the text.
</summary>
</member>
<member name="P:Svg.SvgFontFace.FontSize">
<summary>
Refers to the size of the font from baseline to baseline when multiple lines of text are set solid in a multiline layout environment.
</summary>
</member>
<member name="P:Svg.SvgFontFace.FontStyle">
<summary>
Refers to the style of the font.
</summary>
</member>
<member name="P:Svg.SvgFontFace.FontVariant">
<summary>
Refers to the varient of the font.
</summary>
</member>
<member name="P:Svg.SvgFontFace.FontWeight">
<summary>
Refers to the boldness of the font.
</summary>
</member>
<member name="P:Svg.SvgGlyph.PathData">
<summary>
Gets or sets a <see cref="T:Svg.Pathing.SvgPathSegmentList"/> of path data.
</summary>
</member>
<member name="M:Svg.SvgGlyph.Path(Svg.ISvgRenderer)">
<summary>
Gets the <see cref="T:System.Drawing.Drawing2D.GraphicsPath"/> for this element.
</summary>
</member>
<member name="P:Svg.SvgGlyph.RequiresSmoothRendering">
<summary>
Gets or sets a value to determine if anti-aliasing should occur when the element is being rendered.
</summary>
</member>
<member name="P:Svg.SvgGlyph.Bounds">
<summary>
Gets the bounds of the element.
</summary>
<value>The bounds.</value>
</member>
<member name="M:Svg.SvgGlyph.#ctor">
<summary>
Initializes a new instance of the <see cref="T:Svg.SvgGlyph"/> class.
</summary>
</member>
<member name="T:Svg.SvgText">
<summary>
The <see cref="T:Svg.SvgText"/> element defines a graphics element consisting of text.
</summary>
</member>
<member name="M:Svg.SvgText.#ctor">
<summary>
Initializes the <see cref="T:Svg.SvgText"/> class.
</summary>
</member>
<member name="M:Svg.SvgText.#ctor(System.String)">
<summary>
Initializes a new instance of the <see cref="T:Svg.SvgText"/> class.
</summary>
<param name="text">The text.</param>
</member>
<member name="P:Svg.SvgTextBase.Text">
<summary>
Gets or sets the text to be rendered.
</summary>
</member>
<member name="P:Svg.SvgTextBase.TextAnchor">
<summary>
Gets or sets the text anchor.
</summary>
<value>The text anchor.</value>
</member>
<member name="P:Svg.SvgTextBase.X">
<summary>
Gets or sets the X.
</summary>
<value>The X.</value>
</member>
<member name="P:Svg.SvgTextBase.Dx">
<summary>
Gets or sets the dX.
</summary>
<value>The dX.</value>
</member>
<member name="P:Svg.SvgTextBase.Y">
<summary>
Gets or sets the Y.
</summary>
<value>The Y.</value>
</member>
<member name="P:Svg.SvgTextBase.Dy">
<summary>
Gets or sets the dY.
</summary>
<value>The dY.</value>
</member>
<member name="P:Svg.SvgTextBase.Rotate">
<summary>
Gets or sets the rotate.
</summary>
<value>The rotate.</value>
</member>
<member name="P:Svg.SvgTextBase.TextLength">
<summary>
The pre-calculated length of the text
</summary>
</member>
<member name="P:Svg.SvgTextBase.LengthAdjust">
<summary>
Gets or sets the text anchor.
</summary>
<value>The text anchor.</value>
</member>
<member name="P:Svg.SvgTextBase.LetterSpacing">
<summary>
Specifies spacing behavior between text characters.
</summary>
</member>
<member name="P:Svg.SvgTextBase.WordSpacing">
<summary>
Specifies spacing behavior between words.
</summary>
</member>
<member name="P:Svg.SvgTextBase.Fill">
<summary>
Gets or sets the fill.
</summary>
<remarks>
<para>Unlike other <see cref="!:SvgGraphicsElement"/>s, <see cref="T:Svg.SvgText"/> has a default fill of black rather than transparent.</para>
</remarks>
<value>The fill.</value>
</member>
<member name="M:Svg.SvgTextBase.ToString">
<summary>
Returns a <see cref="T:System.String"/> that represents the current <see cref="T:System.Object"/>.
</summary>
<returns>
A <see cref="T:System.String"/> that represents the current <see cref="T:System.Object"/>.
</returns>
</member>
<member name="P:Svg.SvgTextBase.RequiresSmoothRendering">
<summary>
Gets or sets a value to determine if anti-aliasing should occur when the element is being rendered.
</summary>
<value></value>
</member>
<member name="P:Svg.SvgTextBase.Bounds">
<summary>
Gets the bounds of the element.
</summary>
<value>The bounds.</value>
</member>
<member name="M:Svg.SvgTextBase.Render(Svg.ISvgRenderer)">
<summary>
Renders the <see cref="T:Svg.SvgElement"/> and contents to the specified <see cref="T:System.Drawing.Graphics"/> object.
</summary>
<param name="renderer">The <see cref="T:Svg.ISvgRenderer"/> object to render to.</param>
<remarks>Necessary to make sure that any internal tspan elements get rendered as well</remarks>
</member>
<member name="M:Svg.SvgTextBase.Path(Svg.ISvgRenderer)">
<summary>
Gets the <see cref="T:System.Drawing.Drawing2D.GraphicsPath"/> for this element.
</summary>
<value></value>
</member>
<member name="M:Svg.SvgTextBase.SetPath(Svg.SvgTextBase.TextDrawingState,System.Boolean)">
<summary>
Sets the path on this element and all child elements. Uses the state
object to track the state of the drawing
</summary>
<param name="state">State of the drawing operation</param>
</member>
<member name="M:Svg.SvgTextBase.PrepareText(System.String)">
<summary>
Prepare the text according to the whitespace handling rules. <see href="http://www.w3.org/TR/SVG/text.html">SVG Spec</see>.
</summary>
<param name="value">Text to be prepared</param>
<returns>Prepared text</returns>
</member>
<member name="M:Svg.SvgTextBase.ShouldWriteElement">
<summary>Empty text elements are not legal - only write this element if it has children.</summary>
</member>
<member name="T:Svg.SvgTextAnchor">
<summary>
Text anchor is used to align (start-, middle- or end-alignment) a string of text relative to a given point.
</summary>
</member>
<member name="F:Svg.SvgTextAnchor.Inherit">
<summary>The value is inherited from the parent element.</summary>
</member>
<member name="F:Svg.SvgTextAnchor.Start">
<summary>
The rendered characters are aligned such that the start of the text string is at the initial current text position.
</summary>
</member>
<member name="F:Svg.SvgTextAnchor.Middle">
<summary>
The rendered characters are aligned such that the middle of the text string is at the current text position.
</summary>
</member>
<member name="F:Svg.SvgTextAnchor.End">
<summary>
The rendered characters are aligned such that the end of the text string is at the initial current text position.
</summary>
</member>
<member name="T:Svg.SvgTextPath">
<summary>
The <see cref="T:Svg.SvgText"/> element defines a graphics element consisting of text.
</summary>
</member>
<member name="M:Svg.PathStatistics.CubicBezierSegment.GaussianQuadrature(System.Func{System.Double,System.Double},System.Double,System.Double,System.Int32)">
<summary>
Evaluates the integral of the function over the integral using the specified number of points
</summary>
<param name="func"></param>
<param name="a"></param>
<param name="b"></param>
<param name="points"></param>
</member>
<member name="M:Svg.PathStatistics.CubicBezierSegment.CubicBezierCurve(System.Drawing.PointF,System.Drawing.PointF,System.Drawing.PointF,System.Drawing.PointF,System.Double)">
<remarks>http://en.wikipedia.org/wiki/B%C3%A9zier_curve</remarks>
</member>
<member name="M:Svg.PathStatistics.CubicBezierSegment.CubicBezierDerivative(System.Drawing.PointF,System.Drawing.PointF,System.Drawing.PointF,System.Drawing.PointF,System.Double)">
<remarks>http://www.cs.mtu.edu/~shene/COURSES/cs3621/NOTES/spline/Bezier/bezier-der.html</remarks>
</member>
<member name="T:Svg.ISvgTransformable">
<summary>
Represents and element that may be transformed.
</summary>
</member>
<member name="P:Svg.ISvgTransformable.Transforms">
<summary>
Gets or sets an <see cref="T:Svg.Transforms.SvgTransformCollection"/> of element transforms.
</summary>
</member>
<member name="M:Svg.ISvgTransformable.PushTransforms(Svg.ISvgRenderer)">
<summary>
Applies the required transforms to <see cref="T:Svg.ISvgRenderer"/>.
</summary>
<param name="renderer">The <see cref="T:Svg.ISvgRenderer"/> to be transformed.</param>
</member>
<member name="M:Svg.ISvgTransformable.PopTransforms(Svg.ISvgRenderer)">
<summary>
Removes any previously applied transforms from the specified <see cref="T:Svg.ISvgRenderer"/>.
</summary>
<param name="renderer">The <see cref="T:Svg.ISvgRenderer"/> that should have transforms removed.</param>
</member>
<member name="T:Svg.Transforms.SvgMatrix">
<summary>
The class which applies custom transform to this Matrix (Required for projects created by the Inkscape).
</summary>
</member>
<member name="T:Svg.Transforms.SvgShear">
<summary>
The class which applies the specified shear vector to this Matrix.
</summary>
</member>
<member name="T:Svg.Transforms.SvgSkew">
<summary>
The class which applies the specified skew vector to this Matrix.
</summary>
</member>
<member name="M:Svg.Transforms.SvgTransformCollection.GetMatrix">
<summary>
Multiplies all matrices
</summary>
<returns>The result of all transforms</returns>
</member>
<member name="E:Svg.Transforms.SvgTransformCollection.TransformChanged">
<summary>
Fired when an SvgTransform has changed
</summary>
</member>
<member name="M:Svg.Transforms.SvgTransformConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object)">
<summary>
Converts the given object to the type of this converter, using the specified context and culture information.
</summary>
<param name="context">An <see cref="T:System.ComponentModel.ITypeDescriptorContext"/> that provides a format context.</param>
<param name="culture">The <see cref="T:System.Globalization.CultureInfo"/> to use as the current culture.</param>
<param name="value">The <see cref="T:System.Object"/> to convert.</param>
<returns>
An <see cref="T:System.Object"/> that represents the converted value.
</returns>
<exception cref="T:System.NotSupportedException">The conversion cannot be performed. </exception>
</member>
<member name="T:Svg.Web.SvgHandler">
<summary>
A handler to asynchronously render Scalable Vector Graphics files (usually *.svg or *.xml file extensions).
</summary>
<remarks>
<para>If a crawler requests the SVG file the raw XML will be returned rather than the image to allow crawlers to better read the image.</para>
<para>Adding "?raw=true" to the querystring will alos force the handler to render the raw SVG.</para>
</remarks>
</member>
<member name="P:Svg.Web.SvgHandler.IsReusable">
<summary>
Gets a value indicating whether another request can use the <see cref="T:System.Web.IHttpHandler"/> instance.
</summary>
<value></value>
<returns>true if the <see cref="T:System.Web.IHttpHandler"/> instance is reusable; otherwise, false.</returns>
</member>
<member name="M:Svg.Web.SvgHandler.ProcessRequest(System.Web.HttpContext)">
<summary>
Enables processing of HTTP Web requests by a custom HttpHandler that implements the <see cref="T:System.Web.IHttpHandler"/> interface.
</summary>
<param name="context">An <see cref="T:System.Web.HttpContext"/> object that provides references to the intrinsic server objects (for example, Request, Response, Session, and Server) used to service HTTP requests.</param>
</member>
<member name="M:Svg.Web.SvgHandler.BeginProcessRequest(System.Web.HttpContext,System.AsyncCallback,System.Object)">
<summary>
Initiates an asynchronous call to the HTTP handler.
</summary>
<param name="context">An <see cref="T:System.Web.HttpContext"/> object that provides references to intrinsic server objects (for example, Request, Response, Session, and Server) used to service HTTP requests.</param>
<param name="cb">The <see cref="T:System.AsyncCallback"/> to call when the asynchronous method call is complete. If <paramref name="cb"/> is null, the delegate is not called.</param>
<param name="extraData">Any extra data needed to process the request.</param>
<returns>
An <see cref="T:System.IAsyncResult"/> that contains information about the status of the process.
</returns>
</member>
<member name="M:Svg.Web.SvgHandler.EndProcessRequest(System.IAsyncResult)">
<summary>
Provides an asynchronous process End method when the process ends.
</summary>
<param name="result">An <see cref="T:System.IAsyncResult"/> that contains information about the status of the process.</param>
</member>
<member name="T:Svg.Web.SvgHandler.SvgAsyncRender">
<summary>
The class to be used when
</summary>
</member>
<member name="T:Svg.Web.SvgHandler.SvgAsyncRenderState">
<summary>
Represents the state of a request for SVG rendering.
</summary>
</member>
<member name="M:Svg.Web.SvgHandler.SvgAsyncRenderState.#ctor(System.Web.HttpContext,System.AsyncCallback,System.Object)">
<summary>
Initializes a new instance of the <see cref="T:Svg.Web.SvgHandler.SvgAsyncRenderState"/> class.
</summary>
<param name="context">The <see cref="T:System.Web.HttpContext"/> of the request.</param>
<param name="callback">The delegate to be called when the rendering is complete.</param>
<param name="extraData">The extra data.</param>
</member>
<member name="M:Svg.Web.SvgHandler.SvgAsyncRenderState.CompleteRequest">
<summary>
Indicates that the rendering is complete and the waiting thread may proceed.
</summary>
</member>
<member name="P:Svg.Web.SvgHandler.SvgAsyncRenderState.AsyncState">
<summary>
Gets a user-defined object that qualifies or contains information about an asynchronous operation.
</summary>
<value></value>
<returns>A user-defined object that qualifies or contains information about an asynchronous operation.</returns>
</member>
<member name="P:Svg.Web.SvgHandler.SvgAsyncRenderState.CompletedSynchronously">
<summary>
Gets an indication of whether the asynchronous operation completed synchronously.
</summary>
<value></value>
<returns>true if the asynchronous operation completed synchronously; otherwise, false.</returns>
</member>
<member name="P:Svg.Web.SvgHandler.SvgAsyncRenderState.IsCompleted">
<summary>
Gets an indication whether the asynchronous operation has completed.
</summary>
<value></value>
<returns>true if the operation is complete; otherwise, false.</returns>
</member>
<member name="P:Svg.Web.SvgHandler.SvgAsyncRenderState.AsyncWaitHandle">
<summary>
Gets a <see cref="T:System.Threading.WaitHandle"/> that is used to wait for an asynchronous operation to complete.
</summary>
<value></value>
<returns>A <see cref="T:System.Threading.WaitHandle"/> that is used to wait for an asynchronous operation to complete.</returns>
</member>
<member name="M:ExCSS.Model.Specification.IsNonPrintable(System.Char)">
The maximum allowed codepoint (defined in Unicode).
</member>
<member name="M:ExCSS.HtmlColor.ToCss(System.Boolean)">
<summary>
Return the shortest form possible
</summary>
</member>
<member name="T:ExCSS.TermList.TermSeparator">
<summary>
exposed enumeration for the adding of separators into term lists
</summary>
</member>
<member name="T:Fizzler.HumanReadableSelectorGenerator">
<summary>
An <see cref="T:Fizzler.ISelectorGenerator"/> implementation that generates
human-readable description of the selector.
</summary>
</member>
<member name="M:Fizzler.HumanReadableSelectorGenerator.OnInit">
<summary>
Initializes the text.
</summary>
</member>
<member name="P:Fizzler.HumanReadableSelectorGenerator.Text">
<summary>
Gets the generated human-readable description text.
</summary>
</member>
<member name="M:Fizzler.HumanReadableSelectorGenerator.OnSelector">
<summary>
Generates human-readable for a selector in a group.
</summary>
</member>
<member name="M:Fizzler.HumanReadableSelectorGenerator.OnClose">
<summary>
Concludes the text.
</summary>
</member>
<member name="M:Fizzler.HumanReadableSelectorGenerator.Add(System.String)">
<summary>
Adds to the generated human-readable text.
</summary>
</member>
<member name="M:Fizzler.HumanReadableSelectorGenerator.Type(Fizzler.NamespacePrefix,System.String)">
<summary>
Generates human-readable text of this type selector.
</summary>
</member>
<member name="M:Fizzler.HumanReadableSelectorGenerator.Universal(Fizzler.NamespacePrefix)">
<summary>
Generates human-readable text of this universal selector.
</summary>
</member>
<member name="M:Fizzler.HumanReadableSelectorGenerator.Id(System.String)">
<summary>
Generates human-readable text of this ID selector.
</summary>
</member>
<member name="M:Fizzler.HumanReadableSelectorGenerator.Fizzler#ISelectorGenerator#Class(System.String)">
<summary>
Generates human-readable text of this class selector.
</summary>
</member>
<member name="M:Fizzler.HumanReadableSelectorGenerator.AttributeExists(Fizzler.NamespacePrefix,System.String)">
<summary>
Generates human-readable text of this attribute selector.
</summary>
</member>
<member name="M:Fizzler.HumanReadableSelectorGenerator.AttributeExact(Fizzler.NamespacePrefix,System.String,System.String)">
<summary>
Generates human-readable text of this attribute selector.
</summary>
</member>
<member name="M:Fizzler.HumanReadableSelectorGenerator.AttributeIncludes(Fizzler.NamespacePrefix,System.String,System.String)">
<summary>
Generates human-readable text of this attribute selector.
</summary>
</member>
<member name="M:Fizzler.HumanReadableSelectorGenerator.AttributeDashMatch(Fizzler.NamespacePrefix,System.String,System.String)">
<summary>
Generates human-readable text of this attribute selector.
</summary>
</member>
<member name="M:Fizzler.HumanReadableSelectorGenerator.AttributePrefixMatch(Fizzler.NamespacePrefix,System.String,System.String)">
<summary>
Generates human-readable text of this attribute selector.
</summary>
</member>
<member name="M:Fizzler.HumanReadableSelectorGenerator.AttributeSuffixMatch(Fizzler.NamespacePrefix,System.String,System.String)">
<summary>
Generates human-readable text of this attribute selector.
</summary>
</member>
<member name="M:Fizzler.HumanReadableSelectorGenerator.AttributeSubstring(Fizzler.NamespacePrefix,System.String,System.String)">
<summary>
Generates human-readable text of this attribute selector.
</summary>
</member>
<member name="M:Fizzler.HumanReadableSelectorGenerator.FirstChild">
<summary>
Generates human-readable text of this pseudo-class selector.
</summary>
</member>
<member name="M:Fizzler.HumanReadableSelectorGenerator.LastChild">
<summary>
Generates human-readable text of this pseudo-class selector.
</summary>
</member>
<member name="M:Fizzler.HumanReadableSelectorGenerator.NthChild(System.Int32,System.Int32)">
<summary>
Generates human-readable text of this pseudo-class selector.
</summary>
</member>
<member name="M:Fizzler.HumanReadableSelectorGenerator.OnlyChild">
<summary>
Generates human-readable text of this pseudo-class selector.
</summary>
</member>
<member name="M:Fizzler.HumanReadableSelectorGenerator.Empty">
<summary>
Generates human-readable text of this pseudo-class selector.
</summary>
</member>
<member name="M:Fizzler.HumanReadableSelectorGenerator.Child">
<summary>
Generates human-readable text of this combinator.
</summary>
</member>
<member name="M:Fizzler.HumanReadableSelectorGenerator.Descendant">
<summary>
Generates human-readable text of this combinator.
</summary>
</member>
<member name="M:Fizzler.HumanReadableSelectorGenerator.Adjacent">
<summary>
Generates human-readable text of this combinator.
</summary>
</member>
<member name="M:Fizzler.HumanReadableSelectorGenerator.GeneralSibling">
<summary>
Generates a <a href="http://www.w3.org/TR/css3-selectors/#combinators">combinator</a>,
which separates two sequences of simple selectors. The elements represented
by the two sequences share the same parent in the document tree and the
element represented by the first sequence precedes (not necessarily
immediately) the element represented by the second one.
</summary>
</member>
<member name="M:Fizzler.HumanReadableSelectorGenerator.NthLastChild(System.Int32,System.Int32)">
<summary>
Generates human-readable text of this combinator.
</summary>
</member>
<member name="T:Fizzler.IElementOps`1">
<summary>
Represents a selectors implementation for an arbitrary document/node system.
</summary>
</member>
<member name="M:Fizzler.IElementOps`1.Type(Fizzler.NamespacePrefix,System.String)">
<summary>
Generates a <a href="http://www.w3.org/TR/css3-selectors/#type-selectors">type selector</a>,
which represents an instance of the element type in the document tree.
</summary>
</member>
<member name="M:Fizzler.IElementOps`1.Universal(Fizzler.NamespacePrefix)">
<summary>
Generates a <a href="http://www.w3.org/TR/css3-selectors/#universal-selector">universal selector</a>,
any single element in the document tree in any namespace
(including those without a namespace) if no default namespace
has been specified for selectors.
</summary>
</member>
<member name="M:Fizzler.IElementOps`1.Id(System.String)">
<summary>
Generates a <a href="http://www.w3.org/TR/css3-selectors/#Id-selectors">ID selector</a>,
which represents an element instance that has an identifier that
matches the identifier in the ID selector.
</summary>
</member>
<member name="M:Fizzler.IElementOps`1.Class(System.String)">
<summary>
Generates a <a href="http://www.w3.org/TR/css3-selectors/#class-html">class selector</a>,
which is an alternative <see cref="M:Fizzler.IElementOps`1.AttributeIncludes(Fizzler.NamespacePrefix,System.String,System.String)"/> when
representing the <c>class</c> attribute.
</summary>
</member>
<member name="M:Fizzler.IElementOps`1.AttributeExists(Fizzler.NamespacePrefix,System.String)">
<summary>
Generates an <a href="http://www.w3.org/TR/css3-selectors/#attribute-selectors">attribute selector</a>
that represents an element with the given attribute <paramref name="name"/>
whatever the values of the attribute.
</summary>
</member>
<member name="M:Fizzler.IElementOps`1.AttributeExact(Fizzler.NamespacePrefix,System.String,System.String)">
<summary>
Generates an <a href="http://www.w3.org/TR/css3-selectors/#attribute-selectors">attribute selector</a>
that represents an element with the given attribute <paramref name="name"/>
and whose value is exactly <paramref name="value"/>.
</summary>
</member>
<member name="M:Fizzler.IElementOps`1.AttributeIncludes(Fizzler.NamespacePrefix,System.String,System.String)">
<summary>
Generates an <a href="http://www.w3.org/TR/css3-selectors/#attribute-selectors">attribute selector</a>
that represents an element with the given attribute <paramref name="name"/>
and whose value is a whitespace-separated list of words, one of
which is exactly <paramref name="value"/>.
</summary>
</member>
<member name="M:Fizzler.IElementOps`1.AttributeDashMatch(Fizzler.NamespacePrefix,System.String,System.String)">
<summary>
Generates an <a href="http://www.w3.org/TR/css3-selectors/#attribute-selectors">attribute selector</a>
that represents an element with the given attribute <paramref name="name"/>,
its value either being exactly <paramref name="value"/> or beginning
with <paramref name="value"/> immediately followed by "-" (U+002D).
</summary>
</member>
<member name="M:Fizzler.IElementOps`1.AttributePrefixMatch(Fizzler.NamespacePrefix,System.String,System.String)">
<summary>
Generates an <a href="http://www.w3.org/TR/css3-selectors/#attribute-selectors">attribute selector</a>
that represents an element with the attribute <paramref name="name"/>
whose value begins with the prefix <paramref name="value"/>.
</summary>
</member>
<member name="M:Fizzler.IElementOps`1.AttributeSuffixMatch(Fizzler.NamespacePrefix,System.String,System.String)">
<summary>
Generates an <a href="http://www.w3.org/TR/css3-selectors/#attribute-selectors">attribute selector</a>
that represents an element with the attribute <paramref name="name"/>
whose value ends with the suffix <paramref name="value"/>.
</summary>
</member>
<member name="M:Fizzler.IElementOps`1.AttributeSubstring(Fizzler.NamespacePrefix,System.String,System.String)">
<summary>
Generates an <a href="http://www.w3.org/TR/css3-selectors/#attribute-selectors">attribute selector</a>
that represents an element with the attribute <paramref name="name"/>
whose value contains at least one instance of the substring <paramref name="value"/>.
</summary>
</member>
<member name="M:Fizzler.IElementOps`1.FirstChild">
<summary>
Generates a <a href="http://www.w3.org/TR/css3-selectors/#pseudo-classes">pseudo-class selector</a>,
which represents an element that is the first child of some other element.
</summary>
</member>
<member name="M:Fizzler.IElementOps`1.LastChild">
<summary>
Generates a <a href="http://www.w3.org/TR/css3-selectors/#pseudo-classes">pseudo-class selector</a>,
which represents an element that is the last child of some other element.
</summary>
</member>
<member name="M:Fizzler.IElementOps`1.NthChild(System.Int32,System.Int32)">
<summary>
Generates a <a href="http://www.w3.org/TR/css3-selectors/#pseudo-classes">pseudo-class selector</a>,
which represents an element that is the N-th child of some other element.
</summary>
</member>
<member name="M:Fizzler.IElementOps`1.OnlyChild">
<summary>
Generates a <a href="http://www.w3.org/TR/css3-selectors/#pseudo-classes">pseudo-class selector</a>,
which represents an element that has a parent element and whose parent
element has no other element children.
</summary>
</member>
<member name="M:Fizzler.IElementOps`1.Empty">
<summary>
Generates a <a href="http://www.w3.org/TR/css3-selectors/#pseudo-classes">pseudo-class selector</a>,
which represents an element that has no children at all.
</summary>
</member>
<member name="M:Fizzler.IElementOps`1.Child">
<summary>
Generates a <a href="http://www.w3.org/TR/css3-selectors/#combinators">combinator</a>,
which represents a childhood relationship between two elements.
</summary>
</member>
<member name="M:Fizzler.IElementOps`1.Descendant">
<summary>
Generates a <a href="http://www.w3.org/TR/css3-selectors/#combinators">combinator</a>,
which represents a relationship between two elements where one element is an
arbitrary descendant of some ancestor element.
</summary>
</member>
<member name="M:Fizzler.IElementOps`1.Adjacent">
<summary>
Generates a <a href="http://www.w3.org/TR/css3-selectors/#combinators">combinator</a>,
which represents elements that share the same parent in the document tree and
where the first element immediately precedes the second element.
</summary>
</member>
<member name="M:Fizzler.IElementOps`1.GeneralSibling">
<summary>
Generates a <a href="http://www.w3.org/TR/css3-selectors/#combinators">combinator</a>,
which separates two sequences of simple selectors. The elements represented
by the two sequences share the same parent in the document tree and the
element represented by the first sequence precedes (not necessarily
immediately) the element represented by the second one.
</summary>
</member>
<member name="M:Fizzler.IElementOps`1.NthLastChild(System.Int32,System.Int32)">
<summary>
Generates a <a href="http://www.w3.org/TR/css3-selectors/#pseudo-classes">pseudo-class selector</a>,
which represents an element that is the N-th child from bottom up of some other element.
</summary>
</member>
<member name="T:Fizzler.ISelectorGenerator">
<summary>
Represent an implementation that is responsible for generating
an implementation for a selector.
</summary>
</member>
<member name="M:Fizzler.ISelectorGenerator.OnInit">
<summary>
Delimits the initialization of a generation.
</summary>
</member>
<member name="M:Fizzler.ISelectorGenerator.OnClose">
<summary>
Delimits the closing/conclusion of a generation.
</summary>
</member>
<member name="M:Fizzler.ISelectorGenerator.OnSelector">
<summary>
Delimits a selector generation in a group of selectors.
</summary>
</member>
<member name="M:Fizzler.ISelectorGenerator.Type(Fizzler.NamespacePrefix,System.String)">
<summary>
Generates a <a href="http://www.w3.org/TR/css3-selectors/#type-selectors">type selector</a>,
which represents an instance of the element type in the document tree.
</summary>
</member>
<member name="M:Fizzler.ISelectorGenerator.Universal(Fizzler.NamespacePrefix)">
<summary>
Generates a <a href="http://www.w3.org/TR/css3-selectors/#universal-selector">universal selector</a>,
any single element in the document tree in any namespace
(including those without a namespace) if no default namespace
has been specified for selectors.
</summary>
</member>
<member name="M:Fizzler.ISelectorGenerator.Id(System.String)">
<summary>
Generates a <a href="http://www.w3.org/TR/css3-selectors/#Id-selectors">ID selector</a>,
which represents an element instance that has an identifier that
matches the identifier in the ID selector.
</summary>
</member>
<member name="M:Fizzler.ISelectorGenerator.Class(System.String)">
<summary>
Generates a <a href="http://www.w3.org/TR/css3-selectors/#class-html">class selector</a>,
which is an alternative <see cref="M:Fizzler.ISelectorGenerator.AttributeIncludes(Fizzler.NamespacePrefix,System.String,System.String)"/> when
representing the <c>class</c> attribute.
</summary>
</member>
<member name="M:Fizzler.ISelectorGenerator.AttributeExists(Fizzler.NamespacePrefix,System.String)">
<summary>
Generates an <a href="http://www.w3.org/TR/css3-selectors/#attribute-selectors">attribute selector</a>
that represents an element with the given attribute <paramref name="name"/>
whatever the values of the attribute.
</summary>
</member>
<member name="M:Fizzler.ISelectorGenerator.AttributeExact(Fizzler.NamespacePrefix,System.String,System.String)">
<summary>
Generates an <a href="http://www.w3.org/TR/css3-selectors/#attribute-selectors">attribute selector</a>
that represents an element with the given attribute <paramref name="name"/>
and whose value is exactly <paramref name="value"/>.
</summary>
</member>
<member name="M:Fizzler.ISelectorGenerator.AttributeIncludes(Fizzler.NamespacePrefix,System.String,System.String)">
<summary>
Generates an <a href="http://www.w3.org/TR/css3-selectors/#attribute-selectors">attribute selector</a>
that represents an element with the given attribute <paramref name="name"/>
and whose value is a whitespace-separated list of words, one of
which is exactly <paramref name="value"/>.
</summary>
</member>
<member name="M:Fizzler.ISelectorGenerator.AttributeDashMatch(Fizzler.NamespacePrefix,System.String,System.String)">
<summary>
Generates an <a href="http://www.w3.org/TR/css3-selectors/#attribute-selectors">attribute selector</a>
that represents an element with the given attribute <paramref name="name"/>,
its value either being exactly <paramref name="value"/> or beginning
with <paramref name="value"/> immediately followed by "-" (U+002D).
</summary>
</member>
<member name="M:Fizzler.ISelectorGenerator.AttributePrefixMatch(Fizzler.NamespacePrefix,System.String,System.String)">
<summary>
Generates an <a href="http://www.w3.org/TR/css3-selectors/#attribute-selectors">attribute selector</a>
that represents an element with the attribute <paramref name="name"/>
whose value begins with the prefix <paramref name="value"/>.
</summary>
</member>
<member name="M:Fizzler.ISelectorGenerator.AttributeSuffixMatch(Fizzler.NamespacePrefix,System.String,System.String)">
<summary>
Generates an <a href="http://www.w3.org/TR/css3-selectors/#attribute-selectors">attribute selector</a>
that represents an element with the attribute <paramref name="name"/>
whose value ends with the suffix <paramref name="value"/>.
</summary>
</member>
<member name="M:Fizzler.ISelectorGenerator.AttributeSubstring(Fizzler.NamespacePrefix,System.String,System.String)">
<summary>
Generates an <a href="http://www.w3.org/TR/css3-selectors/#attribute-selectors">attribute selector</a>
that represents an element with the attribute <paramref name="name"/>
whose value contains at least one instance of the substring <paramref name="value"/>.
</summary>
</member>
<member name="M:Fizzler.ISelectorGenerator.FirstChild">
<summary>
Generates a <a href="http://www.w3.org/TR/css3-selectors/#pseudo-classes">pseudo-class selector</a>,
which represents an element that is the first child of some other element.
</summary>
</member>
<member name="M:Fizzler.ISelectorGenerator.LastChild">
<summary>
Generates a <a href="http://www.w3.org/TR/css3-selectors/#pseudo-classes">pseudo-class selector</a>,
which represents an element that is the last child of some other element.
</summary>
</member>
<member name="M:Fizzler.ISelectorGenerator.NthChild(System.Int32,System.Int32)">
<summary>
Generates a <a href="http://www.w3.org/TR/css3-selectors/#pseudo-classes">pseudo-class selector</a>,
which represents an element that is the N-th child of some other element.
</summary>
</member>
<member name="M:Fizzler.ISelectorGenerator.OnlyChild">
<summary>
Generates a <a href="http://www.w3.org/TR/css3-selectors/#pseudo-classes">pseudo-class selector</a>,
which represents an element that has a parent element and whose parent
element has no other element children.
</summary>
</member>
<member name="M:Fizzler.ISelectorGenerator.Empty">
<summary>
Generates a <a href="http://www.w3.org/TR/css3-selectors/#pseudo-classes">pseudo-class selector</a>,
which represents an element that has no children at all.
</summary>
</member>
<member name="M:Fizzler.ISelectorGenerator.Child">
<summary>
Generates a <a href="http://www.w3.org/TR/css3-selectors/#combinators">combinator</a>,
which represents a childhood relationship between two elements.
</summary>
</member>
<member name="M:Fizzler.ISelectorGenerator.Descendant">
<summary>
Generates a <a href="http://www.w3.org/TR/css3-selectors/#combinators">combinator</a>,
which represents a relationship between two elements where one element is an
arbitrary descendant of some ancestor element.
</summary>
</member>
<member name="M:Fizzler.ISelectorGenerator.Adjacent">
<summary>
Generates a <a href="http://www.w3.org/TR/css3-selectors/#combinators">combinator</a>,
which represents elements that share the same parent in the document tree and
where the first element immediately precedes the second element.
</summary>
</member>
<member name="M:Fizzler.ISelectorGenerator.GeneralSibling">
<summary>
Generates a <a href="http://www.w3.org/TR/css3-selectors/#combinators">combinator</a>,
which separates two sequences of simple selectors. The elements represented
by the two sequences share the same parent in the document tree and the
element represented by the first sequence precedes (not necessarily
immediately) the element represented by the second one.
</summary>
</member>
<member name="M:Fizzler.ISelectorGenerator.NthLastChild(System.Int32,System.Int32)">
<summary>
Generates a <a href="http://www.w3.org/TR/css3-selectors/#pseudo-classes">pseudo-class selector</a>,
which represents an element that is the N-th child from bottom up of some other element.
</summary>
</member>
<member name="T:Fizzler.NamespacePrefix">
<summary>
Represent a type or attribute name.
</summary>
</member>
<member name="F:Fizzler.NamespacePrefix.None">
<summary>
Represents a name from either the default or any namespace
in a target document, depending on whether a default namespace is
in effect or not.
</summary>
</member>
<member name="F:Fizzler.NamespacePrefix.Empty">
<summary>
Represents an empty namespace.
</summary>
</member>
<member name="F:Fizzler.NamespacePrefix.Any">
<summary>
Represents any namespace.
</summary>
</member>
<member name="M:Fizzler.NamespacePrefix.#ctor(System.String)">
<summary>
Initializes an instance with a namespace prefix specification.
</summary>
</member>
<member name="P:Fizzler.NamespacePrefix.Text">
<summary>
Gets the raw text value of this instance.
</summary>
</member>
<member name="P:Fizzler.NamespacePrefix.IsNone">
<summary>
Indicates whether this instance represents a name
from either the default or any namespace in a target
document, depending on whether a default namespace is
in effect or not.
</summary>
</member>
<member name="P:Fizzler.NamespacePrefix.IsAny">
<summary>
Indicates whether this instance represents a name
from any namespace (including one without one)
in a target document.
</summary>
</member>
<member name="P:Fizzler.NamespacePrefix.IsEmpty">
<summary>
Indicates whether this instance represents a name
without a namespace in a target document.
</summary>
</member>
<member name="P:Fizzler.NamespacePrefix.IsSpecific">
<summary>
Indicates whether this instance represents a name from a
specific namespace or not.
</summary>
</member>
<member name="M:Fizzler.NamespacePrefix.Equals(System.Object)">
<summary>
Indicates whether this instance and a specified object are equal.
</summary>
</member>
<member name="M:Fizzler.NamespacePrefix.Equals(Fizzler.NamespacePrefix)">
<summary>
Indicates whether this instance and another are equal.
</summary>
</member>
<member name="M:Fizzler.NamespacePrefix.GetHashCode">
<summary>
Returns the hash code for this instance.
</summary>
</member>
<member name="M:Fizzler.NamespacePrefix.ToString">
<summary>
Returns a string representation of this instance.
</summary>
</member>
<member name="M:Fizzler.NamespacePrefix.Format(System.String)">
<summary>
Formats this namespace together with a name.
</summary>
</member>
<member name="T:Fizzler.Parser">
<summary>
Semantic parser for CSS selector grammar.
</summary>
</member>
<member name="M:Fizzler.Parser.Parse``1(System.String,``0)">
<summary>
Parses a CSS selector group and generates its implementation.
</summary>
</member>
<member name="M:Fizzler.Parser.Parse``2(System.String,``0,System.Func{``0,``1})">
<summary>
Parses a CSS selector group and generates its implementation.
</summary>
</member>
<member name="M:Fizzler.Parser.Parse``1(System.Collections.Generic.IEnumerable{Fizzler.Token},``0)">
<summary>
Parses a tokenized stream representing a CSS selector group and
generates its implementation.
</summary>
</member>
<member name="M:Fizzler.Parser.Parse``2(System.Collections.Generic.IEnumerable{Fizzler.Token},``0,System.Func{``0,``1})">
<summary>
Parses a tokenized stream representing a CSS selector group and
generates its implementation.
</summary>
</member>
<member name="T:Fizzler.Reader`1">
<summary>
Adds reading semantics to a base <see cref="T:System.Collections.Generic.IEnumerator`1"/> with the
option to un-read and insert new elements while consuming the source.
</summary>
</member>
<member name="M:Fizzler.Reader`1.#ctor(System.Collections.Generic.IEnumerable{`0})">
<summary>
Initialize a new <see cref="T:Fizzler.Reader`1"/> with a base
<see cref="T:System.Collections.Generic.IEnumerable`1"/> object.
</summary>
</member>
<member name="M:Fizzler.Reader`1.#ctor(System.Collections.Generic.IEnumerator{`0})">
<summary>
Initialize a new <see cref="T:Fizzler.Reader`1"/> with a base
<see cref="T:System.Collections.Generic.IEnumerator`1"/> object.
</summary>
</member>
<member name="P:Fizzler.Reader`1.HasMore">
<summary>
Indicates whether there is, at least, one value waiting to be read or not.
</summary>
</member>
<member name="M:Fizzler.Reader`1.Unread(`0)">
<summary>
Pushes back a new value that will be returned on the next read.
</summary>
</member>
<member name="M:Fizzler.Reader`1.Read">
<summary>
Reads and returns the next value.
</summary>
</member>
<member name="M:Fizzler.Reader`1.Peek">
<summary>
Peeks the next value waiting to be read.
</summary>
<exception cref="T:System.InvalidOperationException">
Thrown if there is no value waiting to be read.
</exception>
</member>
<member name="M:Fizzler.Reader`1.GetEnumerator">
<summary>
Returns an enumerator that iterates through the remaining
values to be read.
</summary>
</member>
<member name="M:Fizzler.Reader`1.Close">
<summary>
Disposes the enumerator used to initialize this object
if that enumerator supports <see cref="T:System.IDisposable"/>.
</summary>
</member>
<member name="T:Fizzler.Selector`1">
<summary>
Represents a selector implementation over an arbitrary type of elements.
</summary>
</member>
<member name="T:Fizzler.SelectorGenerator`1">
<summary>
A selector generator implementation for an arbitrary document/element system.
</summary>
</member>
<member name="M:Fizzler.SelectorGenerator`1.#ctor(Fizzler.IElementOps{`0})">
<summary>
Initializes a new instance of this object with an instance
of <see cref="T:Fizzler.IElementOps`1"/> and the default equality
comparer that is used for determining if two elements are equal.
</summary>
</member>
<member name="M:Fizzler.SelectorGenerator`1.#ctor(Fizzler.IElementOps{`0},System.Collections.Generic.IEqualityComparer{`0})">
<summary>
Initializes a new instance of this object with an instance
of <see cref="T:Fizzler.IElementOps`1"/> and an equality comparer
used for determining if two elements are equal.
</summary>
</member>
<member name="P:Fizzler.SelectorGenerator`1.Selector">
<summary>
Gets the selector implementation.
</summary>
<remarks>
If the generation is not complete, this property returns the
last generated selector.
</remarks>
</member>
<member name="P:Fizzler.SelectorGenerator`1.Ops">
<summary>
Gets the <see cref="T:Fizzler.IElementOps`1"/> instance that this object
was initialized with.
</summary>
</member>
<member name="M:Fizzler.SelectorGenerator`1.GetSelectors">
<summary>
Returns the collection of selector implementations representing
a group.
</summary>
<remarks>
If the generation is not complete, this method return the
selectors generated so far in a group.
</remarks>
</member>
<member name="M:Fizzler.SelectorGenerator`1.Add(Fizzler.Selector{`0})">
<summary>
Adds a generated selector.
</summary>
</member>
<member name="M:Fizzler.SelectorGenerator`1.OnInit">
<summary>
Delimits the initialization of a generation.
</summary>
</member>
<member name="M:Fizzler.SelectorGenerator`1.OnSelector">
<summary>
Delimits a selector generation in a group of selectors.
</summary>
</member>
<member name="M:Fizzler.SelectorGenerator`1.OnClose">
<summary>
Delimits the closing/conclusion of a generation.
</summary>
</member>
<member name="M:Fizzler.SelectorGenerator`1.Id(System.String)">
<summary>
Generates a <a href="http://www.w3.org/TR/css3-selectors/#Id-selectors">ID selector</a>,
which represents an element instance that has an identifier that
matches the identifier in the ID selector.
</summary>
</member>
<member name="M:Fizzler.SelectorGenerator`1.Class(System.String)">
<summary>
Generates a <a href="http://www.w3.org/TR/css3-selectors/#class-html">class selector</a>,
which is an alternative <see cref="M:Fizzler.ISelectorGenerator.AttributeIncludes(Fizzler.NamespacePrefix,System.String,System.String)"/> when
representing the <c>class</c> attribute.
</summary>
</member>
<member name="M:Fizzler.SelectorGenerator`1.Type(Fizzler.NamespacePrefix,System.String)">
<summary>
Generates a <a href="http://www.w3.org/TR/css3-selectors/#type-selectors">type selector</a>,
which represents an instance of the element type in the document tree.
</summary>
</member>
<member name="M:Fizzler.SelectorGenerator`1.Universal(Fizzler.NamespacePrefix)">
<summary>
Generates a <a href="http://www.w3.org/TR/css3-selectors/#universal-selector">universal selector</a>,
any single element in the document tree in any namespace
(including those without a namespace) if no default namespace
has been specified for selectors.
</summary>
</member>
<member name="M:Fizzler.SelectorGenerator`1.AttributeExists(Fizzler.NamespacePrefix,System.String)">
<summary>
Generates an <a href="http://www.w3.org/TR/css3-selectors/#attribute-selectors">attribute selector</a>
that represents an element with the given attribute <paramref name="name"/>
whatever the values of the attribute.
</summary>
</member>
<member name="M:Fizzler.SelectorGenerator`1.AttributeExact(Fizzler.NamespacePrefix,System.String,System.String)">
<summary>
Generates an <a href="http://www.w3.org/TR/css3-selectors/#attribute-selectors">attribute selector</a>
that represents an element with the given attribute <paramref name="name"/>
and whose value is exactly <paramref name="value"/>.
</summary>
</member>
<member name="M:Fizzler.SelectorGenerator`1.AttributeIncludes(Fizzler.NamespacePrefix,System.String,System.String)">
<summary>
Generates an <a href="http://www.w3.org/TR/css3-selectors/#attribute-selectors">attribute selector</a>
that represents an element with the given attribute <paramref name="name"/>
and whose value is a whitespace-separated list of words, one of
which is exactly <paramref name="value"/>.
</summary>
</member>
<member name="M:Fizzler.SelectorGenerator`1.AttributeDashMatch(Fizzler.NamespacePrefix,System.String,System.String)">
<summary>
Generates an <a href="http://www.w3.org/TR/css3-selectors/#attribute-selectors">attribute selector</a>
that represents an element with the given attribute <paramref name="name"/>,
its value either being exactly <paramref name="value"/> or beginning
with <paramref name="value"/> immediately followed by "-" (U+002D).
</summary>
</member>
<member name="M:Fizzler.SelectorGenerator`1.AttributePrefixMatch(Fizzler.NamespacePrefix,System.String,System.String)">
<summary>
Generates an <a href="http://www.w3.org/TR/css3-selectors/#attribute-selectors">attribute selector</a>
that represents an element with the attribute <paramref name="name"/>
whose value begins with the prefix <paramref name="value"/>.
</summary>
</member>
<member name="M:Fizzler.SelectorGenerator`1.AttributeSuffixMatch(Fizzler.NamespacePrefix,System.String,System.String)">
<summary>
Generates an <a href="http://www.w3.org/TR/css3-selectors/#attribute-selectors">attribute selector</a>
that represents an element with the attribute <paramref name="name"/>
whose value ends with the suffix <paramref name="value"/>.
</summary>
</member>
<member name="M:Fizzler.SelectorGenerator`1.AttributeSubstring(Fizzler.NamespacePrefix,System.String,System.String)">
<summary>
Generates an <a href="http://www.w3.org/TR/css3-selectors/#attribute-selectors">attribute selector</a>
that represents an element with the attribute <paramref name="name"/>
whose value contains at least one instance of the substring <paramref name="value"/>.
</summary>
</member>
<member name="M:Fizzler.SelectorGenerator`1.FirstChild">
<summary>
Generates a <a href="http://www.w3.org/TR/css3-selectors/#pseudo-classes">pseudo-class selector</a>,
which represents an element that is the first child of some other element.
</summary>
</member>
<member name="M:Fizzler.SelectorGenerator`1.LastChild">
<summary>
Generates a <a href="http://www.w3.org/TR/css3-selectors/#pseudo-classes">pseudo-class selector</a>,
which represents an element that is the last child of some other element.
</summary>
</member>
<member name="M:Fizzler.SelectorGenerator`1.NthChild(System.Int32,System.Int32)">
<summary>
Generates a <a href="http://www.w3.org/TR/css3-selectors/#pseudo-classes">pseudo-class selector</a>,
which represents an element that is the N-th child of some other element.
</summary>
</member>
<member name="M:Fizzler.SelectorGenerator`1.OnlyChild">
<summary>
Generates a <a href="http://www.w3.org/TR/css3-selectors/#pseudo-classes">pseudo-class selector</a>,
which represents an element that has a parent element and whose parent
element has no other element children.
</summary>
</member>
<member name="M:Fizzler.SelectorGenerator`1.Empty">
<summary>
Generates a <a href="http://www.w3.org/TR/css3-selectors/#pseudo-classes">pseudo-class selector</a>,
which represents an element that has no children at all.
</summary>
</member>
<member name="M:Fizzler.SelectorGenerator`1.Child">
<summary>
Generates a <a href="http://www.w3.org/TR/css3-selectors/#combinators">combinator</a>,
which represents a childhood relationship between two elements.
</summary>
</member>
<member name="M:Fizzler.SelectorGenerator`1.Descendant">
<summary>
Generates a <a href="http://www.w3.org/TR/css3-selectors/#combinators">combinator</a>,
which represents a relationship between two elements where one element is an
arbitrary descendant of some ancestor element.
</summary>
</member>
<member name="M:Fizzler.SelectorGenerator`1.Adjacent">
<summary>
Generates a <a href="http://www.w3.org/TR/css3-selectors/#combinators">combinator</a>,
which represents elements that share the same parent in the document tree and
where the first element immediately precedes the second element.
</summary>
</member>
<member name="M:Fizzler.SelectorGenerator`1.GeneralSibling">
<summary>
Generates a <a href="http://www.w3.org/TR/css3-selectors/#combinators">combinator</a>,
which separates two sequences of simple selectors. The elements represented
by the two sequences share the same parent in the document tree and the
element represented by the first sequence precedes (not necessarily
immediately) the element represented by the second one.
</summary>
</member>
<member name="M:Fizzler.SelectorGenerator`1.NthLastChild(System.Int32,System.Int32)">
<summary>
Generates a <a href="http://www.w3.org/TR/css3-selectors/#pseudo-classes">pseudo-class selector</a>,
which represents an element that is the N-th child from bottom up of some other element.
</summary>
</member>
<member name="T:Fizzler.SelectorGeneratorTee">
<summary>
An <see cref="T:Fizzler.ISelectorGenerator"/> implementation that delegates
to two other <see cref="T:Fizzler.ISelectorGenerator"/> objects, which
can be useful for doing work in a single pass.
</summary>
</member>
<member name="P:Fizzler.SelectorGeneratorTee.Primary">
<summary>
Gets the first generator used to initialize this generator.
</summary>
</member>
<member name="P:Fizzler.SelectorGeneratorTee.Secondary">
<summary>
Gets the second generator used to initialize this generator.
</summary>
</member>
<member name="M:Fizzler.SelectorGeneratorTee.#ctor(Fizzler.ISelectorGenerator,Fizzler.ISelectorGenerator)">
<summary>
Initializes a new instance of <see cref="T:Fizzler.SelectorGeneratorTee"/>
with the two other <see cref="T:Fizzler.ISelectorGenerator"/> objects
it delegates to.
</summary>
</member>
<member name="M:Fizzler.SelectorGeneratorTee.OnInit">
<summary>
Delegates to <see cref="P:Fizzler.SelectorGeneratorTee.Primary"/> then <see cref="P:Fizzler.SelectorGeneratorTee.Secondary"/> generator.
</summary>
</member>
<member name="M:Fizzler.SelectorGeneratorTee.OnClose">
<summary>
Delegates to <see cref="P:Fizzler.SelectorGeneratorTee.Primary"/> then <see cref="P:Fizzler.SelectorGeneratorTee.Secondary"/> generator.
</summary>
</member>
<member name="M:Fizzler.SelectorGeneratorTee.OnSelector">
<summary>
Delegates to <see cref="P:Fizzler.SelectorGeneratorTee.Primary"/> then <see cref="P:Fizzler.SelectorGeneratorTee.Secondary"/> generator.
</summary>
</member>
<member name="M:Fizzler.SelectorGeneratorTee.Type(Fizzler.NamespacePrefix,System.String)">
<summary>
Delegates to <see cref="P:Fizzler.SelectorGeneratorTee.Primary"/> then <see cref="P:Fizzler.SelectorGeneratorTee.Secondary"/> generator.
</summary>
</member>
<member name="M:Fizzler.SelectorGeneratorTee.Universal(Fizzler.NamespacePrefix)">
<summary>
Delegates to <see cref="P:Fizzler.SelectorGeneratorTee.Primary"/> then <see cref="P:Fizzler.SelectorGeneratorTee.Secondary"/> generator.
</summary>
</member>
<member name="M:Fizzler.SelectorGeneratorTee.Id(System.String)">
<summary>
Delegates to <see cref="P:Fizzler.SelectorGeneratorTee.Primary"/> then <see cref="P:Fizzler.SelectorGeneratorTee.Secondary"/> generator.
</summary>
</member>
<member name="M:Fizzler.SelectorGeneratorTee.Class(System.String)">
<summary>
Delegates to <see cref="P:Fizzler.SelectorGeneratorTee.Primary"/> then <see cref="P:Fizzler.SelectorGeneratorTee.Secondary"/> generator.
</summary>
</member>
<member name="M:Fizzler.SelectorGeneratorTee.AttributeExists(Fizzler.NamespacePrefix,System.String)">
<summary>
Delegates to <see cref="P:Fizzler.SelectorGeneratorTee.Primary"/> then <see cref="P:Fizzler.SelectorGeneratorTee.Secondary"/> generator.
</summary>
</member>
<member name="M:Fizzler.SelectorGeneratorTee.AttributeExact(Fizzler.NamespacePrefix,System.String,System.String)">
<summary>
Delegates to <see cref="P:Fizzler.SelectorGeneratorTee.Primary"/> then <see cref="P:Fizzler.SelectorGeneratorTee.Secondary"/> generator.
</summary>
</member>
<member name="M:Fizzler.SelectorGeneratorTee.AttributeIncludes(Fizzler.NamespacePrefix,System.String,System.String)">
<summary>
Delegates to <see cref="P:Fizzler.SelectorGeneratorTee.Primary"/> then <see cref="P:Fizzler.SelectorGeneratorTee.Secondary"/> generator.
</summary>
</member>
<member name="M:Fizzler.SelectorGeneratorTee.AttributeDashMatch(Fizzler.NamespacePrefix,System.String,System.String)">
<summary>
Delegates to <see cref="P:Fizzler.SelectorGeneratorTee.Primary"/> then <see cref="P:Fizzler.SelectorGeneratorTee.Secondary"/> generator.
</summary>
</member>
<member name="M:Fizzler.SelectorGeneratorTee.AttributePrefixMatch(Fizzler.NamespacePrefix,System.String,System.String)">
<summary>
Delegates to <see cref="P:Fizzler.SelectorGeneratorTee.Primary"/> then <see cref="P:Fizzler.SelectorGeneratorTee.Secondary"/> generator.
</summary>
</member>
<member name="M:Fizzler.SelectorGeneratorTee.AttributeSuffixMatch(Fizzler.NamespacePrefix,System.String,System.String)">
<summary>
Delegates to <see cref="P:Fizzler.SelectorGeneratorTee.Primary"/> then <see cref="P:Fizzler.SelectorGeneratorTee.Secondary"/> generator.
</summary>
</member>
<member name="M:Fizzler.SelectorGeneratorTee.AttributeSubstring(Fizzler.NamespacePrefix,System.String,System.String)">
<summary>
Delegates to <see cref="P:Fizzler.SelectorGeneratorTee.Primary"/> then <see cref="P:Fizzler.SelectorGeneratorTee.Secondary"/> generator.
</summary>
</member>
<member name="M:Fizzler.SelectorGeneratorTee.FirstChild">
<summary>
Delegates to <see cref="P:Fizzler.SelectorGeneratorTee.Primary"/> then <see cref="P:Fizzler.SelectorGeneratorTee.Secondary"/> generator.
</summary>
</member>
<member name="M:Fizzler.SelectorGeneratorTee.LastChild">
<summary>
Delegates to <see cref="P:Fizzler.SelectorGeneratorTee.Primary"/> then <see cref="P:Fizzler.SelectorGeneratorTee.Secondary"/> generator.
</summary>
</member>
<member name="M:Fizzler.SelectorGeneratorTee.NthChild(System.Int32,System.Int32)">
<summary>
Delegates to <see cref="P:Fizzler.SelectorGeneratorTee.Primary"/> then <see cref="P:Fizzler.SelectorGeneratorTee.Secondary"/> generator.
</summary>
</member>
<member name="M:Fizzler.SelectorGeneratorTee.OnlyChild">
<summary>
Delegates to <see cref="P:Fizzler.SelectorGeneratorTee.Primary"/> then <see cref="P:Fizzler.SelectorGeneratorTee.Secondary"/> generator.
</summary>
</member>
<member name="M:Fizzler.SelectorGeneratorTee.Empty">
<summary>
Delegates to <see cref="P:Fizzler.SelectorGeneratorTee.Primary"/> then <see cref="P:Fizzler.SelectorGeneratorTee.Secondary"/> generator.
</summary>
</member>
<member name="M:Fizzler.SelectorGeneratorTee.Child">
<summary>
Delegates to <see cref="P:Fizzler.SelectorGeneratorTee.Primary"/> then <see cref="P:Fizzler.SelectorGeneratorTee.Secondary"/> generator.
</summary>
</member>
<member name="M:Fizzler.SelectorGeneratorTee.Descendant">
<summary>
Delegates to <see cref="P:Fizzler.SelectorGeneratorTee.Primary"/> then <see cref="P:Fizzler.SelectorGeneratorTee.Secondary"/> generator.
</summary>
</member>
<member name="M:Fizzler.SelectorGeneratorTee.Adjacent">
<summary>
Delegates to <see cref="P:Fizzler.SelectorGeneratorTee.Primary"/> then <see cref="P:Fizzler.SelectorGeneratorTee.Secondary"/> generator.
</summary>
</member>
<member name="M:Fizzler.SelectorGeneratorTee.GeneralSibling">
<summary>
Delegates to <see cref="P:Fizzler.SelectorGeneratorTee.Primary"/> then <see cref="P:Fizzler.SelectorGeneratorTee.Secondary"/> generator.
</summary>
</member>
<member name="M:Fizzler.SelectorGeneratorTee.NthLastChild(System.Int32,System.Int32)">
<summary>
Delegates to <see cref="P:Fizzler.SelectorGeneratorTee.Primary"/> then <see cref="P:Fizzler.SelectorGeneratorTee.Secondary"/> generator.
</summary>
</member>
<member name="T:Fizzler.SelectorsCachingCompiler">
<summary>
Implementation for a selectors compiler that supports caching.
</summary>
<remarks>
This class is primarily targeted for developers of selection
over an arbitrary document model.
</remarks>
</member>
<member name="M:Fizzler.SelectorsCachingCompiler.Create``1(System.Func{System.String,``0})">
<summary>
Creates a caching selectors compiler on top on an existing compiler.
</summary>
</member>
<member name="M:Fizzler.SelectorsCachingCompiler.Create``1(System.Func{System.String,``0},System.Collections.Generic.IDictionary{System.String,``0})">
<summary>
Creates a caching selectors compiler on top on an existing compiler.
An addition parameter specified a dictionary to use as the cache.
</summary>
<remarks>
If <paramref name="cache"/> is <c>null</c> then this method uses a
the <see cref="T:System.Collections.Generic.Dictionary`2"/> implementation with an
ordinally case-insensitive selectors text comparer.
</remarks>
</member>
<member name="T:Fizzler.Token">
<summary>
Represent a token and optionally any text associated with it.
</summary>
</member>
<member name="P:Fizzler.Token.Kind">
<summary>
Gets the kind/type/class of the token.
</summary>
</member>
<member name="P:Fizzler.Token.Text">
<summary>
Gets text, if any, associated with the token.
</summary>
</member>
<member name="M:Fizzler.Token.Eoi">
<summary>
Creates an end-of-input token.
</summary>
</member>
<member name="M:Fizzler.Token.Star">
<summary>
Creates a star token.
</summary>
</member>
<member name="M:Fizzler.Token.Dot">
<summary>
Creates a dot token.
</summary>
</member>
<member name="M:Fizzler.Token.Colon">
<summary>
Creates a colon token.
</summary>
</member>
<member name="M:Fizzler.Token.Comma">
<summary>
Creates a comma token.
</summary>
</member>
<member name="M:Fizzler.Token.RightParenthesis">
<summary>
Creates a right parenthesis token.
</summary>
</member>
<member name="M:Fizzler.Token.Equals">
<summary>
Creates an equals token.
</summary>
</member>
<member name="M:Fizzler.Token.LeftBracket">
<summary>
Creates a left bracket token.
</summary>
</member>
<member name="M:Fizzler.Token.RightBracket">
<summary>
Creates a right bracket token.
</summary>
</member>
<member name="M:Fizzler.Token.Pipe">
<summary>
Creates a pipe (vertical line) token.
</summary>
</member>
<member name="M:Fizzler.Token.Plus">
<summary>
Creates a plus token.
</summary>
</member>
<member name="M:Fizzler.Token.Greater">
<summary>
Creates a greater token.
</summary>
</member>
<member name="M:Fizzler.Token.Includes">
<summary>
Creates an includes token.
</summary>
</member>
<member name="M:Fizzler.Token.DashMatch">
<summary>
Creates a dash-match token.
</summary>
</member>
<member name="M:Fizzler.Token.PrefixMatch">
<summary>
Creates a prefix-match token.
</summary>
</member>
<member name="M:Fizzler.Token.SuffixMatch">
<summary>
Creates a suffix-match token.
</summary>
</member>
<member name="M:Fizzler.Token.SubstringMatch">
<summary>
Creates a substring-match token.
</summary>
</member>
<member name="M:Fizzler.Token.Tilde">
<summary>
Creates a general sibling token.
</summary>
</member>
<member name="M:Fizzler.Token.Ident(System.String)">
<summary>
Creates an identifier token.
</summary>
</member>
<member name="M:Fizzler.Token.Integer(System.String)">
<summary>
Creates an integer token.
</summary>
</member>
<member name="M:Fizzler.Token.Hash(System.String)">
<summary>
Creates a hash-name token.
</summary>
</member>
<member name="M:Fizzler.Token.WhiteSpace(System.String)">
<summary>
Creates a white-space token.
</summary>
</member>
<member name="M:Fizzler.Token.String(System.String)">
<summary>
Creates a string token.
</summary>
</member>
<member name="M:Fizzler.Token.Function(System.String)">
<summary>
Creates a function token.
</summary>
</member>
<member name="M:Fizzler.Token.Char(System.Char)">
<summary>
Creates an arbitrary character token.
</summary>
</member>
<member name="M:Fizzler.Token.Equals(System.Object)">
<summary>
Indicates whether this instance and a specified object are equal.
</summary>
</member>
<member name="M:Fizzler.Token.GetHashCode">
<summary>
Returns the hash code for this instance.
</summary>
</member>
<member name="M:Fizzler.Token.Equals(Fizzler.Token)">
<summary>
Indicates whether the current object is equal to another object of the same type.
</summary>
</member>
<member name="M:Fizzler.Token.ToString">
<summary>
Gets a string representation of the token.
</summary>
</member>
<member name="M:Fizzler.Token.op_Equality(Fizzler.Token,Fizzler.Token)">
<summary>
Performs a logical comparison of the two tokens to determine
whether they are equal.
</summary>
</member>
<member name="M:Fizzler.Token.op_Inequality(Fizzler.Token,Fizzler.Token)">
<summary>
Performs a logical comparison of the two tokens to determine
whether they are inequal.
</summary>
</member>
<member name="T:Fizzler.Tokener">
<summary>
Lexer for tokens in CSS selector grammar.
</summary>
</member>
<member name="M:Fizzler.Tokener.Tokenize(System.IO.TextReader)">
<summary>
Parses tokens from a given text source.
</summary>
</member>
<member name="M:Fizzler.Tokener.Tokenize(System.String)">
<summary>
Parses tokens from a given string.
</summary>
</member>
<member name="T:Fizzler.TokenKind">
<summary>
Represents the classification of a token.
</summary>
</member>
<member name="F:Fizzler.TokenKind.Eoi">
<summary>
Represents end of input/file/stream
</summary>
</member>
<member name="F:Fizzler.TokenKind.Ident">
<summary>
Represents {ident}
</summary>
</member>
<member name="F:Fizzler.TokenKind.Hash">
<summary>
Represents "#" {name}
</summary>
</member>
<member name="F:Fizzler.TokenKind.Includes">
<summary>
Represents "~="
</summary>
</member>
<member name="F:Fizzler.TokenKind.DashMatch">
<summary>
Represents "|="
</summary>
</member>
<member name="F:Fizzler.TokenKind.PrefixMatch">
<summary>
Represents "^="
</summary>
</member>
<member name="F:Fizzler.TokenKind.SuffixMatch">
<summary>
Represents "$="
</summary>
</member>
<member name="F:Fizzler.TokenKind.SubstringMatch">
<summary>
Represents "*="
</summary>
</member>
<member name="F:Fizzler.TokenKind.String">
<summary>
Represents {string}
</summary>
</member>
<member name="F:Fizzler.TokenKind.Plus">
<summary>
Represents S* "+"
</summary>
</member>
<member name="F:Fizzler.TokenKind.Greater">
<summary>
Represents S* ">"
</summary>
</member>
<member name="F:Fizzler.TokenKind.WhiteSpace">
<summary>
Represents [ \t\r\n\f]+
</summary>
</member>
<member name="F:Fizzler.TokenKind.Function">
<summary>
Represents {ident} ")"
</summary>
</member>
<member name="F:Fizzler.TokenKind.Integer">
<summary>
Represents [0-9]+
</summary>
</member>
<member name="F:Fizzler.TokenKind.Tilde">
<summary>
Represents S* "~"
</summary>
</member>
<member name="F:Fizzler.TokenKind.Char">
<summary>
Represents an arbitrary character
</summary>
</member>
</members>
</doc>
|