HA4IoT.ExternalServices.AzureCloud.QueueBasedApiContext.QueueBasedApiContext C# (CSharp) Method

QueueBasedApiContext() public method

public QueueBasedApiContext ( string correlationId, string uri, Newtonsoft.Json.Linq.JObject request, Newtonsoft.Json.Linq.JObject response ) : System
correlationId string
uri string
request Newtonsoft.Json.Linq.JObject
response Newtonsoft.Json.Linq.JObject
return System
        public QueueBasedApiContext(string correlationId, string uri, JObject request, JObject response)
            : base(uri, request, response)
        {
            if (correlationId == null) throw new ArgumentNullException(nameof(correlationId));

            CorrelationId = correlationId;
        }
QueueBasedApiContext