Acrux Html Parser Documentation
Load Method (inputStream)
NamespacesAcrux.HtmlHtmlDocumentLoad(Stream)
Loads an HTML document from a stream.
Declaration Syntax
C#Visual BasicVisual C++
public void Load(
	Stream inputStream
)
Public Sub Load ( _
	inputStream As Stream _
)
public:
void Load(
	Stream^ inputStream
)
Parameters
inputStream (Stream)
The stream to load the HTML document from. It must support Seek operations and will be positioned at the beginning before processing. If there is a byte order mark at the beginning of the stream it will be used to determine the encoding. If not - UTF8 will be used as default.
Exceptions
ExceptionCondition
ArgumentNullExceptionThe inputStream is null or does not support Seek operations.
NotSupportedExceptionThe file is bigger than 2,147,483,647 bytes.
HtmlParserExceptionAn error is encountered during the parsing operation.

Assembly: Acrux.Html (Module: Acrux.Html) Version: 1.0.0.0 (1.0.0.215)