HtmlToPdfConvert Method (Stream, Stream)
Writes an HTML or plain-text string into a stream in PDF format.

Namespace: MailBee.Pdf
Assembly: MailBee.NET (in MailBee.NET.dll) Version: 12.4 build 677 for .NET 4.5
Syntax
public void Convert(
	Stream sourceStream,
	Stream outputStream
)

Parameters

sourceStream
Type: System.IOStream
The input stream containing HTML or plain-text data.
outputStream
Type: System.IOStream
The output stream to write .pdf data into.
Exceptions
ExceptionCondition
MailBeeInvalidArgumentExceptionsourceStream or outputStream is a null reference (Nothing in Visual Basic).
MailBeeStreamExceptionA stream error occurred.
MailBeeIOExceptionAn I/O error occurred.
Remarks
If SourceType is Html (default value), the input is considered HTML; if SourceType is Text the input is considered plain text; otherwise, XMLized XHTML.
Examples
See Also