2 implementations of IHttpResponseControl
InMemory.FunctionalTests (1)
Http3\WebTransport\WebTransportTestUtilities.cs (1)
101class StreamWriterControl : IHttpResponseControl
Microsoft.AspNetCore.Server.Kestrel.Core (1)
Internal\Http\HttpProtocol.cs (1)
33internal abstract partial class HttpProtocol : IHttpResponseControl
15 references to IHttpResponseControl
Microsoft.AspNetCore.Server.Kestrel.Core (4)
Internal\Http\HttpProtocol.cs (1)
97public IHttpResponseControl HttpResponseControl { get; set; } = default!;
Internal\Http\HttpResponsePipeWriter.cs (2)
11private readonly IHttpResponseControl _pipeControl; 16public HttpResponsePipeWriter(IHttpResponseControl pipeControl)
Internal\Infrastructure\BodyControl.cs (1)
26public BodyControl(IHttpBodyControlFeature bodyControl, IHttpResponseControl responseControl)
Microsoft.AspNetCore.Server.Kestrel.Core.Tests (11)
BodyControlTests.cs (6)
21var bodyControl = new BodyControl(Mock.Of<IHttpBodyControlFeature>(), Mock.Of<IHttpResponseControl>()); 37var bodyControl = new BodyControl(Mock.Of<IHttpBodyControlFeature>(), Mock.Of<IHttpResponseControl>()); 62var bodyControl = new BodyControl(Mock.Of<IHttpBodyControlFeature>(), Mock.Of<IHttpResponseControl>()); 87var bodyControl = new BodyControl(Mock.Of<IHttpBodyControlFeature>(), Mock.Of<IHttpResponseControl>()); 109var bodyControl = new BodyControl(Mock.Of<IHttpBodyControlFeature>(), Mock.Of<IHttpResponseControl>()); 126var bodyControl = new BodyControl(Mock.Of<IHttpBodyControlFeature>(), Mock.Of<IHttpResponseControl>());
HttpResponsePipeWriterTests.cs (1)
75return new HttpResponsePipeWriter(Mock.Of<IHttpResponseControl>());
HttpResponseStreamTests.cs (3)
99var pipeWriter = new HttpResponsePipeWriter(Mock.Of<IHttpResponseControl>()); 113var mockHttpResponseControl = new Mock<IHttpResponseControl>(); 133var pipeWriter = new HttpResponsePipeWriter(Mock.Of<IHttpResponseControl>());
TestHelpers\TestInput.cs (1)
53Http1Connection.HttpResponseControl = Mock.Of<IHttpResponseControl>();