HttpContext

This commit is contained in:
Stef Heyenrath
2026-02-08 19:19:19 +01:00
parent 88df9af9df
commit dff55e175b
40 changed files with 236 additions and 231 deletions

View File

@@ -18,13 +18,6 @@ using WireMock.ResponseBuilders;
using WireMock.Types;
using WireMock.Util;
//#if !USE_ASPNETCORE
//using IResponse = Microsoft.Owin.IOwinResponse;
//#else
//using Microsoft.AspNetCore.Http;
//using IResponse = Microsoft.AspNetCore.Http.HttpResponse;
//#endif
namespace WireMock.Owin.Mappers
{
/// <summary>
@@ -260,11 +253,7 @@ namespace WireMock.Owin.Mappers
private static void AppendResponseHeader(HttpResponse response, string headerName, string[] values)
{
//#if !USE_ASPNETCORE
// response.Headers.AppendValues(headerName, values);
//#else
response.Headers.Append(headerName, values);
//#endif
}
}
}