Click or drag to resize

SignerBaseProcessSigning Method

Callback for saving created signature.

Namespace:  ASDSoft.WebSigner.Server
Assembly:  ASDSoft.WebSigner.Server (in ASDSoft.WebSigner.Server.dll) Version: 2.5.0
Syntax
C#
protected abstract Task ProcessSigning(
	X509Certificate2 certificate,
	SignatureInfo signatureInfo
)

Parameters

certificate
Type: System.Security.Cryptography.X509CertificatesX509Certificate2
Client certificate used for signing.
signatureInfo
Type: ASDSoft.WebSigner.ServerSignatureInfo
Information of created signatures and signed contents.

Return Value

Type: Task
The task for async calling without a return value.
Remarks
Implementation must be thread safe, when sign more than one content per session.
See Also