| SignDocVerificationResultgetSignatureBlob Method |
Get a blob property from the signature field.
Available blob parameters are:
- BiometricHash The message digest of the unencrypted biometric data,
empty if not present.
- Contents The Contents entry of the signature dictionary, that is,
the digital signature (PDF documents only).
- Signature The PKCS #1 or DER-encoded PKCS #7 signature.
.
Additional, you can store your own blobs in the signature by
using a name starting with "Prop_", except for "Prop_AuthTime",
"Prop_AuthType", "Prop_BiometricData", and "Prop_Build",
which are reserved), see
de.softpro.doc.SignDocSignatureParameters.setBlob().
Namespace: de.softpro.signdocsdkAssembly: SPSignDoc_4.1_DotNetLibd (in SPSignDoc_4.1_DotNetLibd.dll) Version: 1.0.5882.21462
Syntaxpublic byte[] getSignatureBlob(
SignatureBlob name
)
Public Function getSignatureBlob (
name As SignatureBlob
) As Byte()
public:
array<unsigned char>^ getSignatureBlob(
SignatureBlob name
)
member getSignatureBlob :
name : SignatureBlob -> byte[]
Parameters
- name
- Type: de.softpro.signdocsdk.Enums.EVerificationResultSignatureBlob
The name of the property.
Return Value
Type:
Byte The blob retrieved from the signature field or null
if the property does not exist.
See Also