ProcessorSaveToStream Method
Saves HTML markup into a stream.

Namespace: MailBee.Html
Assembly: MailBee.NET (in MailBee.NET.dll) Version: 12.4 build 677 for .NET 4.5
Syntax
public bool SaveToStream(
	Stream outputStream,
	Encoding enc
)

Parameters

outputStream
Type: System.IOStream
The stream where the HTML markup should be saved to.
enc
Type: System.TextEncoding
The encoding to use for encoding the HTML data from string into bytes. If a null reference (Nothing in Visual Basic), UTF-8 encoding will be used.

Return Value

Type: Boolean
true if the entire data was successfully encoded and saved into the stream; otherwise, false.
Exceptions
ExceptionCondition
MailBeeInvalidArgumentExceptionoutputStream is a null reference (Nothing in Visual Basic).
MailBeeStreamExceptionThe given stream does not support writing or stream I/O error occurred, and ThrowExceptions is true.
See Also