Skip to main content
All docs
V24.2

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

SignaturePolicy Class

Contains signature policy options.

Namespace: DevExpress.Office.DigitalSignatures

Assembly: DevExpress.Docs.v24.2.dll

NuGet Package: DevExpress.Document.Processor

#Declaration

public class SignaturePolicy

The following members return SignaturePolicy objects:

#Remarks

Use the SignaturePolicy class options to specify the role and commitments that the signer assumes with regards to the signed data object.

Set the SignaturePolicy.IsImplied property to false to indicate the identifier and hash value identifies the policy. Otherwise, the SignaturePolicy.Identifier and SignaturePolicy.DigestMethod property values are ignored.

The code sample below defines the signature policy:

SignatureInfo signatureInfo = new SignatureInfo();
SignaturePolicy policy = signatureInfo.Policy;
policy.IsImplied = false;
policy.Identifier = "https://...";
policy.DigestMethod = HashAlgorithmType.SHA384;

#Inheritance

Object
SignaturePolicy
See Also