Skip to content

Commit 7b11c44

Browse files
committed
fix build, remove tests for callback (no way to test current behavior?)
1 parent a9b95eb commit 7b11c44

File tree

2 files changed

+1
-143
lines changed

2 files changed

+1
-143
lines changed

src/Servers/HttpSys/src/RequestProcessing/RequestContext.cs

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,9 @@
11
// Licensed to the .NET Foundation under one or more agreements.
22
// The .NET Foundation licenses this file to you under the MIT license.
33

4-
using System.Buffers;
54
using System.Runtime.InteropServices;
65
using System.Security.Principal;
76
using Microsoft.AspNetCore.Http;
8-
using Microsoft.AspNetCore.Http.Features;
97
using Microsoft.AspNetCore.HttpSys.Internal;
108
using Microsoft.AspNetCore.WebUtilities;
119
using Microsoft.Extensions.Logging;
@@ -35,7 +33,7 @@ public RequestContext(HttpSysListener server, uint? bufferSize, ulong requestId)
3533

3634
public Request Request { get; private set; } = default!;
3735

38-
public Response Response { get; private set; } = default!;
36+
public Response Response { get; private set; } = default!;
3937

4038
public WindowsPrincipal User => Request.User;
4139

src/Servers/HttpSys/test/FunctionalTests/TlsListenerTests.cs

Lines changed: 0 additions & 140 deletions
This file was deleted.

0 commit comments

Comments
 (0)