5 references to DefaultStreamDirectionFeature
InMemory.FunctionalTests (1)
Http3\WebTransport\WebTransportTestUtilities.cs (1)
79
features.Set<IStreamDirectionFeature>(new
DefaultStreamDirectionFeature
(type != WebTransportStreamType.Output, type != WebTransportStreamType.Input));
Microsoft.AspNetCore.Server.Kestrel.Core (2)
Internal\Http3\Http3Connection.cs (1)
738
features.Set<IStreamDirectionFeature>(new
DefaultStreamDirectionFeature
(canRead: false, canWrite: true));
Internal\WebTransport\WebTransportSession.cs (1)
19
private static readonly IStreamDirectionFeature _outputStreamDirectionFeature = new
DefaultStreamDirectionFeature
(canRead: false, canWrite: true);
Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.Tests (2)
QuicStreamContextTests.cs (2)
412
features.Set<IStreamDirectionFeature>(new
DefaultStreamDirectionFeature
(canRead: false, canWrite: true));
453
features.Set<IStreamDirectionFeature>(new
DefaultStreamDirectionFeature
(canRead: false, canWrite: true));