New to Telerik Document ProcessingStart a free 30-day trial

Registry for mapping PDF signature sub-filters to validation handlers used during signature verification.

Definition

Namespace:Telerik.Windows.Documents.Fixed.Model.DigitalSignatures

Assembly:Telerik.Windows.Documents.Fixed.dll

Syntax:

C#
public static class SignatureValidationHandlersManager

Inheritance: objectSignatureValidationHandlersManager

Methods

Determine whether a handler is registered for the specified sub-filter.

C#
public static bool HasRegisteredHandler(string subFilter)
Parameters:subFilterstring

The sub filter.

Returns:

bool

true if subFilter is found in the SignatureValidationHandlersManager; otherwise, false.

Register a validation handler for a given sub-filter.

C#
public static void RegisterHandler(string subFilter, SignatureValidationHandlerBase validationHandler)
Parameters:subFilterstring

The signature sub filter name that identifies the handler type.

validationHandlerSignatureValidationHandlerBase

The validation handler instance to register.

Unregister the handler associated with the specified sub-filter.

C#
public static void UnregisterHandler(string subFilter)
Parameters:subFilterstring

The signature sub filter name identifying the handler to unregister.