Click or drag to resize

PdfLiteStorageAdapterGetDocumentOriginalAsPdf Method (String)

Retrieve a document previously loaded into a PdfWebControl instance with no modifications, as a PDF.

Namespace:  RadPdf.Lite
Assembly:  RadPdf (in RadPdf.dll) Version: 3.44.0.0 (3.44.0.0)
Syntax
public byte[] GetDocumentOriginalAsPdf(
	string documentKey
)

Parameters

documentKey
Type: SystemString
DocumentKey as a string.

Return Value

Type: Byte
The document before any changes in PDF format associated with the documentKey.
Exceptions
ExceptionCondition
InvalidOperationExceptionThe current instance has already been disposed.
RadPdfDocumentKeyNotFoundExceptionThe document session was not found.
Remarks
If the document is not found or inaccessible, an exception will be thrown. The original document is a copy of the PDF as loaded internally by a PdfWebControlLite instance. For example, password protected documents which were loaded will not be encrypted when retrieved with this method. PDF documents which still require a password to be opened (DocumentPasswordPending is true) will not be retrieved.
See Also