Skip to content
This repository was archived by the owner on Mar 19, 2019. It is now read-only.

Commit 32f7298

Browse files
committed
#283 Make old object model internal
1 parent fe3038f commit 32f7298

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

src/Microsoft.AspNetCore.Server.HttpSys/HttpSysListener.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ namespace Microsoft.AspNetCore.Server.HttpSys
1414
/// <summary>
1515
/// An HTTP server wrapping the Http.Sys APIs that accepts requests.
1616
/// </summary>
17-
public sealed class HttpSysListener : IDisposable
17+
internal class HttpSysListener : IDisposable
1818
{
1919
// Win8# 559317 fixed a bug in Http.sys's HttpReceiveClientCertificate method.
2020
// Without this fix IOCP callbacks were not being called although ERROR_IO_PENDING was

src/Microsoft.AspNetCore.Server.HttpSys/RequestProcessing/HeaderCollection.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
namespace Microsoft.AspNetCore.Server.HttpSys
1010
{
11-
public class HeaderCollection : IDictionary<string, StringValues>
11+
internal class HeaderCollection : IDictionary<string, StringValues>
1212
{
1313
public HeaderCollection()
1414
: this(new Dictionary<string, StringValues>(4, StringComparer.OrdinalIgnoreCase))

src/Microsoft.AspNetCore.Server.HttpSys/RequestProcessing/Request.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
namespace Microsoft.AspNetCore.Server.HttpSys
1414
{
15-
public sealed class Request
15+
internal sealed class Request
1616
{
1717
private NativeRequestContext _nativeRequestContext;
1818

src/Microsoft.AspNetCore.Server.HttpSys/RequestProcessing/RequestContext.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414
namespace Microsoft.AspNetCore.Server.HttpSys
1515
{
16-
public sealed class RequestContext : IDisposable
16+
internal sealed class RequestContext : IDisposable
1717
{
1818
private static readonly Action<object> AbortDelegate = Abort;
1919

src/Microsoft.AspNetCore.Server.HttpSys/RequestProcessing/Response.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515

1616
namespace Microsoft.AspNetCore.Server.HttpSys
1717
{
18-
public sealed class Response
18+
internal sealed class Response
1919
{
2020
private ResponseState _responseState;
2121
private string _reasonPhrase;

0 commit comments

Comments
 (0)