Class Id

Id class

Represents file identifier structure.

public class Id

Properties

NameDescription
Modified { get; }Changing identifier based on the document’s contents at the time it was last updated.
Original { get; }Permanent identifier based on the contents of the document at the time it was originally created.

Examples

Document doc = new Document("example.pdf");
string original = doc.Id.Original;
string modified = doc.Id.Modified;

See Also