| ProcessorLoadFromStreamAsync Method | 
 
Namespace: MailBee.HtmlAssembly: MailBee.NET (in MailBee.NET.dll) Version: 12.5.0 build 687 for .NET 4.5
 Syntax
Syntaxpublic Task<bool> LoadFromStreamAsync(
	Stream inputStream,
	Encoding enc
)
Public Function LoadFromStreamAsync ( 
	inputStream As Stream,
	enc As Encoding
) As Task(Of Boolean)
Parameters
- inputStream
- Type: System.IOStream
 The stream representing the content of the HTML markup.
- enc
- Type: System.TextEncoding
 The encoding to use for decoding stream data from bytes to string.
            If a null reference (Nothing in Visual Basic), UTF-8 encoding will be used.
Return Value
Type: 
TaskBooleanA task that represents the asynchronous operation. The value of 
TResult parameter is
            
true if the entire data was successfully read from the stream; otherwise, 
false. 
 Exceptions
Exceptions See Also
See Also