-
Notifications
You must be signed in to change notification settings - Fork 1
/
HtmlAgilityPack.xml
2482 lines (2482 loc) · 119 KB
/
HtmlAgilityPack.xml
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>HtmlAgilityPack</name>
</assembly>
<members>
<member name="T:HtmlAgilityPack.HtmlAttributeCollection">
<summary>
Represents a combined list and collection of HTML nodes.
</summary>
</member>
<member name="P:HtmlAgilityPack.HtmlAttributeCollection.Item(System.String)">
<summary>
Gets a given attribute from the list using its name.
</summary>
</member>
<member name="P:HtmlAgilityPack.HtmlAttributeCollection.Count">
<summary>
Gets the number of elements actually contained in the list.
</summary>
</member>
<member name="P:HtmlAgilityPack.HtmlAttributeCollection.IsReadOnly">
<summary>
Gets readonly status of colelction
</summary>
</member>
<member name="P:HtmlAgilityPack.HtmlAttributeCollection.Item(System.Int32)">
<summary>
Gets the attribute at the specified index.
</summary>
</member>
<member name="M:HtmlAgilityPack.HtmlAttributeCollection.Add(HtmlAgilityPack.HtmlAttribute)">
<summary>
Adds supplied item to collection
</summary>
<param name="item"></param>
</member>
<member name="M:HtmlAgilityPack.HtmlAttributeCollection.System#Collections#Generic#ICollection{HtmlAgilityPack#HtmlAttribute}#Clear">
<summary>
Explicit clear
</summary>
</member>
<member name="M:HtmlAgilityPack.HtmlAttributeCollection.Contains(HtmlAgilityPack.HtmlAttribute)">
<summary>
Retreives existence of supplied item
</summary>
<param name="item"></param>
<returns></returns>
</member>
<member name="M:HtmlAgilityPack.HtmlAttributeCollection.CopyTo(HtmlAgilityPack.HtmlAttribute[],System.Int32)">
<summary>
Copies collection to array
</summary>
<param name="array"></param>
<param name="arrayIndex"></param>
</member>
<member name="M:HtmlAgilityPack.HtmlAttributeCollection.System#Collections#Generic#IEnumerable{HtmlAgilityPack#HtmlAttribute}#GetEnumerator">
<summary>
Get Explicit enumerator
</summary>
<returns></returns>
</member>
<member name="M:HtmlAgilityPack.HtmlAttributeCollection.System#Collections#IEnumerable#GetEnumerator">
<summary>
Explicit non-generic enumerator
</summary>
<returns></returns>
</member>
<member name="M:HtmlAgilityPack.HtmlAttributeCollection.IndexOf(HtmlAgilityPack.HtmlAttribute)">
<summary>
Retrieves the index for the supplied item, -1 if not found
</summary>
<param name="item"></param>
<returns></returns>
</member>
<member name="M:HtmlAgilityPack.HtmlAttributeCollection.Insert(System.Int32,HtmlAgilityPack.HtmlAttribute)">
<summary>
Inserts given item into collection at supplied index
</summary>
<param name="index"></param>
<param name="item"></param>
</member>
<member name="M:HtmlAgilityPack.HtmlAttributeCollection.System#Collections#Generic#ICollection{HtmlAgilityPack#HtmlAttribute}#Remove(HtmlAgilityPack.HtmlAttribute)">
<summary>
Explicit collection remove
</summary>
<param name="item"></param>
<returns></returns>
</member>
<member name="M:HtmlAgilityPack.HtmlAttributeCollection.RemoveAt(System.Int32)">
<summary>
Removes the attribute at the specified index.
</summary>
<param name="index">The index of the attribute to remove.</param>
</member>
<member name="M:HtmlAgilityPack.HtmlAttributeCollection.Add(System.String,System.String)">
<summary>
Adds a new attribute to the collection with the given values
</summary>
<param name="name"></param>
<param name="value"></param>
</member>
<member name="M:HtmlAgilityPack.HtmlAttributeCollection.Append(HtmlAgilityPack.HtmlAttribute)">
<summary>
Inserts the specified attribute as the last attribute in the collection.
</summary>
<param name="newAttribute">The attribute to insert. May not be null.</param>
<returns>The appended attribute.</returns>
</member>
<member name="M:HtmlAgilityPack.HtmlAttributeCollection.Append(System.String)">
<summary>
Creates and inserts a new attribute as the last attribute in the collection.
</summary>
<param name="name">The name of the attribute to insert.</param>
<returns>The appended attribute.</returns>
</member>
<member name="M:HtmlAgilityPack.HtmlAttributeCollection.Append(System.String,System.String)">
<summary>
Creates and inserts a new attribute as the last attribute in the collection.
</summary>
<param name="name">The name of the attribute to insert.</param>
<param name="value">The value of the attribute to insert.</param>
<returns>The appended attribute.</returns>
</member>
<member name="M:HtmlAgilityPack.HtmlAttributeCollection.Contains(System.String)">
<summary>
Checks for existance of attribute with given name
</summary>
<param name="name"></param>
<returns></returns>
</member>
<member name="M:HtmlAgilityPack.HtmlAttributeCollection.Prepend(HtmlAgilityPack.HtmlAttribute)">
<summary>
Inserts the specified attribute as the first node in the collection.
</summary>
<param name="newAttribute">The attribute to insert. May not be null.</param>
<returns>The prepended attribute.</returns>
</member>
<member name="M:HtmlAgilityPack.HtmlAttributeCollection.Remove(HtmlAgilityPack.HtmlAttribute)">
<summary>
Removes a given attribute from the list.
</summary>
<param name="attribute">The attribute to remove. May not be null.</param>
</member>
<member name="M:HtmlAgilityPack.HtmlAttributeCollection.Remove(System.String)">
<summary>
Removes an attribute from the list, using its name. If there are more than one attributes with this name, they will all be removed.
</summary>
<param name="name">The attribute's name. May not be null.</param>
</member>
<member name="M:HtmlAgilityPack.HtmlAttributeCollection.RemoveAll">
<summary>
Remove all attributes in the list.
</summary>
</member>
<member name="M:HtmlAgilityPack.HtmlAttributeCollection.AttributesWithName(System.String)">
<summary>
Returns all attributes with specified name. Handles case insentivity
</summary>
<param name="attributeName">Name of the attribute</param>
<returns></returns>
</member>
<member name="M:HtmlAgilityPack.HtmlAttributeCollection.Remove">
<summary>
Removes all attributes from the collection
</summary>
</member>
<member name="M:HtmlAgilityPack.HtmlAttributeCollection.Clear">
<summary>
Clears the attribute collection
</summary>
</member>
<member name="T:HtmlAgilityPack.HtmlCommentNode">
<summary>
Represents an HTML comment.
</summary>
</member>
<member name="P:HtmlAgilityPack.HtmlCommentNode.Comment">
<summary>
Gets or Sets the comment text of the node.
</summary>
</member>
<member name="P:HtmlAgilityPack.HtmlCommentNode.InnerHtml">
<summary>
Gets or Sets the HTML between the start and end tags of the object. In the case of a text node, it is equals to OuterHtml.
</summary>
</member>
<member name="P:HtmlAgilityPack.HtmlCommentNode.OuterHtml">
<summary>
Gets or Sets the object and its content in HTML.
</summary>
</member>
<member name="T:HtmlAgilityPack.HtmlDocument">
<summary>
Represents a complete HTML document.
</summary>
</member>
<member name="M:HtmlAgilityPack.HtmlDocument.DetectEncodingAndLoad(System.String)">
<summary>
Detects the encoding of an HTML document from a file first, and then loads the file.
</summary>
<param name="path">The complete file path to be read.</param>
</member>
<member name="M:HtmlAgilityPack.HtmlDocument.DetectEncodingAndLoad(System.String,System.Boolean)">
<summary>
Detects the encoding of an HTML document from a file first, and then loads the file.
</summary>
<param name="path">The complete file path to be read. May not be null.</param>
<param name="detectEncoding">true to detect encoding, false otherwise.</param>
</member>
<member name="M:HtmlAgilityPack.HtmlDocument.DetectEncoding(System.String)">
<summary>
Detects the encoding of an HTML file.
</summary>
<param name="path">Path for the file containing the HTML document to detect. May not be null.</param>
<returns>The detected encoding.</returns>
</member>
<member name="M:HtmlAgilityPack.HtmlDocument.Load(System.String)">
<summary>
Loads an HTML document from a file.
</summary>
<param name="path">The complete file path to be read. May not be null.</param>
</member>
<member name="M:HtmlAgilityPack.HtmlDocument.Load(System.String,System.Boolean)">
<summary>
Loads an HTML document from a file.
</summary>
<param name="path">The complete file path to be read. May not be null.</param>
<param name="detectEncodingFromByteOrderMarks">Indicates whether to look for byte order marks at the beginning of the file.</param>
</member>
<member name="M:HtmlAgilityPack.HtmlDocument.Load(System.String,System.Text.Encoding)">
<summary>
Loads an HTML document from a file.
</summary>
<param name="path">The complete file path to be read. May not be null.</param>
<param name="encoding">The character encoding to use. May not be null.</param>
</member>
<member name="M:HtmlAgilityPack.HtmlDocument.Load(System.String,System.Text.Encoding,System.Boolean)">
<summary>
Loads an HTML document from a file.
</summary>
<param name="path">The complete file path to be read. May not be null.</param>
<param name="encoding">The character encoding to use. May not be null.</param>
<param name="detectEncodingFromByteOrderMarks">Indicates whether to look for byte order marks at the beginning of the file.</param>
</member>
<member name="M:HtmlAgilityPack.HtmlDocument.Load(System.String,System.Text.Encoding,System.Boolean,System.Int32)">
<summary>
Loads an HTML document from a file.
</summary>
<param name="path">The complete file path to be read. May not be null.</param>
<param name="encoding">The character encoding to use. May not be null.</param>
<param name="detectEncodingFromByteOrderMarks">Indicates whether to look for byte order marks at the beginning of the file.</param>
<param name="buffersize">The minimum buffer size.</param>
</member>
<member name="M:HtmlAgilityPack.HtmlDocument.Save(System.String)">
<summary>
Saves the mixed document to the specified file.
</summary>
<param name="filename">The location of the file where you want to save the document.</param>
</member>
<member name="M:HtmlAgilityPack.HtmlDocument.Save(System.String,System.Text.Encoding)">
<summary>
Saves the mixed document to the specified file.
</summary>
<param name="filename">The location of the file where you want to save the document. May not be null.</param>
<param name="encoding">The character encoding to use. May not be null.</param>
</member>
<member name="M:HtmlAgilityPack.HtmlDocument.CreateNavigator">
<summary>
Creates a new XPathNavigator object for navigating this HTML document.
</summary>
<returns>An XPathNavigator object. The XPathNavigator is positioned on the root of the document.</returns>
</member>
<member name="F:HtmlAgilityPack.HtmlDocument._maxDepthLevel">
<summary>
Defines the max level we would go deep into the html document
</summary>
</member>
<member name="F:HtmlAgilityPack.HtmlDocument.OptionAddDebuggingAttributes">
<summary>
Adds Debugging attributes to node. Default is false.
</summary>
</member>
<member name="F:HtmlAgilityPack.HtmlDocument.OptionAutoCloseOnEnd">
<summary>
Defines if closing for non closed nodes must be done at the end or directly in the document.
Setting this to true can actually change how browsers render the page. Default is false.
</summary>
</member>
<member name="F:HtmlAgilityPack.HtmlDocument.OptionCheckSyntax">
<summary>
Defines if non closed nodes will be checked at the end of parsing. Default is true.
</summary>
</member>
<member name="F:HtmlAgilityPack.HtmlDocument.OptionComputeChecksum">
<summary>
Defines if a checksum must be computed for the document while parsing. Default is false.
</summary>
</member>
<member name="F:HtmlAgilityPack.HtmlDocument.OptionDefaultStreamEncoding">
<summary>
Defines the default stream encoding to use. Default is System.Text.Encoding.Default.
</summary>
</member>
<member name="F:HtmlAgilityPack.HtmlDocument.OptionExtractErrorSourceText">
<summary>
Defines if source text must be extracted while parsing errors.
If the document has a lot of errors, or cascading errors, parsing performance can be dramatically affected if set to true.
Default is false.
</summary>
</member>
<member name="F:HtmlAgilityPack.HtmlDocument.OptionExtractErrorSourceTextMaxLength">
<summary>
Defines the maximum length of source text or parse errors. Default is 100.
</summary>
</member>
<member name="F:HtmlAgilityPack.HtmlDocument.OptionFixNestedTags">
<summary>
Defines if LI, TR, TH, TD tags must be partially fixed when nesting errors are detected. Default is false.
</summary>
</member>
<member name="F:HtmlAgilityPack.HtmlDocument.OptionOutputAsXml">
<summary>
Defines if output must conform to XML, instead of HTML.
</summary>
</member>
<member name="F:HtmlAgilityPack.HtmlDocument.OptionOutputOptimizeAttributeValues">
<summary>
Defines if attribute value output must be optimized (not bound with double quotes if it is possible). Default is false.
</summary>
</member>
<member name="F:HtmlAgilityPack.HtmlDocument.OptionOutputOriginalCase">
<summary>
Defines if name must be output with it's original case. Useful for asp.net tags and attributes
</summary>
</member>
<member name="F:HtmlAgilityPack.HtmlDocument.OptionOutputUpperCase">
<summary>
Defines if name must be output in uppercase. Default is false.
</summary>
</member>
<member name="F:HtmlAgilityPack.HtmlDocument.OptionReadEncoding">
<summary>
Defines if declared encoding must be read from the document.
Declared encoding is determined using the meta http-equiv="content-type" content="text/html;charset=XXXXX" html node.
Default is true.
</summary>
</member>
<member name="F:HtmlAgilityPack.HtmlDocument.OptionStopperNodeName">
<summary>
Defines the name of a node that will throw the StopperNodeException when found as an end node. Default is null.
</summary>
</member>
<member name="F:HtmlAgilityPack.HtmlDocument.OptionUseIdAttribute">
<summary>
Defines if the 'id' attribute must be specifically used. Default is true.
</summary>
</member>
<member name="F:HtmlAgilityPack.HtmlDocument.OptionWriteEmptyNodes">
<summary>
Defines if empty nodes must be written as closed during output. Default is false.
</summary>
</member>
<member name="M:HtmlAgilityPack.HtmlDocument.#ctor">
<summary>
Creates an instance of an HTML document.
</summary>
</member>
<member name="P:HtmlAgilityPack.HtmlDocument.MaxDepthLevel">
<summary>
Defines the max level we would go deep into the html document. If this depth level is exceeded, and exception is
thrown.
</summary>
</member>
<member name="P:HtmlAgilityPack.HtmlDocument.CheckSum">
<summary>
Gets the document CRC32 checksum if OptionComputeChecksum was set to true before parsing, 0 otherwise.
</summary>
</member>
<member name="P:HtmlAgilityPack.HtmlDocument.DeclaredEncoding">
<summary>
Gets the document's declared encoding.
Declared encoding is determined using the meta http-equiv="content-type" content="text/html;charset=XXXXX" html node.
</summary>
</member>
<member name="P:HtmlAgilityPack.HtmlDocument.DocumentNode">
<summary>
Gets the root node of the document.
</summary>
</member>
<member name="P:HtmlAgilityPack.HtmlDocument.Encoding">
<summary>
Gets the document's output encoding.
</summary>
</member>
<member name="P:HtmlAgilityPack.HtmlDocument.ParseErrors">
<summary>
Gets a list of parse errors found in the document.
</summary>
</member>
<member name="P:HtmlAgilityPack.HtmlDocument.Remainder">
<summary>
Gets the remaining text.
Will always be null if OptionStopperNodeName is null.
</summary>
</member>
<member name="P:HtmlAgilityPack.HtmlDocument.RemainderOffset">
<summary>
Gets the offset of Remainder in the original Html text.
If OptionStopperNodeName is null, this will return the length of the original Html text.
</summary>
</member>
<member name="P:HtmlAgilityPack.HtmlDocument.StreamEncoding">
<summary>
Gets the document's stream encoding.
</summary>
</member>
<member name="M:HtmlAgilityPack.HtmlDocument.GetXmlName(System.String)">
<summary>
Gets a valid XML name.
</summary>
<param name="name">Any text.</param>
<returns>A string that is a valid XML name.</returns>
</member>
<member name="M:HtmlAgilityPack.HtmlDocument.HtmlEncode(System.String)">
<summary>
Applies HTML encoding to a specified string.
</summary>
<param name="html">The input string to encode. May not be null.</param>
<returns>The encoded string.</returns>
</member>
<member name="M:HtmlAgilityPack.HtmlDocument.IsWhiteSpace(System.Int32)">
<summary>
Determines if the specified character is considered as a whitespace character.
</summary>
<param name="c">The character to check.</param>
<returns>true if if the specified character is considered as a whitespace character.</returns>
</member>
<member name="M:HtmlAgilityPack.HtmlDocument.CreateAttribute(System.String)">
<summary>
Creates an HTML attribute with the specified name.
</summary>
<param name="name">The name of the attribute. May not be null.</param>
<returns>The new HTML attribute.</returns>
</member>
<member name="M:HtmlAgilityPack.HtmlDocument.CreateAttribute(System.String,System.String)">
<summary>
Creates an HTML attribute with the specified name.
</summary>
<param name="name">The name of the attribute. May not be null.</param>
<param name="value">The value of the attribute.</param>
<returns>The new HTML attribute.</returns>
</member>
<member name="M:HtmlAgilityPack.HtmlDocument.CreateComment">
<summary>
Creates an HTML comment node.
</summary>
<returns>The new HTML comment node.</returns>
</member>
<member name="M:HtmlAgilityPack.HtmlDocument.CreateComment(System.String)">
<summary>
Creates an HTML comment node with the specified comment text.
</summary>
<param name="comment">The comment text. May not be null.</param>
<returns>The new HTML comment node.</returns>
</member>
<member name="M:HtmlAgilityPack.HtmlDocument.CreateElement(System.String)">
<summary>
Creates an HTML element node with the specified name.
</summary>
<param name="name">The qualified name of the element. May not be null.</param>
<returns>The new HTML node.</returns>
</member>
<member name="M:HtmlAgilityPack.HtmlDocument.CreateTextNode">
<summary>
Creates an HTML text node.
</summary>
<returns>The new HTML text node.</returns>
</member>
<member name="M:HtmlAgilityPack.HtmlDocument.CreateTextNode(System.String)">
<summary>
Creates an HTML text node with the specified text.
</summary>
<param name="text">The text of the node. May not be null.</param>
<returns>The new HTML text node.</returns>
</member>
<member name="M:HtmlAgilityPack.HtmlDocument.DetectEncoding(System.IO.Stream)">
<summary>
Detects the encoding of an HTML stream.
</summary>
<param name="stream">The input stream. May not be null.</param>
<returns>The detected encoding.</returns>
</member>
<member name="M:HtmlAgilityPack.HtmlDocument.DetectEncoding(System.IO.TextReader)">
<summary>
Detects the encoding of an HTML text provided on a TextReader.
</summary>
<param name="reader">The TextReader used to feed the HTML. May not be null.</param>
<returns>The detected encoding.</returns>
</member>
<member name="M:HtmlAgilityPack.HtmlDocument.DetectEncodingHtml(System.String)">
<summary>
Detects the encoding of an HTML text.
</summary>
<param name="html">The input html text. May not be null.</param>
<returns>The detected encoding.</returns>
</member>
<member name="M:HtmlAgilityPack.HtmlDocument.GetElementbyId(System.String)">
<summary>
Gets the HTML node with the specified 'id' attribute value.
</summary>
<param name="id">The attribute id to match. May not be null.</param>
<returns>The HTML node with the matching id or null if not found.</returns>
</member>
<member name="M:HtmlAgilityPack.HtmlDocument.Load(System.IO.Stream)">
<summary>
Loads an HTML document from a stream.
</summary>
<param name="stream">The input stream.</param>
</member>
<member name="M:HtmlAgilityPack.HtmlDocument.Load(System.IO.Stream,System.Boolean)">
<summary>
Loads an HTML document from a stream.
</summary>
<param name="stream">The input stream.</param>
<param name="detectEncodingFromByteOrderMarks">Indicates whether to look for byte order marks at the beginning of the stream.</param>
</member>
<member name="M:HtmlAgilityPack.HtmlDocument.Load(System.IO.Stream,System.Text.Encoding)">
<summary>
Loads an HTML document from a stream.
</summary>
<param name="stream">The input stream.</param>
<param name="encoding">The character encoding to use.</param>
</member>
<member name="M:HtmlAgilityPack.HtmlDocument.Load(System.IO.Stream,System.Text.Encoding,System.Boolean)">
<summary>
Loads an HTML document from a stream.
</summary>
<param name="stream">The input stream.</param>
<param name="encoding">The character encoding to use.</param>
<param name="detectEncodingFromByteOrderMarks">Indicates whether to look for byte order marks at the beginning of the stream.</param>
</member>
<member name="M:HtmlAgilityPack.HtmlDocument.Load(System.IO.Stream,System.Text.Encoding,System.Boolean,System.Int32)">
<summary>
Loads an HTML document from a stream.
</summary>
<param name="stream">The input stream.</param>
<param name="encoding">The character encoding to use.</param>
<param name="detectEncodingFromByteOrderMarks">Indicates whether to look for byte order marks at the beginning of the stream.</param>
<param name="buffersize">The minimum buffer size.</param>
</member>
<member name="M:HtmlAgilityPack.HtmlDocument.Load(System.IO.TextReader)">
<summary>
Loads the HTML document from the specified TextReader.
</summary>
<param name="reader">The TextReader used to feed the HTML data into the document. May not be null.</param>
</member>
<member name="M:HtmlAgilityPack.HtmlDocument.LoadHtml(System.String)">
<summary>
Loads the HTML document from the specified string.
</summary>
<param name="html">String containing the HTML document to load. May not be null.</param>
</member>
<member name="M:HtmlAgilityPack.HtmlDocument.Save(System.IO.Stream)">
<summary>
Saves the HTML document to the specified stream.
</summary>
<param name="outStream">The stream to which you want to save.</param>
</member>
<member name="M:HtmlAgilityPack.HtmlDocument.Save(System.IO.Stream,System.Text.Encoding)">
<summary>
Saves the HTML document to the specified stream.
</summary>
<param name="outStream">The stream to which you want to save. May not be null.</param>
<param name="encoding">The character encoding to use. May not be null.</param>
</member>
<member name="M:HtmlAgilityPack.HtmlDocument.Save(System.IO.StreamWriter)">
<summary>
Saves the HTML document to the specified StreamWriter.
</summary>
<param name="writer">The StreamWriter to which you want to save.</param>
</member>
<member name="M:HtmlAgilityPack.HtmlDocument.Save(System.IO.TextWriter)">
<summary>
Saves the HTML document to the specified TextWriter.
</summary>
<param name="writer">The TextWriter to which you want to save. May not be null.</param>
</member>
<member name="M:HtmlAgilityPack.HtmlDocument.Save(System.Xml.XmlWriter)">
<summary>
Saves the HTML document to the specified XmlWriter.
</summary>
<param name="writer">The XmlWriter to which you want to save.</param>
</member>
<member name="T:HtmlAgilityPack.HtmlElementFlag">
<summary>
Flags that describe the behavior of an Element node.
</summary>
</member>
<member name="F:HtmlAgilityPack.HtmlElementFlag.CData">
<summary>
The node is a CDATA node.
</summary>
</member>
<member name="F:HtmlAgilityPack.HtmlElementFlag.Empty">
<summary>
The node is empty. META or IMG are example of such nodes.
</summary>
</member>
<member name="F:HtmlAgilityPack.HtmlElementFlag.Closed">
<summary>
The node will automatically be closed during parsing.
</summary>
</member>
<member name="F:HtmlAgilityPack.HtmlElementFlag.CanOverlap">
<summary>
The node can overlap.
</summary>
</member>
<member name="T:HtmlAgilityPack.HtmlNode">
<summary>
Represents an HTML node.
</summary>
</member>
<member name="M:HtmlAgilityPack.HtmlNode.CreateNavigator">
<summary>
Creates a new XPathNavigator object for navigating this HTML node.
</summary>
<returns>An XPathNavigator object. The XPathNavigator is positioned on the node from which the method was called. It is not positioned on the root of the document.</returns>
</member>
<member name="M:HtmlAgilityPack.HtmlNode.CreateRootNavigator">
<summary>
Creates an XPathNavigator using the root of this document.
</summary>
<returns></returns>
</member>
<member name="M:HtmlAgilityPack.HtmlNode.SelectNodes(System.String)">
<summary>
Selects a list of nodes matching the <see cref="P:HtmlAgilityPack.HtmlNode.XPath"/> expression.
</summary>
<param name="xpath">The XPath expression.</param>
<returns>An <see cref="T:HtmlAgilityPack.HtmlNodeCollection"/> containing a collection of nodes matching the <see cref="P:HtmlAgilityPack.HtmlNode.XPath"/> query, or <c>null</c> if no node matched the XPath expression.</returns>
</member>
<member name="M:HtmlAgilityPack.HtmlNode.SelectSingleNode(System.String)">
<summary>
Selects the first XmlNode that matches the XPath expression.
</summary>
<param name="xpath">The XPath expression. May not be null.</param>
<returns>The first <see cref="T:HtmlAgilityPack.HtmlNode"/> that matches the XPath query or a null reference if no matching node was found.</returns>
</member>
<member name="F:HtmlAgilityPack.HtmlNode.HtmlNodeTypeNameComment">
<summary>
Gets the name of a comment node. It is actually defined as '#comment'.
</summary>
</member>
<member name="F:HtmlAgilityPack.HtmlNode.HtmlNodeTypeNameDocument">
<summary>
Gets the name of the document node. It is actually defined as '#document'.
</summary>
</member>
<member name="F:HtmlAgilityPack.HtmlNode.HtmlNodeTypeNameText">
<summary>
Gets the name of a text node. It is actually defined as '#text'.
</summary>
</member>
<member name="F:HtmlAgilityPack.HtmlNode.ElementsFlags">
<summary>
Gets a collection of flags that define specific behaviors for specific element nodes.
The table contains a DictionaryEntry list with the lowercase tag name as the Key, and a combination of HtmlElementFlags as the Value.
</summary>
</member>
<member name="M:HtmlAgilityPack.HtmlNode.#cctor">
<summary>
Initialize HtmlNode. Builds a list of all tags that have special allowances
</summary>
</member>
<member name="M:HtmlAgilityPack.HtmlNode.#ctor(HtmlAgilityPack.HtmlNodeType,HtmlAgilityPack.HtmlDocument,System.Int32)">
<summary>
Initializes HtmlNode, providing type, owner and where it exists in a collection
</summary>
<param name="type"></param>
<param name="ownerdocument"></param>
<param name="index"></param>
</member>
<member name="P:HtmlAgilityPack.HtmlNode.Attributes">
<summary>
Gets the collection of HTML attributes for this node. May not be null.
</summary>
</member>
<member name="P:HtmlAgilityPack.HtmlNode.ChildNodes">
<summary>
Gets all the children of the node.
</summary>
</member>
<member name="P:HtmlAgilityPack.HtmlNode.Closed">
<summary>
Gets a value indicating if this node has been closed or not.
</summary>
</member>
<member name="P:HtmlAgilityPack.HtmlNode.ClosingAttributes">
<summary>
Gets the collection of HTML attributes for the closing tag. May not be null.
</summary>
</member>
<member name="P:HtmlAgilityPack.HtmlNode.FirstChild">
<summary>
Gets the first child of the node.
</summary>
</member>
<member name="P:HtmlAgilityPack.HtmlNode.HasAttributes">
<summary>
Gets a value indicating whether the current node has any attributes.
</summary>
</member>
<member name="P:HtmlAgilityPack.HtmlNode.HasChildNodes">
<summary>
Gets a value indicating whether this node has any child nodes.
</summary>
</member>
<member name="P:HtmlAgilityPack.HtmlNode.HasClosingAttributes">
<summary>
Gets a value indicating whether the current node has any attributes on the closing tag.
</summary>
</member>
<member name="P:HtmlAgilityPack.HtmlNode.Id">
<summary>
Gets or sets the value of the 'id' HTML attribute. The document must have been parsed using the OptionUseIdAttribute set to true.
</summary>
</member>
<member name="P:HtmlAgilityPack.HtmlNode.InnerHtml">
<summary>
Gets or Sets the HTML between the start and end tags of the object.
</summary>
</member>
<member name="P:HtmlAgilityPack.HtmlNode.InnerText">
<summary>
Gets or Sets the text between the start and end tags of the object.
</summary>
</member>
<member name="P:HtmlAgilityPack.HtmlNode.LastChild">
<summary>
Gets the last child of the node.
</summary>
</member>
<member name="P:HtmlAgilityPack.HtmlNode.Line">
<summary>
Gets the line number of this node in the document.
</summary>
</member>
<member name="P:HtmlAgilityPack.HtmlNode.LinePosition">
<summary>
Gets the column number of this node in the document.
</summary>
</member>
<member name="P:HtmlAgilityPack.HtmlNode.Name">
<summary>
Gets or sets this node's name.
</summary>
</member>
<member name="P:HtmlAgilityPack.HtmlNode.NextSibling">
<summary>
Gets the HTML node immediately following this element.
</summary>
</member>
<member name="P:HtmlAgilityPack.HtmlNode.NodeType">
<summary>
Gets the type of this node.
</summary>
</member>
<member name="P:HtmlAgilityPack.HtmlNode.OriginalName">
<summary>
The original unaltered name of the tag
</summary>
</member>
<member name="P:HtmlAgilityPack.HtmlNode.OuterHtml">
<summary>
Gets or Sets the object and its content in HTML.
</summary>
</member>
<member name="P:HtmlAgilityPack.HtmlNode.OwnerDocument">
<summary>
Gets the <see cref="T:HtmlAgilityPack.HtmlDocument"/> to which this node belongs.
</summary>
</member>
<member name="P:HtmlAgilityPack.HtmlNode.ParentNode">
<summary>
Gets the parent of this node (for nodes that can have parents).
</summary>
</member>
<member name="P:HtmlAgilityPack.HtmlNode.PreviousSibling">
<summary>
Gets the node immediately preceding this node.
</summary>
</member>
<member name="P:HtmlAgilityPack.HtmlNode.StreamPosition">
<summary>
Gets the stream position of this node in the document, relative to the start of the document.
</summary>
</member>
<member name="P:HtmlAgilityPack.HtmlNode.XPath">
<summary>
Gets a valid XPath string that points to this node
</summary>
</member>
<member name="M:HtmlAgilityPack.HtmlNode.CanOverlapElement(System.String)">
<summary>
Determines if an element node can be kept overlapped.
</summary>
<param name="name">The name of the element node to check. May not be <c>null</c>.</param>
<returns>true if the name is the name of an element node that can be kept overlapped, <c>false</c> otherwise.</returns>
</member>
<member name="M:HtmlAgilityPack.HtmlNode.CreateNode(System.String)">
<summary>
Creates an HTML node from a string representing literal HTML.
</summary>
<param name="html">The HTML text.</param>
<returns>The newly created node instance.</returns>
</member>
<member name="M:HtmlAgilityPack.HtmlNode.IsCDataElement(System.String)">
<summary>
Determines if an element node is a CDATA element node.
</summary>
<param name="name">The name of the element node to check. May not be null.</param>
<returns>true if the name is the name of a CDATA element node, false otherwise.</returns>
</member>
<member name="M:HtmlAgilityPack.HtmlNode.IsClosedElement(System.String)">
<summary>
Determines if an element node is closed.
</summary>
<param name="name">The name of the element node to check. May not be null.</param>
<returns>true if the name is the name of a closed element node, false otherwise.</returns>
</member>
<member name="M:HtmlAgilityPack.HtmlNode.IsEmptyElement(System.String)">
<summary>
Determines if an element node is defined as empty.
</summary>
<param name="name">The name of the element node to check. May not be null.</param>
<returns>true if the name is the name of an empty element node, false otherwise.</returns>
</member>
<member name="M:HtmlAgilityPack.HtmlNode.IsOverlappedClosingElement(System.String)">
<summary>
Determines if a text corresponds to the closing tag of an node that can be kept overlapped.
</summary>
<param name="text">The text to check. May not be null.</param>
<returns>true or false.</returns>
</member>
<member name="M:HtmlAgilityPack.HtmlNode.Ancestors">
<summary>
Returns a collection of all ancestor nodes of this element.
</summary>
<returns></returns>
</member>
<member name="M:HtmlAgilityPack.HtmlNode.Ancestors(System.String)">
<summary>
Get Ancestors with matching name
</summary>
<param name="name"></param>
<returns></returns>
</member>
<member name="M:HtmlAgilityPack.HtmlNode.AncestorsAndSelf">
<summary>
Returns a collection of all ancestor nodes of this element.
</summary>
<returns></returns>
</member>
<member name="M:HtmlAgilityPack.HtmlNode.AncestorsAndSelf(System.String)">
<summary>
Gets all anscestor nodes and the current node
</summary>
<param name="name"></param>
<returns></returns>
</member>
<member name="M:HtmlAgilityPack.HtmlNode.AppendChild(HtmlAgilityPack.HtmlNode)">
<summary>
Adds the specified node to the end of the list of children of this node.
</summary>
<param name="newChild">The node to add. May not be null.</param>
<returns>The node added.</returns>
</member>
<member name="M:HtmlAgilityPack.HtmlNode.AppendChildren(HtmlAgilityPack.HtmlNodeCollection)">
<summary>
Adds the specified node to the end of the list of children of this node.
</summary>
<param name="newChildren">The node list to add. May not be null.</param>
</member>
<member name="M:HtmlAgilityPack.HtmlNode.ChildAttributes(System.String)">
<summary>
Gets all Attributes with name
</summary>
<param name="name"></param>
<returns></returns>
</member>
<member name="M:HtmlAgilityPack.HtmlNode.Clone">
<summary>
Creates a duplicate of the node
</summary>
<returns></returns>
</member>
<member name="M:HtmlAgilityPack.HtmlNode.CloneNode(System.String)">
<summary>
Creates a duplicate of the node and changes its name at the same time.
</summary>
<param name="newName">The new name of the cloned node. May not be <c>null</c>.</param>
<returns>The cloned node.</returns>
</member>
<member name="M:HtmlAgilityPack.HtmlNode.CloneNode(System.String,System.Boolean)">
<summary>
Creates a duplicate of the node and changes its name at the same time.
</summary>
<param name="newName">The new name of the cloned node. May not be null.</param>
<param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself.</param>
<returns>The cloned node.</returns>
</member>
<member name="M:HtmlAgilityPack.HtmlNode.CloneNode(System.Boolean)">
<summary>
Creates a duplicate of the node.
</summary>
<param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself.</param>
<returns>The cloned node.</returns>
</member>
<member name="M:HtmlAgilityPack.HtmlNode.CopyFrom(HtmlAgilityPack.HtmlNode)">
<summary>
Creates a duplicate of the node and the subtree under it.
</summary>
<param name="node">The node to duplicate. May not be <c>null</c>.</param>
</member>
<member name="M:HtmlAgilityPack.HtmlNode.CopyFrom(HtmlAgilityPack.HtmlNode,System.Boolean)">
<summary>
Creates a duplicate of the node.
</summary>
<param name="node">The node to duplicate. May not be <c>null</c>.</param>
<param name="deep">true to recursively clone the subtree under the specified node, false to clone only the node itself.</param>
</member>
<member name="M:HtmlAgilityPack.HtmlNode.DescendantNodes(System.Int32)">
<summary>
Gets all Descendant nodes for this node and each of child nodes
</summary>
<param name="level">The depth level of the node to parse in the html tree</param>
<returns>the current element as an HtmlNode</returns>
</member>
<member name="M:HtmlAgilityPack.HtmlNode.DescendantNodesAndSelf">
<summary>
Returns a collection of all descendant nodes of this element, in document order
</summary>
<returns></returns>
</member>
<member name="M:HtmlAgilityPack.HtmlNode.Descendants(System.Int32)">
<summary>
Gets all Descendant nodes in enumerated list
</summary>
<returns></returns>
</member>
<member name="M:HtmlAgilityPack.HtmlNode.Descendants(System.String)">
<summary>
Get all descendant nodes with matching name
</summary>
<param name="name"></param>
<returns></returns>
</member>
<member name="M:HtmlAgilityPack.HtmlNode.DescendantsAndSelf">
<summary>
Returns a collection of all descendant nodes of this element, in document order
</summary>
<returns></returns>
</member>
<member name="M:HtmlAgilityPack.HtmlNode.DescendantsAndSelf(System.String)">
<summary>
Gets all descendant nodes including this node
</summary>
<param name="name"></param>
<returns></returns>
</member>
<member name="M:HtmlAgilityPack.HtmlNode.Element(System.String)">
<summary>
Gets first generation child node matching name
</summary>
<param name="name"></param>
<returns></returns>
</member>
<member name="M:HtmlAgilityPack.HtmlNode.Elements(System.String)">
<summary>
Gets matching first generation child nodes matching name
</summary>
<param name="name"></param>
<returns></returns>
</member>
<member name="M:HtmlAgilityPack.HtmlNode.GetAttributeValue(System.String,System.String)">
<summary>
Helper method to get the value of an attribute of this node. If the attribute is not found, the default value will be returned.
</summary>
<param name="name">The name of the attribute to get. May not be <c>null</c>.</param>
<param name="def">The default value to return if not found.</param>
<returns>The value of the attribute if found, the default value if not found.</returns>
</member>
<member name="M:HtmlAgilityPack.HtmlNode.GetAttributeValue(System.String,System.Int32)">
<summary>
Helper method to get the value of an attribute of this node. If the attribute is not found, the default value will be returned.
</summary>
<param name="name">The name of the attribute to get. May not be <c>null</c>.</param>
<param name="def">The default value to return if not found.</param>