1 write to Protocols
Microsoft.AspNetCore.Server.Kestrel.Core (1)
Internal\BaseHttpConnectionContext.cs (1)
26Protocols = protocols;
5 references to Protocols
Microsoft.AspNetCore.Server.Kestrel.Core (5)
Internal\HttpConnection.cs (5)
200var http1Enabled = _context.Protocols.HasFlag(HttpProtocols.Http1); 201var http2Enabled = _context.Protocols.HasFlag(HttpProtocols.Http2); 202var http3Enabled = _context.Protocols.HasFlag(HttpProtocols.Http3); 206if (_context.Protocols == HttpProtocols.None) 218error = $"Protocols {_context.Protocols} not supported on multiplexed transport.";