11 references to StreamType
Microsoft.AspNetCore.Server.Kestrel.Transport.Quic (11)
_generated\0\LoggerMessage.g.cs (6)
22private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, string, global::Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.Internal.QuicLog.StreamType, global::System.Exception?> __AcceptedStreamCoreCallback = 23global::Microsoft.Extensions.Logging.LoggerMessage.Define<string, global::Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.Internal.QuicLog.StreamType>(global::Microsoft.Extensions.Logging.LogLevel.Debug, new global::Microsoft.Extensions.Logging.EventId(2, "AcceptedStream"), "Stream id \"{ConnectionId}\" type {StreamType} accepted.", new global::Microsoft.Extensions.Logging.LogDefineOptions() { SkipEnabledCheck = true }); 30private static partial void AcceptedStreamCore(global::Microsoft.Extensions.Logging.ILogger logger, string connectionId, global::Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.Internal.QuicLog.StreamType streamType) 35private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, string, global::Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.Internal.QuicLog.StreamType, global::System.Exception?> __ConnectedStreamCoreCallback = 36global::Microsoft.Extensions.Logging.LoggerMessage.Define<string, global::Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.Internal.QuicLog.StreamType>(global::Microsoft.Extensions.Logging.LogLevel.Debug, new global::Microsoft.Extensions.Logging.EventId(3, "ConnectedStream"), "Stream id \"{ConnectionId}\" type {StreamType} connected.", new global::Microsoft.Extensions.Logging.LogDefineOptions() { SkipEnabledCheck = true }); 43private static partial void ConnectedStreamCore(global::Microsoft.Extensions.Logging.ILogger logger, string connectionId, global::Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.Internal.QuicLog.StreamType streamType)
Internal\QuicLog.cs (5)
25private static partial void AcceptedStreamCore(ILogger logger, string connectionId, StreamType streamType); 36private static partial void ConnectedStreamCore(ILogger logger, string connectionId, StreamType streamType); 238private static StreamType GetStreamType(QuicStreamContext streamContext) => 240? StreamType.Bidirectional 241: StreamType.Unidirectional;