/// <summary>Initializes a new instance of the NServiceKit.ServiceHost.MqRequest class.</summary>
 ///
 /// <param name="requestContext">Context for the request.</param>
 public MqRequest(MqRequestContext requestContext)
 {
     this.requestContext = requestContext;
 }
Exemple #2
0
 /// <summary>Initializes a new instance of the NServiceKit.ServiceHost.MqResponse class.</summary>
 ///
 /// <param name="requestContext">Context for the request.</param>
 public MqResponse(MqRequestContext requestContext)
 {
     this.requestContext = requestContext;
     this.Headers        = new Dictionary <string, string>();
 }