 | PdfFileCheckSum Property |
Gets or sets a 16-byte string that is the checksum of the bytes of the uncompressed embedded file.
Namespace: Patagames.Pdf.Net.WrappersAssembly: Patagames.Pdf (in Patagames.Pdf.dll) Version: 4.94.2704
Syntaxpublic string CheckSum { get; set; }
Public Property CheckSum As String
Get
Set
public:
property String^ CheckSum {
String^ get ();
void set (String^ value);
}
member CheckSum : string with get, set
/** @property */
public String get_CheckSum()
/** @property */
public void set_CheckSum(String value)
function get_CheckSum();
function set_CheckSum(value);
Property Value
String
Remarks
The checksum is calculated by applying the standard MD5 message-digest algorithm (described in Internet RFC 1321, The MD5
Message-Digest Algorithm) to the bytes of the embedded file stream.
See Also