/// <summary>
 /// Initializes a new instance of the AS2AgreementContent class.
 /// </summary>
 /// <param name="receiveAgreement">The AS2 one-way receive
 /// agreement.</param>
 /// <param name="sendAgreement">The AS2 one-way send agreement.</param>
 public AS2AgreementContent(AS2OneWayAgreement receiveAgreement, AS2OneWayAgreement sendAgreement)
 {
     ReceiveAgreement = receiveAgreement;
     SendAgreement    = sendAgreement;
     CustomInit();
 }
示例#2
0
 /// <summary>
 /// Initializes a new instance of the AS2AgreementContent class.
 /// </summary>
 public AS2AgreementContent(AS2OneWayAgreement receiveAgreement = default(AS2OneWayAgreement), AS2OneWayAgreement sendAgreement = default(AS2OneWayAgreement))
 {
     ReceiveAgreement = receiveAgreement;
     SendAgreement    = sendAgreement;
 }