Saves the Pdf document to a Stream.

Namespace:  C1.Silverlight.Pdf
Assembly:  C1.Silverlight.Pdf (in C1.Silverlight.Pdf.dll)

Syntax

C#
public void Save(
	Stream stream
)
Visual Basic
Public Sub Save ( _
	stream As Stream _
)

Parameters

stream
Type: System.IO..::..Stream
Stream object to use for saving the document.

Remarks

Saving the Pdf document to a Stream object is often used in Web scenarios, when you are creating a Response object or storing the document in the a cache, and don't want to create temporary files.

See Also