SignatureSettings

SignatureSettings class

Defines settings for customizing Signature behavior.

public class SignatureSettings

Constructors

Name Description
SignatureSettings() Creates default SignatureSettings instance with default values.
SignatureSettings(ILogger) Creates default SignatureSettings instance with the Logger implementation.

Properties

Name Description
DefaultCulture { get; set; } Gets or sets default culture to be used during document processing. Default value is “en-US”.
IncludeStandardMetadataSignatures { get; set; } Gets or sets flag to include into the Metadata List the embedded standard document metadata signatures like Author, Owner, document creation date, modified date, etc. If this flag is set to false (by default) the GetDocumentInfo will not include these metadata signatures. When this flag is set to true the document information will include these standard metadata signatures.
Logger { get; } The logger implementation used for logging (Errors, Warnings, Traces). ILogger.
LogLevel { get; set; } The level of the logging to limit the messages (All, Traces, Warnings, Errors). LogLevel. BY default the All level type is set.
SaveDocumentOnEmptyDelete { get; set; } Gets or sets flag to re-save source document when Delete method has no affected signatures to remove. If this flag is set to true (by default) document will be saving with corresponding history process log (date and operation type) even if Delete method has no signatures to remove. When this flat is set to false source document will not be modified at all.
SaveDocumentOnEmptyUpdate { get; set; } Gets or sets flag to re-save source document when Update method has no signatures to update. If this flag is set to true (by default) document will be saving with corresponding history process log (date and operation type) even if Update method has no signatures to update. When this flat is set to false source document will not be modified at all.
ShowDeletedSignaturesInfo { get; set; } Gets or sets flag that includes deleted signatures into Document Info result. Each Signature BaseSignature has Deleted flag Deleted to detect if it was deleted.

See Also