#283 Make old object model internal
This commit is contained in:
parent
e524fc2535
commit
87e6c4ed3f
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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))
|
||||
|
|
|
|||
|
|
@ -12,7 +12,7 @@ using System.Threading.Tasks;
|
|||
|
||||
namespace Microsoft.AspNetCore.Server.HttpSys
|
||||
{
|
||||
public sealed class Request
|
||||
internal sealed class Request
|
||||
{
|
||||
private NativeRequestContext _nativeRequestContext;
|
||||
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Reference in New Issue