#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>
|
/// <summary>
|
||||||
/// An HTTP server wrapping the Http.Sys APIs that accepts requests.
|
/// An HTTP server wrapping the Http.Sys APIs that accepts requests.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public sealed class HttpSysListener : IDisposable
|
internal class HttpSysListener : IDisposable
|
||||||
{
|
{
|
||||||
// Win8# 559317 fixed a bug in Http.sys's HttpReceiveClientCertificate method.
|
// 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
|
// 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
|
namespace Microsoft.AspNetCore.Server.HttpSys
|
||||||
{
|
{
|
||||||
public class HeaderCollection : IDictionary<string, StringValues>
|
internal class HeaderCollection : IDictionary<string, StringValues>
|
||||||
{
|
{
|
||||||
public HeaderCollection()
|
public HeaderCollection()
|
||||||
: this(new Dictionary<string, StringValues>(4, StringComparer.OrdinalIgnoreCase))
|
: this(new Dictionary<string, StringValues>(4, StringComparer.OrdinalIgnoreCase))
|
||||||
|
|
|
||||||
|
|
@ -12,7 +12,7 @@ using System.Threading.Tasks;
|
||||||
|
|
||||||
namespace Microsoft.AspNetCore.Server.HttpSys
|
namespace Microsoft.AspNetCore.Server.HttpSys
|
||||||
{
|
{
|
||||||
public sealed class Request
|
internal sealed class Request
|
||||||
{
|
{
|
||||||
private NativeRequestContext _nativeRequestContext;
|
private NativeRequestContext _nativeRequestContext;
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -13,7 +13,7 @@ using Microsoft.Extensions.Logging;
|
||||||
|
|
||||||
namespace Microsoft.AspNetCore.Server.HttpSys
|
namespace Microsoft.AspNetCore.Server.HttpSys
|
||||||
{
|
{
|
||||||
public sealed class RequestContext : IDisposable
|
internal sealed class RequestContext : IDisposable
|
||||||
{
|
{
|
||||||
private static readonly Action<object> AbortDelegate = Abort;
|
private static readonly Action<object> AbortDelegate = Abort;
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -15,7 +15,7 @@ using static Microsoft.AspNetCore.Server.HttpSys.UnsafeNclNativeMethods;
|
||||||
|
|
||||||
namespace Microsoft.AspNetCore.Server.HttpSys
|
namespace Microsoft.AspNetCore.Server.HttpSys
|
||||||
{
|
{
|
||||||
public sealed class Response
|
internal sealed class Response
|
||||||
{
|
{
|
||||||
private ResponseState _responseState;
|
private ResponseState _responseState;
|
||||||
private string _reasonPhrase;
|
private string _reasonPhrase;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue