PdfDocumentMetadataFromStream Method (Stream, SecureString) |
Constructs a new PdfDocumentMetadata object from the stream, using the
supplied password
Reads PDF document metadata from an existing PDF and returns a new
PdfDocumentMetadata object populated with all the fields contained in the
stream.
Namespace:
Atalasoft.PdfDoc
Assembly:
Atalasoft.PdfDoc (in Atalasoft.PdfDoc.dll) Version: 11.4.0.9.0.377 (.NET 4.5.2, x86)
Syntax public static PdfDocumentMetadata FromStream(
Stream stm,
SecureString password
)
Public Shared Function FromStream (
stm As Stream,
password As SecureString
) As PdfDocumentMetadata
Parameters
- stm
- Type: System.IOStream
A stream containing a PDF document
- password
- Type: System.SecuritySecureString
A password to use to decrypt the document
Return Value
Type:
PdfDocumentMetadata
A new PdfDocumentMetadata object containing the fields from the PDF.
Remarks
If metadata fields are not present within the PDF, they will be null in the
resulting PdfDocumentMetadata object.
See Also