Click or drag to resize
CertificateManagerCertificateEnrollmentCompletionHandler Delegate
A delegate method to be called upon completion of identity certificate enrollment.

Namespace: Avaya.ClientServices
Assembly: AvayaClientServices (in AvayaClientServices.dll) Version: 493.0.70.0
Syntax
C#
public delegate void CertificateEnrollmentCompletionHandler(
	List<X509Certificate2> certificateChain,
	AsymmetricAlgorithm privateKey,
	Enum result
)

Parameters

certificateChain
Type: System.Collections.GenericListX509Certificate2
If the certificate enrollment is successful, this argument will contain X509 certificate chain. Otherwise the argument will be null.
privateKey
Type: System.Security.CryptographyAsymmetricAlgorithm
If the certificate enrollment is successful, this argument will contain private key. Otherwise the argument will be null. NOTE: Private key is not disposed by Client SDK. Call privateKey.Dispose when an object is no longer needed.
result
Type: SystemEnum
Result of certificate enrollment operation.
See Also