HtmlNodeNavigator Constructor (Stream, Encoding, Boolean, Int32) | 
 
            Initializes a new instance of the HtmlNavigator and loads an HTML document from a stream.
            
 
    Namespace: 
   WorkflowGen.My.HtmlAgilityPack
    Assembly:
   WorkflowGen.My (in WorkflowGen.My.dll) Version: 4.7.2.0 (4.7.2.0)
Syntaxpublic HtmlNodeNavigator(
	Stream stream,
	Encoding encoding,
	bool detectEncodingFromByteOrderMarks,
	int buffersize
)
Public Sub New ( 
	stream As Stream,
	encoding As Encoding,
	detectEncodingFromByteOrderMarks As Boolean,
	buffersize As Integer
)
Parameters
- stream
 - Type: System.IOStream
The input stream. - encoding
 - Type: System.TextEncoding
The character encoding to use. - detectEncodingFromByteOrderMarks
 - Type: SystemBoolean
Indicates whether to look for byte order marks at the beginning of the stream. - buffersize
 - Type: SystemInt32
The minimum buffer size. 
See Also