-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathHtmlAgilityPack.xml
More file actions
2468 lines (2468 loc) · 120 KB
/
HtmlAgilityPack.xml
File metadata and controls
2468 lines (2468 loc) · 120 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>HtmlAgilityPack</name>
</assembly>
<members>
<member name="T:HtmlAgilityPack.MixedCodeDocumentCodeFragment">
<summary>
Represents a fragment of code in a mixed code document.
</summary>
</member>
<member name="T:HtmlAgilityPack.MixedCodeDocumentFragment">
<summary>
Represents a base class for fragments in a mixed code document.
</summary>
</member>
<member name="P:HtmlAgilityPack.MixedCodeDocumentFragment.FragmentText">
<summary>
Gets the fragement text.
</summary>
</member>
<member name="P:HtmlAgilityPack.MixedCodeDocumentFragment.FragmentType">
<summary>
Gets the type of fragment.
</summary>
</member>
<member name="P:HtmlAgilityPack.MixedCodeDocumentFragment.Line">
<summary>
Gets the line number of the fragment.
</summary>
</member>
<member name="P:HtmlAgilityPack.MixedCodeDocumentFragment.LinePosition">
<summary>
Gets the line position (column) of the fragment.
</summary>
</member>
<member name="P:HtmlAgilityPack.MixedCodeDocumentFragment.StreamPosition">
<summary>
Gets the fragment position in the document's stream.
</summary>
</member>
<member name="P:HtmlAgilityPack.MixedCodeDocumentCodeFragment.Code">
<summary>
Gets the fragment code text.
</summary>
</member>
<member name="T:HtmlAgilityPack.HtmlWeb">
<summary>
A utility class to get HTML document from HTTP.
</summary>
</member>
<member name="F:HtmlAgilityPack.HtmlWeb.PostResponse">
<summary>
Occurs after an HTTP request has been executed.
</summary>
</member>
<member name="F:HtmlAgilityPack.HtmlWeb.PreHandleDocument">
<summary>
Occurs before an HTML document is handled.
</summary>
</member>
<member name="F:HtmlAgilityPack.HtmlWeb.PreRequest">
<summary>
Occurs before an HTTP request is executed.
</summary>
</member>
<member name="M:HtmlAgilityPack.HtmlWeb.GetContentTypeForExtension(System.String,System.String)">
<summary>
Gets the MIME content type for a given path extension.
</summary>
<param name="extension">The input path extension.</param>
<param name="def">The default content type to return if any error occurs.</param>
<returns>The path extension's MIME content type.</returns>
</member>
<member name="M:HtmlAgilityPack.HtmlWeb.GetExtensionForContentType(System.String,System.String)">
<summary>
Gets the path extension for a given MIME content type.
</summary>
<param name="contentType">The input MIME content type.</param>
<param name="def">The default path extension to return if any error occurs.</param>
<returns>The MIME content type's path extension.</returns>
</member>
<member name="M:HtmlAgilityPack.HtmlWeb.CreateInstance(System.String,System.Type)">
<summary>
Creates an instance of the given type from the specified Internet resource.
</summary>
<param name="url">The requested URL, such as "http://Myserver/Mypath/Myfile.asp".</param>
<param name="type">The requested type.</param>
<returns>An newly created instance.</returns>
</member>
<member name="M:HtmlAgilityPack.HtmlWeb.Get(System.String,System.String)">
<summary>
Gets an HTML document from an Internet resource and saves it to the specified file.
</summary>
<param name="url">The requested URL, such as "http://Myserver/Mypath/Myfile.asp".</param>
<param name="path">The location of the file where you want to save the document.</param>
</member>
<member name="M:HtmlAgilityPack.HtmlWeb.Get(System.String,System.String,System.Net.WebProxy,System.Net.NetworkCredential)">
<summary>
Gets an HTML document from an Internet resource and saves it to the specified file. - Proxy aware
</summary>
<param name="url">The requested URL, such as "http://Myserver/Mypath/Myfile.asp".</param>
<param name="path">The location of the file where you want to save the document.</param>
<param name="proxy"></param>
<param name="credentials"></param>
</member>
<member name="M:HtmlAgilityPack.HtmlWeb.Get(System.String,System.String,System.String)">
<summary>
Gets an HTML document from an Internet resource and saves it to the specified file.
</summary>
<param name="url">The requested URL, such as "http://Myserver/Mypath/Myfile.asp".</param>
<param name="path">The location of the file where you want to save the document.</param>
<param name="method">The HTTP method used to open the connection, such as GET, POST, PUT, or PROPFIND.</param>
</member>
<member name="M:HtmlAgilityPack.HtmlWeb.Get(System.String,System.String,System.Net.WebProxy,System.Net.NetworkCredential,System.String)">
<summary>
Gets an HTML document from an Internet resource and saves it to the specified file. Understands Proxies
</summary>
<param name="url">The requested URL, such as "http://Myserver/Mypath/Myfile.asp".</param>
<param name="path">The location of the file where you want to save the document.</param>
<param name="credentials"></param>
<param name="method">The HTTP method used to open the connection, such as GET, POST, PUT, or PROPFIND.</param>
<param name="proxy"></param>
</member>
<member name="M:HtmlAgilityPack.HtmlWeb.GetCachePath(System.Uri)">
<summary>
Gets the cache file path for a specified url.
</summary>
<param name="uri">The url fo which to retrieve the cache path. May not be null.</param>
<returns>The cache file path.</returns>
</member>
<member name="M:HtmlAgilityPack.HtmlWeb.Load(System.String)">
<summary>
Gets an HTML document from an Internet resource.
</summary>
<param name="url">The requested URL, such as "http://Myserver/Mypath/Myfile.asp".</param>
<returns>A new HTML document.</returns>
</member>
<member name="M:HtmlAgilityPack.HtmlWeb.Load(System.String,System.String,System.Int32,System.String,System.String)">
<summary>
Gets an HTML document from an Internet resource.
</summary>
<param name="url">The requested URL, such as "http://Myserver/Mypath/Myfile.asp".</param>
<param name="proxyHost">Host to use for Proxy</param>
<param name="proxyPort">Port the Proxy is on</param>
<param name="userId">User Id for Authentication</param>
<param name="password">Password for Authentication</param>
<returns>A new HTML document.</returns>
</member>
<member name="M:HtmlAgilityPack.HtmlWeb.Load(System.String,System.String)">
<summary>
Loads an HTML document from an Internet resource.
</summary>
<param name="url">The requested URL, such as "http://Myserver/Mypath/Myfile.asp".</param>
<param name="method">The HTTP method used to open the connection, such as GET, POST, PUT, or PROPFIND.</param>
<returns>A new HTML document.</returns>
</member>
<member name="M:HtmlAgilityPack.HtmlWeb.Load(System.String,System.String,System.Net.WebProxy,System.Net.NetworkCredential)">
<summary>
Loads an HTML document from an Internet resource.
</summary>
<param name="url">The requested URL, such as "http://Myserver/Mypath/Myfile.asp".</param>
<param name="method">The HTTP method used to open the connection, such as GET, POST, PUT, or PROPFIND.</param>
<param name="proxy">Proxy to use with this request</param>
<param name="credentials">Credentials to use when authenticating</param>
<returns>A new HTML document.</returns>
</member>
<member name="M:HtmlAgilityPack.HtmlWeb.LoadHtmlAsXml(System.String,System.Xml.XmlTextWriter)">
<summary>
Loads an HTML document from an Internet resource and saves it to the specified XmlTextWriter.
</summary>
<param name="htmlUrl">The requested URL, such as "http://Myserver/Mypath/Myfile.asp".</param>
<param name="writer">The XmlTextWriter to which you want to save to.</param>
</member>
<member name="M:HtmlAgilityPack.HtmlWeb.CreateInstance(System.String,System.String,System.Xml.Xsl.XsltArgumentList,System.Type)">
<summary>
Creates an instance of the given type from the specified Internet resource.
</summary>
<param name="htmlUrl">The requested URL, such as "http://Myserver/Mypath/Myfile.asp".</param>
<param name="xsltUrl">The URL that specifies the XSLT stylesheet to load.</param>
<param name="xsltArgs">An <see cref="T:System.Xml.Xsl.XsltArgumentList"/> containing the namespace-qualified arguments used as input to the transform.</param>
<param name="type">The requested type.</param>
<returns>An newly created instance.</returns>
</member>
<member name="M:HtmlAgilityPack.HtmlWeb.CreateInstance(System.String,System.String,System.Xml.Xsl.XsltArgumentList,System.Type,System.String)">
<summary>
Creates an instance of the given type from the specified Internet resource.
</summary>
<param name="htmlUrl">The requested URL, such as "http://Myserver/Mypath/Myfile.asp".</param>
<param name="xsltUrl">The URL that specifies the XSLT stylesheet to load.</param>
<param name="xsltArgs">An <see cref="T:System.Xml.Xsl.XsltArgumentList"/> containing the namespace-qualified arguments used as input to the transform.</param>
<param name="type">The requested type.</param>
<param name="xmlPath">A file path where the temporary XML before transformation will be saved. Mostly used for debugging purposes.</param>
<returns>An newly created instance.</returns>
</member>
<member name="M:HtmlAgilityPack.HtmlWeb.LoadHtmlAsXml(System.String,System.String,System.Xml.Xsl.XsltArgumentList,System.Xml.XmlTextWriter)">
<summary>
Loads an HTML document from an Internet resource and saves it to the specified XmlTextWriter, after an XSLT transformation.
</summary>
<param name="htmlUrl">The requested URL, such as "http://Myserver/Mypath/Myfile.asp".</param>
<param name="xsltUrl">The URL that specifies the XSLT stylesheet to load.</param>
<param name="xsltArgs">An XsltArgumentList containing the namespace-qualified arguments used as input to the transform.</param>
<param name="writer">The XmlTextWriter to which you want to save.</param>
</member>
<member name="M:HtmlAgilityPack.HtmlWeb.LoadHtmlAsXml(System.String,System.String,System.Xml.Xsl.XsltArgumentList,System.Xml.XmlTextWriter,System.String)">
<summary>
Loads an HTML document from an Internet resource and saves it to the specified XmlTextWriter, after an XSLT transformation.
</summary>
<param name="htmlUrl">The requested URL, such as "http://Myserver/Mypath/Myfile.asp". May not be null.</param>
<param name="xsltUrl">The URL that specifies the XSLT stylesheet to load.</param>
<param name="xsltArgs">An XsltArgumentList containing the namespace-qualified arguments used as input to the transform.</param>
<param name="writer">The XmlTextWriter to which you want to save.</param>
<param name="xmlPath">A file path where the temporary XML before transformation will be saved. Mostly used for debugging purposes.</param>
</member>
<member name="P:HtmlAgilityPack.HtmlWeb.AutoDetectEncoding">
<summary>
Gets or Sets a value indicating if document encoding must be automatically detected.
</summary>
</member>
<member name="P:HtmlAgilityPack.HtmlWeb.OverrideEncoding">
<summary>
Gets or sets the Encoding used to override the response stream from any web request
</summary>
</member>
<member name="P:HtmlAgilityPack.HtmlWeb.CacheOnly">
<summary>
Gets or Sets a value indicating whether to get document only from the cache.
If this is set to true and document is not found in the cache, nothing will be loaded.
</summary>
</member>
<member name="P:HtmlAgilityPack.HtmlWeb.CachePath">
<summary>
Gets or Sets the cache path. If null, no caching mechanism will be used.
</summary>
</member>
<member name="P:HtmlAgilityPack.HtmlWeb.FromCache">
<summary>
Gets a value indicating if the last document was retrieved from the cache.
</summary>
</member>
<member name="P:HtmlAgilityPack.HtmlWeb.RequestDuration">
<summary>
Gets the last request duration in milliseconds.
</summary>
</member>
<member name="P:HtmlAgilityPack.HtmlWeb.ResponseUri">
<summary>
Gets the URI of the Internet resource that actually responded to the request.
</summary>
</member>
<member name="P:HtmlAgilityPack.HtmlWeb.StatusCode">
<summary>
Gets the last request status.
</summary>
</member>
<member name="P:HtmlAgilityPack.HtmlWeb.StreamBufferSize">
<summary>
Gets or Sets the size of the buffer used for memory operations.
</summary>
</member>
<member name="P:HtmlAgilityPack.HtmlWeb.UseCookies">
<summary>
Gets or Sets a value indicating if cookies will be stored.
</summary>
</member>
<member name="P:HtmlAgilityPack.HtmlWeb.UserAgent">
<summary>
Gets or Sets the User Agent HTTP 1.1 header sent on any webrequest
</summary>
</member>
<member name="P:HtmlAgilityPack.HtmlWeb.UsingCache">
<summary>
Gets or Sets a value indicating whether the caching mechanisms should be used or not.
</summary>
</member>
<member name="T:HtmlAgilityPack.HtmlWeb.PostResponseHandler">
<summary>
Represents the method that will handle the PostResponse event.
</summary>
</member>
<member name="T:HtmlAgilityPack.HtmlWeb.PreHandleDocumentHandler">
<summary>
Represents the method that will handle the PreHandleDocument event.
</summary>
</member>
<member name="T:HtmlAgilityPack.HtmlWeb.PreRequestHandler">
<summary>
Represents the method that will handle the PreRequest event.
</summary>
</member>
<member name="T:HtmlAgilityPack.PermissionHelper">
<summary>
Wraps getting AppDomain permissions
</summary>
</member>
<member name="T:HtmlAgilityPack.IPermissionHelper">
<summary>
An interface for getting permissions of the running application
</summary>
</member>
<member name="M:HtmlAgilityPack.IPermissionHelper.GetIsRegistryAvailable">
<summary>
Checks to see if Registry access is available to the caller
</summary>
<returns></returns>
</member>
<member name="M:HtmlAgilityPack.IPermissionHelper.GetIsDnsAvailable">
<summary>
Checks to see if DNS information is available to the caller
</summary>
<returns></returns>
</member>
<member name="M:HtmlAgilityPack.PermissionHelper.GetIsRegistryAvailable">
<summary>
Checks to see if Registry access is available to the caller
</summary>
<returns></returns>
</member>
<member name="M:HtmlAgilityPack.PermissionHelper.GetIsDnsAvailable">
<summary>
Checks to see if DNS information is available to the caller
</summary>
<returns></returns>
</member>
<member name="T:HtmlAgilityPack.MixedCodeDocument">
<summary>
Represents a document with mixed code and text. ASP, ASPX, JSP, are good example of such documents.
</summary>
</member>
<member name="F:HtmlAgilityPack.MixedCodeDocument.TokenCodeEnd">
<summary>
Gets or sets the token representing code end.
</summary>
</member>
<member name="F:HtmlAgilityPack.MixedCodeDocument.TokenCodeStart">
<summary>
Gets or sets the token representing code start.
</summary>
</member>
<member name="F:HtmlAgilityPack.MixedCodeDocument.TokenDirective">
<summary>
Gets or sets the token representing code directive.
</summary>
</member>
<member name="F:HtmlAgilityPack.MixedCodeDocument.TokenResponseWrite">
<summary>
Gets or sets the token representing response write directive.
</summary>
</member>
<member name="M:HtmlAgilityPack.MixedCodeDocument.#ctor">
<summary>
Creates a mixed code document instance.
</summary>
</member>
<member name="M:HtmlAgilityPack.MixedCodeDocument.CreateCodeFragment">
<summary>
Create a code fragment instances.
</summary>
<returns>The newly created code fragment instance.</returns>
</member>
<member name="M:HtmlAgilityPack.MixedCodeDocument.CreateTextFragment">
<summary>
Create a text fragment instances.
</summary>
<returns>The newly created text fragment instance.</returns>
</member>
<member name="M:HtmlAgilityPack.MixedCodeDocument.Load(System.IO.Stream)">
<summary>
Loads a mixed code document from a stream.
</summary>
<param name="stream">The input stream.</param>
</member>
<member name="M:HtmlAgilityPack.MixedCodeDocument.Load(System.IO.Stream,System.Boolean)">
<summary>
Loads a mixed code 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 file.</param>
</member>
<member name="M:HtmlAgilityPack.MixedCodeDocument.Load(System.IO.Stream,System.Text.Encoding)">
<summary>
Loads a mixed code 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.MixedCodeDocument.Load(System.IO.Stream,System.Text.Encoding,System.Boolean)">
<summary>
Loads a mixed code 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 file.</param>
</member>
<member name="M:HtmlAgilityPack.MixedCodeDocument.Load(System.IO.Stream,System.Text.Encoding,System.Boolean,System.Int32)">
<summary>
Loads a mixed code 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 file.</param>
<param name="buffersize">The minimum buffer size.</param>
</member>
<member name="M:HtmlAgilityPack.MixedCodeDocument.Load(System.String)">
<summary>
Loads a mixed code document from a file.
</summary>
<param name="path">The complete file path to be read.</param>
</member>
<member name="M:HtmlAgilityPack.MixedCodeDocument.Load(System.String,System.Boolean)">
<summary>
Loads a mixed code document from a file.
</summary>
<param name="path">The complete file path to be read.</param>
<param name="detectEncodingFromByteOrderMarks">Indicates whether to look for byte order marks at the beginning of the file.</param>
</member>
<member name="M:HtmlAgilityPack.MixedCodeDocument.Load(System.String,System.Text.Encoding)">
<summary>
Loads a mixed code document from a file.
</summary>
<param name="path">The complete file path to be read.</param>
<param name="encoding">The character encoding to use.</param>
</member>
<member name="M:HtmlAgilityPack.MixedCodeDocument.Load(System.String,System.Text.Encoding,System.Boolean)">
<summary>
Loads a mixed code document from a file.
</summary>
<param name="path">The complete file path to be read.</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 file.</param>
</member>
<member name="M:HtmlAgilityPack.MixedCodeDocument.Load(System.String,System.Text.Encoding,System.Boolean,System.Int32)">
<summary>
Loads a mixed code document from a file.
</summary>
<param name="path">The complete file path to be read.</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 file.</param>
<param name="buffersize">The minimum buffer size.</param>
</member>
<member name="M:HtmlAgilityPack.MixedCodeDocument.Load(System.IO.TextReader)">
<summary>
Loads the mixed code document from the specified TextReader.
</summary>
<param name="reader">The TextReader used to feed the HTML data into the document.</param>
</member>
<member name="M:HtmlAgilityPack.MixedCodeDocument.LoadHtml(System.String)">
<summary>
Loads a mixed document from a text
</summary>
<param name="html">The text to load.</param>
</member>
<member name="M:HtmlAgilityPack.MixedCodeDocument.Save(System.IO.Stream)">
<summary>
Saves the mixed document to the specified stream.
</summary>
<param name="outStream">The stream to which you want to save.</param>
</member>
<member name="M:HtmlAgilityPack.MixedCodeDocument.Save(System.IO.Stream,System.Text.Encoding)">
<summary>
Saves the mixed document to the specified stream.
</summary>
<param name="outStream">The stream to which you want to save.</param>
<param name="encoding">The character encoding to use.</param>
</member>
<member name="M:HtmlAgilityPack.MixedCodeDocument.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.MixedCodeDocument.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.</param>
<param name="encoding">The character encoding to use.</param>
</member>
<member name="M:HtmlAgilityPack.MixedCodeDocument.Save(System.IO.StreamWriter)">
<summary>
Saves the mixed document to the specified StreamWriter.
</summary>
<param name="writer">The StreamWriter to which you want to save.</param>
</member>
<member name="M:HtmlAgilityPack.MixedCodeDocument.Save(System.IO.TextWriter)">
<summary>
Saves the mixed document to the specified TextWriter.
</summary>
<param name="writer">The TextWriter to which you want to save.</param>
</member>
<member name="P:HtmlAgilityPack.MixedCodeDocument.Code">
<summary>
Gets the code represented by the mixed code document seen as a template.
</summary>
</member>
<member name="P:HtmlAgilityPack.MixedCodeDocument.CodeFragments">
<summary>
Gets the list of code fragments in the document.
</summary>
</member>
<member name="P:HtmlAgilityPack.MixedCodeDocument.Fragments">
<summary>
Gets the list of all fragments in the document.
</summary>
</member>
<member name="P:HtmlAgilityPack.MixedCodeDocument.StreamEncoding">
<summary>
Gets the encoding of the stream used to read the document.
</summary>
</member>
<member name="P:HtmlAgilityPack.MixedCodeDocument.TextFragments">
<summary>
Gets the list of text fragments in the document.
</summary>
</member>
<member name="T:HtmlAgilityPack.MixedCodeDocumentFragmentList">
<summary>
Represents a list of mixed code fragments.
</summary>
</member>
<member name="M:HtmlAgilityPack.MixedCodeDocumentFragmentList.System#Collections#IEnumerable#GetEnumerator">
<summary>
Gets an enumerator that can iterate through the fragment list.
</summary>
</member>
<member name="M:HtmlAgilityPack.MixedCodeDocumentFragmentList.Append(HtmlAgilityPack.MixedCodeDocumentFragment)">
<summary>
Appends a fragment to the list of fragments.
</summary>
<param name="newFragment">The fragment to append. May not be null.</param>
</member>
<member name="M:HtmlAgilityPack.MixedCodeDocumentFragmentList.GetEnumerator">
<summary>
Gets an enumerator that can iterate through the fragment list.
</summary>
</member>
<member name="M:HtmlAgilityPack.MixedCodeDocumentFragmentList.Prepend(HtmlAgilityPack.MixedCodeDocumentFragment)">
<summary>
Prepends a fragment to the list of fragments.
</summary>
<param name="newFragment">The fragment to append. May not be null.</param>
</member>
<member name="M:HtmlAgilityPack.MixedCodeDocumentFragmentList.Remove(HtmlAgilityPack.MixedCodeDocumentFragment)">
<summary>
Remove a fragment from the list of fragments. If this fragment was not in the list, an exception will be raised.
</summary>
<param name="fragment">The fragment to remove. May not be null.</param>
</member>
<member name="M:HtmlAgilityPack.MixedCodeDocumentFragmentList.RemoveAll">
<summary>
Remove all fragments from the list.
</summary>
</member>
<member name="M:HtmlAgilityPack.MixedCodeDocumentFragmentList.RemoveAt(System.Int32)">
<summary>
Remove a fragment from the list of fragments, using its index in the list.
</summary>
<param name="index">The index of the fragment to remove.</param>
</member>
<member name="P:HtmlAgilityPack.MixedCodeDocumentFragmentList.Doc">
<summary>
Gets the Document
</summary>
</member>
<member name="P:HtmlAgilityPack.MixedCodeDocumentFragmentList.Count">
<summary>
Gets the number of fragments contained in the list.
</summary>
</member>
<member name="P:HtmlAgilityPack.MixedCodeDocumentFragmentList.Item(System.Int32)">
<summary>
Gets a fragment from the list using its index.
</summary>
</member>
<member name="T:HtmlAgilityPack.MixedCodeDocumentFragmentList.MixedCodeDocumentFragmentEnumerator">
<summary>
Represents a fragment enumerator.
</summary>
</member>
<member name="M:HtmlAgilityPack.MixedCodeDocumentFragmentList.MixedCodeDocumentFragmentEnumerator.MoveNext">
<summary>
Advances the enumerator to the next element of the collection.
</summary>
<returns>true if the enumerator was successfully advanced to the next element; false if the enumerator has passed the end of the collection.</returns>
</member>
<member name="M:HtmlAgilityPack.MixedCodeDocumentFragmentList.MixedCodeDocumentFragmentEnumerator.Reset">
<summary>
Sets the enumerator to its initial position, which is before the first element in the collection.
</summary>
</member>
<member name="P:HtmlAgilityPack.MixedCodeDocumentFragmentList.MixedCodeDocumentFragmentEnumerator.Current">
<summary>
Gets the current element in the collection.
</summary>
</member>
<member name="P:HtmlAgilityPack.MixedCodeDocumentFragmentList.MixedCodeDocumentFragmentEnumerator.System#Collections#IEnumerator#Current">
<summary>
Gets the current element in the collection.
</summary>
</member>
<member name="T:HtmlAgilityPack.HtmlEntity">
<summary>
A utility class to replace special characters by entities and vice-versa.
Follows HTML 4.0 specification found at http://www.w3.org/TR/html4/sgml/entities.html
</summary>
</member>
<member name="M:HtmlAgilityPack.HtmlEntity.DeEntitize(System.String)">
<summary>
Replace known entities by characters.
</summary>
<param name="text">The source text.</param>
<returns>The result text.</returns>
</member>
<member name="M:HtmlAgilityPack.HtmlEntity.Entitize(HtmlAgilityPack.HtmlNode)">
<summary>
Clone and entitize an HtmlNode. This will affect attribute values and nodes' text. It will also entitize all child nodes.
</summary>
<param name="node">The node to entitize.</param>
<returns>An entitized cloned node.</returns>
</member>
<member name="M:HtmlAgilityPack.HtmlEntity.Entitize(System.String)">
<summary>
Replace characters above 127 by entities.
</summary>
<param name="text">The source text.</param>
<returns>The result text.</returns>
</member>
<member name="M:HtmlAgilityPack.HtmlEntity.Entitize(System.String,System.Boolean)">
<summary>
Replace characters above 127 by entities.
</summary>
<param name="text">The source text.</param>
<param name="useNames">If set to false, the function will not use known entities name. Default is true.</param>
<returns>The result text.</returns>
</member>
<member name="M:HtmlAgilityPack.HtmlEntity.Entitize(System.String,System.Boolean,System.Boolean)">
<summary>
Replace characters above 127 by entities.
</summary>
<param name="text">The source text.</param>
<param name="useNames">If set to false, the function will not use known entities name. Default is true.</param>
<param name="entitizeQuotAmpAndLtGt">If set to true, the [quote], [ampersand], [lower than] and [greather than] characters will be entitized.</param>
<returns>The result text</returns>
</member>
<member name="P:HtmlAgilityPack.HtmlEntity.EntityName">
<summary>
A collection of entities indexed by name.
</summary>
</member>
<member name="P:HtmlAgilityPack.HtmlEntity.EntityValue">
<summary>
A collection of entities indexed by value.
</summary>
</member>
<member name="T:HtmlAgilityPack.MixedCodeDocumentFragmentType">
<summary>
Represents the type of fragment in a mixed code document.
</summary>
</member>
<member name="F:HtmlAgilityPack.MixedCodeDocumentFragmentType.Code">
<summary>
The fragment contains code.
</summary>
</member>
<member name="F:HtmlAgilityPack.MixedCodeDocumentFragmentType.Text">
<summary>
The fragment contains text.
</summary>
</member>
<member name="T:HtmlAgilityPack.HtmlNodeType">
<summary>
Represents the type of a node.
</summary>
</member>
<member name="F:HtmlAgilityPack.HtmlNodeType.Document">
<summary>
The root of a document.
</summary>
</member>
<member name="F:HtmlAgilityPack.HtmlNodeType.Element">
<summary>
An HTML element.
</summary>
</member>
<member name="F:HtmlAgilityPack.HtmlNodeType.Comment">
<summary>
An HTML comment.
</summary>
</member>
<member name="F:HtmlAgilityPack.HtmlNodeType.Text">
<summary>
A text node is always the child of an element or a document node.
</summary>
</member>
<member name="T:HtmlAgilityPack.HtmlNodeNavigator">
<summary>
Represents an HTML navigator on an HTML document seen as a data store.
</summary>
</member>
<member name="M:HtmlAgilityPack.HtmlNodeNavigator.#ctor(System.IO.Stream)">
<summary>
Initializes a new instance of the HtmlNavigator and loads an HTML document from a stream.
</summary>
<param name="stream">The input stream.</param>
</member>
<member name="M:HtmlAgilityPack.HtmlNodeNavigator.#ctor(System.IO.Stream,System.Boolean)">
<summary>
Initializes a new instance of the HtmlNavigator and 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.HtmlNodeNavigator.#ctor(System.IO.Stream,System.Text.Encoding)">
<summary>
Initializes a new instance of the HtmlNavigator and 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.HtmlNodeNavigator.#ctor(System.IO.Stream,System.Text.Encoding,System.Boolean)">
<summary>
Initializes a new instance of the HtmlNavigator and 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.HtmlNodeNavigator.#ctor(System.IO.Stream,System.Text.Encoding,System.Boolean,System.Int32)">
<summary>
Initializes a new instance of the HtmlNavigator and 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.HtmlNodeNavigator.#ctor(System.IO.TextReader)">
<summary>
Initializes a new instance of the HtmlNavigator and loads an HTML document from a TextReader.
</summary>
<param name="reader">The TextReader used to feed the HTML data into the document.</param>
</member>
<member name="M:HtmlAgilityPack.HtmlNodeNavigator.#ctor(System.String)">
<summary>
Initializes a new instance of the HtmlNavigator and loads an HTML document from a file.
</summary>
<param name="path">The complete file path to be read.</param>
</member>
<member name="M:HtmlAgilityPack.HtmlNodeNavigator.#ctor(System.String,System.Boolean)">
<summary>
Initializes a new instance of the HtmlNavigator and loads an HTML document from a file.
</summary>
<param name="path">The complete file path to be read.</param>
<param name="detectEncodingFromByteOrderMarks">Indicates whether to look for byte order marks at the beginning of the file.</param>
</member>
<member name="M:HtmlAgilityPack.HtmlNodeNavigator.#ctor(System.String,System.Text.Encoding)">
<summary>
Initializes a new instance of the HtmlNavigator and loads an HTML document from a file.
</summary>
<param name="path">The complete file path to be read.</param>
<param name="encoding">The character encoding to use.</param>
</member>
<member name="M:HtmlAgilityPack.HtmlNodeNavigator.#ctor(System.String,System.Text.Encoding,System.Boolean)">
<summary>
Initializes a new instance of the HtmlNavigator and loads an HTML document from a file.
</summary>
<param name="path">The complete file path to be read.</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 file.</param>
</member>
<member name="M:HtmlAgilityPack.HtmlNodeNavigator.#ctor(System.String,System.Text.Encoding,System.Boolean,System.Int32)">
<summary>
Initializes a new instance of the HtmlNavigator and loads an HTML document from a file.
</summary>
<param name="path">The complete file path to be read.</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 file.</param>
<param name="buffersize">The minimum buffer size.</param>
</member>
<member name="M:HtmlAgilityPack.HtmlNodeNavigator.Clone">
<summary>
Creates a new HtmlNavigator positioned at the same node as this HtmlNavigator.
</summary>
<returns>A new HtmlNavigator object positioned at the same node as the original HtmlNavigator.</returns>
</member>
<member name="M:HtmlAgilityPack.HtmlNodeNavigator.GetAttribute(System.String,System.String)">
<summary>
Gets the value of the HTML attribute with the specified LocalName and NamespaceURI.
</summary>
<param name="localName">The local name of the HTML attribute.</param>
<param name="namespaceURI">The namespace URI of the attribute. Unsupported with the HtmlNavigator implementation.</param>
<returns>The value of the specified HTML attribute. String.Empty or null if a matching attribute is not found or if the navigator is not positioned on an element node.</returns>
</member>
<member name="M:HtmlAgilityPack.HtmlNodeNavigator.GetNamespace(System.String)">
<summary>
Returns the value of the namespace node corresponding to the specified local name.
Always returns string.Empty for the HtmlNavigator implementation.
</summary>
<param name="name">The local name of the namespace node.</param>
<returns>Always returns string.Empty for the HtmlNavigator implementation.</returns>
</member>
<member name="M:HtmlAgilityPack.HtmlNodeNavigator.IsSamePosition(System.Xml.XPath.XPathNavigator)">
<summary>
Determines whether the current HtmlNavigator is at the same position as the specified HtmlNavigator.
</summary>
<param name="other">The HtmlNavigator that you want to compare against.</param>
<returns>true if the two navigators have the same position, otherwise, false.</returns>
</member>
<member name="M:HtmlAgilityPack.HtmlNodeNavigator.MoveTo(System.Xml.XPath.XPathNavigator)">
<summary>
Moves to the same position as the specified HtmlNavigator.
</summary>
<param name="other">The HtmlNavigator positioned on the node that you want to move to.</param>
<returns>true if successful, otherwise false. If false, the position of the navigator is unchanged.</returns>
</member>
<member name="M:HtmlAgilityPack.HtmlNodeNavigator.MoveToAttribute(System.String,System.String)">
<summary>
Moves to the HTML attribute with matching LocalName and NamespaceURI.
</summary>
<param name="localName">The local name of the HTML attribute.</param>
<param name="namespaceURI">The namespace URI of the attribute. Unsupported with the HtmlNavigator implementation.</param>
<returns>true if the HTML attribute is found, otherwise, false. If false, the position of the navigator does not change.</returns>
</member>
<member name="M:HtmlAgilityPack.HtmlNodeNavigator.MoveToFirst">
<summary>
Moves to the first sibling of the current node.
</summary>
<returns>true if the navigator is successful moving to the first sibling node, false if there is no first sibling or if the navigator is currently positioned on an attribute node.</returns>
</member>
<member name="M:HtmlAgilityPack.HtmlNodeNavigator.MoveToFirstAttribute">
<summary>
Moves to the first HTML attribute.
</summary>
<returns>true if the navigator is successful moving to the first HTML attribute, otherwise, false.</returns>
</member>
<member name="M:HtmlAgilityPack.HtmlNodeNavigator.MoveToFirstChild">
<summary>
Moves to the first child of the current node.
</summary>
<returns>true if there is a first child node, otherwise false.</returns>
</member>
<member name="M:HtmlAgilityPack.HtmlNodeNavigator.MoveToFirstNamespace(System.Xml.XPath.XPathNamespaceScope)">
<summary>
Moves the XPathNavigator to the first namespace node of the current element.
Always returns false for the HtmlNavigator implementation.
</summary>
<param name="scope">An XPathNamespaceScope value describing the namespace scope.</param>
<returns>Always returns false for the HtmlNavigator implementation.</returns>
</member>
<member name="M:HtmlAgilityPack.HtmlNodeNavigator.MoveToId(System.String)">
<summary>
Moves to the node that has an attribute of type ID whose value matches the specified string.
</summary>
<param name="id">A string representing the ID value of the node to which you want to move. This argument does not need to be atomized.</param>
<returns>true if the move was successful, otherwise false. If false, the position of the navigator is unchanged.</returns>
</member>
<member name="M:HtmlAgilityPack.HtmlNodeNavigator.MoveToNamespace(System.String)">
<summary>
Moves the XPathNavigator to the namespace node with the specified local name.
Always returns false for the HtmlNavigator implementation.
</summary>
<param name="name">The local name of the namespace node.</param>
<returns>Always returns false for the HtmlNavigator implementation.</returns>
</member>
<member name="M:HtmlAgilityPack.HtmlNodeNavigator.MoveToNext">
<summary>
Moves to the next sibling of the current node.
</summary>
<returns>true if the navigator is successful moving to the next sibling node, false if there are no more siblings or if the navigator is currently positioned on an attribute node. If false, the position of the navigator is unchanged.</returns>
</member>
<member name="M:HtmlAgilityPack.HtmlNodeNavigator.MoveToNextAttribute">
<summary>
Moves to the next HTML attribute.
</summary>
<returns></returns>
</member>
<member name="M:HtmlAgilityPack.HtmlNodeNavigator.MoveToNextNamespace(System.Xml.XPath.XPathNamespaceScope)">
<summary>
Moves the XPathNavigator to the next namespace node.
Always returns falsefor the HtmlNavigator implementation.
</summary>
<param name="scope">An XPathNamespaceScope value describing the namespace scope.</param>
<returns>Always returns false for the HtmlNavigator implementation.</returns>
</member>
<member name="M:HtmlAgilityPack.HtmlNodeNavigator.MoveToParent">
<summary>
Moves to the parent of the current node.
</summary>
<returns>true if there is a parent node, otherwise false.</returns>
</member>
<member name="M:HtmlAgilityPack.HtmlNodeNavigator.MoveToPrevious">
<summary>
Moves to the previous sibling of the current node.
</summary>
<returns>true if the navigator is successful moving to the previous sibling node, false if there is no previous sibling or if the navigator is currently positioned on an attribute node.</returns>
</member>
<member name="M:HtmlAgilityPack.HtmlNodeNavigator.MoveToRoot">
<summary>
Moves to the root node to which the current node belongs.
</summary>
</member>
<member name="P:HtmlAgilityPack.HtmlNodeNavigator.BaseURI">
<summary>
Gets the base URI for the current node.
Always returns string.Empty in the case of HtmlNavigator implementation.
</summary>
</member>
<member name="P:HtmlAgilityPack.HtmlNodeNavigator.CurrentDocument">
<summary>
Gets the current HTML document.
</summary>
</member>
<member name="P:HtmlAgilityPack.HtmlNodeNavigator.CurrentNode">
<summary>
Gets the current HTML node.
</summary>
</member>
<member name="P:HtmlAgilityPack.HtmlNodeNavigator.HasAttributes">
<summary>
Gets a value indicating whether the current node has child nodes.
</summary>
</member>
<member name="P:HtmlAgilityPack.HtmlNodeNavigator.HasChildren">
<summary>
Gets a value indicating whether the current node has child nodes.
</summary>
</member>
<member name="P:HtmlAgilityPack.HtmlNodeNavigator.IsEmptyElement">
<summary>
Gets a value indicating whether the current node is an empty element.
</summary>
</member>
<member name="P:HtmlAgilityPack.HtmlNodeNavigator.LocalName">
<summary>
Gets the name of the current HTML node without the namespace prefix.
</summary>
</member>
<member name="P:HtmlAgilityPack.HtmlNodeNavigator.Name">
<summary>
Gets the qualified name of the current node.
</summary>
</member>
<member name="P:HtmlAgilityPack.HtmlNodeNavigator.NamespaceURI">
<summary>
Gets the namespace URI (as defined in the W3C Namespace Specification) of the current node.
Always returns string.Empty in the case of HtmlNavigator implementation.
</summary>
</member>
<member name="P:HtmlAgilityPack.HtmlNodeNavigator.NameTable">
<summary>
Gets the <see cref="T:System.Xml.XmlNameTable"/> associated with this implementation.
</summary>
</member>
<member name="P:HtmlAgilityPack.HtmlNodeNavigator.NodeType">
<summary>
Gets the type of the current node.
</summary>
</member>
<member name="P:HtmlAgilityPack.HtmlNodeNavigator.Prefix">
<summary>
Gets the prefix associated with the current node.
Always returns string.Empty in the case of HtmlNavigator implementation.
</summary>
</member>
<member name="P:HtmlAgilityPack.HtmlNodeNavigator.Value">
<summary>
Gets the text value of the current node.
</summary>
</member>
<member name="P:HtmlAgilityPack.HtmlNodeNavigator.XmlLang">
<summary>
Gets the xml:lang scope for the current node.
Always returns string.Empty in the case of HtmlNavigator implementation.
</summary>
</member>
<member name="T:HtmlAgilityPack.HtmlTextNode">
<summary>
Represents an HTML text node.
</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.