Raven.Database.Server.LogHttpRequestStatsParams.LogHttpRequestStatsParams C# (CSharp) Method

LogHttpRequestStatsParams() public method

public LogHttpRequestStatsParams ( Stopwatch sw, NameValueCollection headers, string httpMethod, int responseStatusCode, string requestUri ) : System.Collections.Specialized
sw Stopwatch
headers System.Collections.Specialized.NameValueCollection
httpMethod string
responseStatusCode int
requestUri string
return System.Collections.Specialized
		public LogHttpRequestStatsParams(Stopwatch sw, NameValueCollection headers, string httpMethod, int responseStatusCode, string requestUri)
		{
			this.Stopwatch = sw;
			this.Headers = headers;
			this.HttpMethod = httpMethod;
			this.ResponseStatusCode = responseStatusCode;
			this.RequestUri = requestUri;
		}
LogHttpRequestStatsParams