EDI Integrator 2016 .NET Edition
EDI Integrator 2016 .NET Edition
Questions / Feedback?

RecipientInfo Event

Fired for each recipient certificate of the encrypted message.

Syntax

[VB.NET]
Public Event OnRecipientInfo As OnRecipientInfoHandler
[C#]
public event OnRecipientInfoHandler OnRecipientInfo;

public delegate void OnRecipientInfoHandler(object sender, As4clientRecipientInfoEventArgs e);

class As4clientRecipientInfoEventArgs : EventArgs {
  string Issuer {get;}
  string SerialNumber {get;}
  string EncryptionAlgorithm {get;}
  string SubjectKeyIdentifier {get;}
}

Remarks

When ParseRequest is called and the file is encrypted, this event will fire for each recipient certificate for which the file was encrypted.

Information about the recipient certificate may be present in Issuer and SerialNumber, or may be present in SubjectKeyIdentifier.

Issuer identifies the subject of the issuer.

SerialNumber is the serial number of the certificate.

EncryptionAlgorithm is the algorithm used to encrypt the file.

SubjectKeyIdentifier is the Hex encoded X509 Subject Key Identifier certificate extension (if present).

 
 
Copyright (c) 2020 /n software inc. - All rights reserved.
EDI Integrator 2016 .NET Edition - Version 16.0 [Build 7362]