Click or drag to resize
SignDocDocumentcopyToStream Method
Copy the document's backing file to a stream. This function copies to a stream the file from which the document was loaded or to which the document was most recently saved. Changes made to the in-memory copy of the document since it was loaded or saved will not be reflected in the copy written to the stream. This function does not have side effects on the document. This function will fail (throwing SignDocNotSupportedException) if the document has not been saved to a file since it was loaded from memory or saved to a stream.

Namespace:  de.softpro.signdocsdk
Assembly:  SPSignDoc_4.3_DotNetLib (in SPSignDoc_4.3_DotNetLib.dll) Version: 1.0.6773.37566
Syntax
C#
public void copyToStream(
	Stream stream,
	bool includeUnsavedChanges
)

Parameters

stream
Type: System.IOStream
The file will be copied to this stream.
includeUnsavedChanges
Type: SystemBoolean

[Missing <param name="includeUnsavedChanges"/> documentation for "M:de.softpro.signdocsdk.SignDocDocument.copyToStream(System.IO.Stream,System.Boolean)"]

See Also