PersonalAnalytics.Visualizations.HttpReqResp.HttpReqResp C# (CSharp) Method

HttpReqResp() private method

private HttpReqResp ( string host, string script, string query ) : System
host string
script string
query string
return System
        internal HttpReqResp(string host, string script, string query)
        {
            _host = host;
            _script = script;
            _parameters = HttpUtility.ParseQueryString(query);
            _headers = new NameValueCollection();
            _response = new MemoryStream();
        }