SecureBlackbox 2020 .NET Edition

Questions / Feedback?

RecipientFound Event

Provides recipient certificate details to the application.

Syntax

public event OnRecipientFoundHandler OnRecipientFound;

public delegate void OnRecipientFoundHandler(object sender, PdfdecryptorRecipientFoundEventArgs e);

public class PdfdecryptorRecipientFoundEventArgs : EventArgs {
  public string IssuerRDN { get; }
  public byte[] SerialNumber { get; }
  public byte[] SubjectKeyID { get; }
  public bool CertFound { get; }
}
Public Event OnRecipientFound As OnRecipientFoundHandler

Public Delegate Sub OnRecipientFoundHandler(sender As Object, e As PdfdecryptorRecipientFoundEventArgs)

Public Class PdfdecryptorRecipientFoundEventArgs Inherits EventArgs
  Public ReadOnly Property IssuerRDN As String
  Public ReadOnly Property SerialNumber As Byte()
  Public ReadOnly Property SubjectKeyID As Byte()
  Public ReadOnly Property CertFound As Boolean
End Class

Remarks

The component fires this event when processing encrypted documents to report encryption certificate details to the user.

Subscribe to this event to obtain encryption certificate information and pass the corresponding certificate to the component via DecryptionCertificate (DecryptionCertificates) property.

Copyright (c) 2022 /n software inc. - All rights reserved.
SecureBlackbox 2020 .NET Edition - Version 20.0 [Build 8165]