ServiceStack.ServiceHost.Tests.Formats.ViewTests.MockHttpResponse.MockHttpResponse C# (CSharp) Méthode

MockHttpResponse() public méthode

public MockHttpResponse ( IRequest httpReq ) : System
httpReq IRequest
Résultat System
            public MockHttpResponse(IRequest httpReq)
            {
                this.Request = httpReq;
                this.Headers = new Dictionary<string, string>();
                this.MemoryStream = new MemoryStream();
                this.Cookies = Host.Cookies.CreateCookies(this);
                this.Items = new Dictionary<string, object>();
            }