MvcIntegrationTestFramework.Browsing.SimulatedWorkerRequest.SimulatedWorkerRequest C# (CSharp) 메소드

SimulatedWorkerRequest() 공개 메소드

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
리턴 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;
        }