-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFizzler.xml
More file actions
1283 lines (1283 loc) · 61.1 KB
/
Copy pathFizzler.xml
File metadata and controls
1283 lines (1283 loc) · 61.1 KB
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
<?xml version="1.0"?>
<doc>
<assembly>
<name>Fizzler</name>
</assembly>
<members>
<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.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.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.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.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.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)">