Class FileIdentifier
A File Identifier is described in section 8.3 of the PDF specification. The first string is a permanent identifier based on the contents of the file at the time it was originally created, and does not change as the file is incrementally updated. The second string is a changing identifier based on the file's contents the last time it was updated.
Inherited Members
Namespace: Telerik.Pdf
Assembly: TelerikData.dll
Syntax
public class FileIdentifier : PdfObject
Remarks
If this class were being use to update a PDF's file identifier, we'd need to add a method to parse an existing file identifier.
Constructors
FileIdentifier()
Initialises the CreatedPart and ModifiedPart to a randomly generated GUID.
Declaration
public FileIdentifier()
FileIdentifier(Byte[])
Initialises the CreatedPart and ModifiedPart to the passed string.
Declaration
public FileIdentifier(byte[] createdPart)
Parameters
System.Byte[]
createdPart
|
Properties
CreatedPart
Returns the CreatedPart as a byte array.
Declaration
public byte[] CreatedPart { get; }
Property Value
System.Byte[]
|
ModifiedPart
Returns the ModifiedPart as a byte array.
Declaration
public byte[] ModifiedPart { get; }
Property Value
System.Byte[]
|