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, As2receiverRecipientInfoEventArgs e);

class As2receiverRecipientInfoEventArgs : EventArgs {
  string Issuer {get;}
  string SerialNumber {get;}
  string EncryptionAlgorithm {get;}
}

Remarks

When ParseRequest or ProcessRequest has been called on a valid encrypted message, this event will fire for each recipient certificate that the message has been encrypted for.

It will contain information about the Issuer and the SerialNumber of the recipient cert.

The EncryptionAlgorithm will contain the algorithm used to encrypt the message.

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