Beispiel #1
0
 /// <summary>
 /// Initializes a new instance of the SoapEnvelope class.
 /// </summary>
 /// <param name="messageVersion">The version of the soap message</param>
 /// <param name="header">The header of the soap message</param>
 /// <param name="body">The body of the soap message</param>
 public SoapEnvelope(SoapMessageVersion messageVersion, SoapHeader header, SoapBody body)
 {
     this.messageVersion = messageVersion;
     this.header         = header;
     this.body           = body;
 }
 /// <summary>
 /// Initializes a new instance of the SoapEnvelope class.
 /// </summary>
 /// <param name="messageVersion">The version of the soap message</param>
 /// <param name="header">The header of the soap message</param>
 /// <param name="body">The body of the soap message</param>
 public SoapEnvelope(SoapMessageVersion messageVersion, SoapHeader header, SoapBody body)
 {
     this.messageVersion = messageVersion;
     this.header = header;
     this.body = body;
 }