Coinium.Core.RPC.Http.HttpRpcResponse.HttpRpcResponse C# (CSharp) Method

HttpRpcResponse() public method

public HttpRpcResponse ( string text, HttpListenerResponse response ) : System.Net
text string
response System.Net.HttpListenerResponse
return System.Net
        public HttpRpcResponse(string text, HttpListenerResponse response)
        {
            this.Text = text;
            this.Data = JsonConvert.DeserializeObject<dynamic>(this.Text);
            this.Response = response;
        }
HttpRpcResponse