MvcIntegrationTestFramework.Browsing.SimulatedWorkerRequest.SimulatedWorkerRequest C# (CSharp) Method

SimulatedWorkerRequest() public method

public SimulatedWorkerRequest ( string page, string query, TextWriter output, System.Web.HttpCookieCollection cookies, string httpVerbName, NameValueCollection formValues, NameValueCollection headers ) : System
page string
query string
output System.IO.TextWriter
cookies System.Web.HttpCookieCollection
httpVerbName string
formValues System.Collections.Specialized.NameValueCollection
headers System.Collections.Specialized.NameValueCollection
return System
        public SimulatedWorkerRequest(string page, string query, TextWriter output, HttpCookieCollection cookies, string httpVerbName, NameValueCollection formValues, NameValueCollection headers)
            : base(page, query, output)
        {
            _cookies = cookies;
            _httpVerbName = httpVerbName;
            _formValues = formValues;
            _headers = headers;
        }