MvcIntegrationTestFramework.Browsing.SimulatedWorkerRequest.SimulatedWorkerRequest C# (CSharp) Méthode

SimulatedWorkerRequest() public méthode

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
Résultat 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;
        }