Class DocumentInformation
Metadata for the PDF document.
public class DocumentInformation
- Inheritance
-
DocumentInformation
- Inherited Members
Properties
Author
The name of the person who created this document if applicable.
public string Author { get; }
Property Value
CreationDate
The date and time the document was created.
public string CreationDate { get; }
Property Value
Creator
The name of the application which created the original document before it was converted to PDF if applicable.
public string Creator { get; }
Property Value
DocumentInformationDictionary
The underlying document information PDF dictionary from the document.
public DictionaryToken DocumentInformationDictionary { get; }
Property Value
Keywords
Any keywords associated with this document if applicable.
public string Keywords { get; }
Property Value
ModifiedDate
The date and time the document was most recently modified.
public string ModifiedDate { get; }
Property Value
Producer
The name of the application used to convert the original document to PDF if applicable.
public string Producer { get; }
Property Value
Subject
The subject of this document if applicable.
public string Subject { get; }
Property Value
Title
The title of this document if applicable.
public string Title { get; }
Property Value
Methods
GetCreatedDateTimeOffset()
Gets the CreationDate as a DateTimeOffset if it's possible to convert it, or null.
public DateTimeOffset? GetCreatedDateTimeOffset()
Returns
GetModifiedDateTimeOffset()
Gets the ModifiedDate as a DateTimeOffset if it's possible to convert it, or null.
public DateTimeOffset? GetModifiedDateTimeOffset()
Returns
ToString()
Gets a string representing this document information. null entries are not shown.
public override string ToString()