1 write to Protocols
Microsoft.AspNetCore.Server.Kestrel.Core (1)
Internal\BaseHttpConnectionContext.cs (1)
27Protocols = protocols;
5 references to Protocols
Microsoft.AspNetCore.Server.Kestrel.Core (5)
Internal\HttpConnection.cs (5)
219var http1Enabled = _context.Protocols.HasFlag(HttpProtocols.Http1); 220var http2Enabled = _context.Protocols.HasFlag(HttpProtocols.Http2); 221var http3Enabled = _context.Protocols.HasFlag(HttpProtocols.Http3); 225if (_context.Protocols == HttpProtocols.None) 237error = $"Protocols {_context.Protocols} not supported on multiplexed transport.";