This commit is contained in:
David Fowler 2015-05-17 08:55:46 -07:00
parent 7b9cb14a10
commit 83a8fd136f
1 changed files with 3 additions and 3 deletions

View File

@ -9,8 +9,8 @@ namespace Microsoft.AspNet.Http.Features.Internal
{
public class HttpResponseFeature : IHttpResponseFeature
{
public HttpResponseFeature()
{
public HttpResponseFeature()
{
StatusCode = 200;
Headers = new Dictionary<string, string[]>(StringComparer.OrdinalIgnoreCase);
Body = Stream.Null;
@ -39,4 +39,4 @@ namespace Microsoft.AspNet.Http.Features.Internal
throw new NotSupportedException();
}
}
}
}