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)
The sub filter.
Returns: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)
The signature sub filter name that identifies the handler type.
validationHandlerSignatureValidationHandlerBaseThe validation handler instance to register.
Unregister the handler associated with the specified sub-filter.
C#
public static void UnregisterHandler(string subFilter)
The signature sub filter name identifying the handler to unregister.