Click or drag to resize

SignerBaseTIdentification Class

Base class for inherited implementation in hosting web application provide methods and callbacks for prepare and save signatures with typed Identification.
Inheritance Hierarchy

Namespace:  ASDSoft.WebSigner.Server
Assembly:  ASDSoft.WebSigner.Server (in ASDSoft.WebSigner.Server.dll) Version: 2.5.0
Syntax
C#
public abstract class SignerBase<TIdentification> : SignerBase

Type Parameters

TIdentification
Target data type for deserialize Identification string. Can by value type, string type or class serializable from JSON.

The SignerBaseTIdentification type exposes the following members.

Constructors
  NameDescription
Protected methodSignerBaseTIdentification
Initializes a new instance of the SignerBaseTIdentification class
Top
Methods
  NameDescription
Protected methodConfigureX509ChainForValidation
Configure certificate chain for validation accepted certificates.
(Inherited from SignerBase.)
Protected methodCreateLoginSignatureSession
Create new session for login user by client certificate.
(Inherited from SignerBase.)
Protected methodCreateSignatureSession(CreateSessionRequest) (Overrides SignerBaseCreateSignatureSession(CreateSessionRequest).)
Protected methodCreateSignatureSession(IContentBuilder)
Create new session for signing in default web application with not required qualified certificate.
(Inherited from SignerBase.)
Protected methodCreateSignatureSession(SignatureRequest)
Create new session for signing in default web application with not required qualified certificate.
(Inherited from SignerBase.)
Protected methodCreateSignatureSession(Boolean, IContentBuilder)
Create new session for signing in default web application.
(Inherited from SignerBase.)
Protected methodCreateSignatureSession(Boolean, SignatureRequest)
Create new session for signing in default web application.
(Inherited from SignerBase.)
Protected methodCreateSignatureSession(TIdentification, String)
Create new session for signing customized by host application.
Protected methodCreateSignatureSession(String, Boolean, SignatureRequest)
Create new session for signing in specific web application. Only for internal use.
(Inherited from SignerBase.)
Protected methodGetContent
Callback for obtaining all contents for signing, if not provide during creating of signature context.
(Inherited from SignerBase.)
Protected methodGetDocument
Callback for obtaining the full document for showing or downloading in browser based on a user request for showing the document.
(Inherited from SignerBase.)
Protected methodGetIdentityName Obsolete.
This method is no longer used. Use IAuthenticationPersistor instead GetIdentityName
(Inherited from SignerBase.)
Protected methodLogin Obsolete.
This method is no longer used. Use ICertificateAuthenticationProvider instead Login
(Inherited from SignerBase.)
Protected methodOnProcessSigningEnd
Called when all signatures in session processed by ProcessSigning(X509Certificate2, SignatureInfo).
(Inherited from SignerBase.)
Protected methodProcessSigning
Callback for saving created signature.
(Inherited from SignerBase.)
Protected methodValidateCertificateExtended
Custom filtering of the acceptable certificate.
(Inherited from SignerBase.)
Protected methodValidateQualifiedCertificate
Custom filtering of the certificate qualified certificate.
(Inherited from SignerBase.)
Top
See Also