This repository was archived by the owner on Mar 19, 2019. It is now read-only.
File tree Expand file tree Collapse file tree 5 files changed +5
-5
lines changed
src/Microsoft.AspNetCore.Server.HttpSys Expand file tree Collapse file tree 5 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ namespace Microsoft.AspNetCore.Server.HttpSys
14
14
/// <summary>
15
15
/// An HTTP server wrapping the Http.Sys APIs that accepts requests.
16
16
/// </summary>
17
- public sealed class HttpSysListener : IDisposable
17
+ internal class HttpSysListener : IDisposable
18
18
{
19
19
// Win8# 559317 fixed a bug in Http.sys's HttpReceiveClientCertificate method.
20
20
// Without this fix IOCP callbacks were not being called although ERROR_IO_PENDING was
Original file line number Diff line number Diff line change 8
8
9
9
namespace Microsoft . AspNetCore . Server . HttpSys
10
10
{
11
- public class HeaderCollection : IDictionary < string , StringValues >
11
+ internal class HeaderCollection : IDictionary < string , StringValues >
12
12
{
13
13
public HeaderCollection ( )
14
14
: this ( new Dictionary < string , StringValues > ( 4 , StringComparer . OrdinalIgnoreCase ) )
Original file line number Diff line number Diff line change 12
12
13
13
namespace Microsoft . AspNetCore . Server . HttpSys
14
14
{
15
- public sealed class Request
15
+ internal sealed class Request
16
16
{
17
17
private NativeRequestContext _nativeRequestContext ;
18
18
Original file line number Diff line number Diff line change 13
13
14
14
namespace Microsoft . AspNetCore . Server . HttpSys
15
15
{
16
- public sealed class RequestContext : IDisposable
16
+ internal sealed class RequestContext : IDisposable
17
17
{
18
18
private static readonly Action < object > AbortDelegate = Abort ;
19
19
Original file line number Diff line number Diff line change 15
15
16
16
namespace Microsoft . AspNetCore . Server . HttpSys
17
17
{
18
- public sealed class Response
18
+ internal sealed class Response
19
19
{
20
20
private ResponseState _responseState ;
21
21
private string _reasonPhrase ;
You can’t perform that action at this time.
0 commit comments