Id Class
Represents file identifier structure.
Inheritance Hierarchy
SystemObject
  Aspose.PdfId

Namespace: Aspose.Pdf
Assembly: Aspose.PDF (in Aspose.PDF.dll) Version: 20.3
Syntax
public class Id

The Id type exposes the following members.

Properties
  NameDescription
Public propertyModified
Changing identifier based on the document's contents at the time it was last updated.
Public propertyOriginal
Permanent identifier based on the contents of the document at the time it was originally created.
Methods
  NameDescription
Public methodEquals (Inherited from Object.)
Protected methodFinalize (Inherited from Object.)
Public methodGetHashCode (Inherited from Object.)
Public methodGetType (Inherited from Object.)
Protected methodMemberwiseClone (Inherited from Object.)
Public methodToString (Inherited from Object.)
Examples
C#
Document doc = new Document("example.pdf");
string original = doc.Id.Original;
string modified = doc.Id.Modified;
See Also