#283 Make old object model internal

This commit is contained in:
Chris R 2016-12-15 14:55:30 -08:00
parent e524fc2535
commit 87e6c4ed3f
5 changed files with 5 additions and 5 deletions

View File

@ -14,7 +14,7 @@ namespace Microsoft.AspNetCore.Server.HttpSys
/// <summary>
/// An HTTP server wrapping the Http.Sys APIs that accepts requests.
/// </summary>
public sealed class HttpSysListener : IDisposable
internal class HttpSysListener : IDisposable
{
// Win8# 559317 fixed a bug in Http.sys's HttpReceiveClientCertificate method.
// Without this fix IOCP callbacks were not being called although ERROR_IO_PENDING was

View File

@ -8,7 +8,7 @@ using Microsoft.Extensions.Primitives;
namespace Microsoft.AspNetCore.Server.HttpSys
{
public class HeaderCollection : IDictionary<string, StringValues>
internal class HeaderCollection : IDictionary<string, StringValues>
{
public HeaderCollection()
: this(new Dictionary<string, StringValues>(4, StringComparer.OrdinalIgnoreCase))

View File

@ -12,7 +12,7 @@ using System.Threading.Tasks;
namespace Microsoft.AspNetCore.Server.HttpSys
{
public sealed class Request
internal sealed class Request
{
private NativeRequestContext _nativeRequestContext;

View File

@ -13,7 +13,7 @@ using Microsoft.Extensions.Logging;
namespace Microsoft.AspNetCore.Server.HttpSys
{
public sealed class RequestContext : IDisposable
internal sealed class RequestContext : IDisposable
{
private static readonly Action<object> AbortDelegate = Abort;

View File

@ -15,7 +15,7 @@ using static Microsoft.AspNetCore.Server.HttpSys.UnsafeNclNativeMethods;
namespace Microsoft.AspNetCore.Server.HttpSys
{
public sealed class Response
internal sealed class Response
{
private ResponseState _responseState;
private string _reasonPhrase;