1 instantiation of AltSvcHeader
Microsoft.AspNetCore.Server.Kestrel.Core (1)
Internal\Infrastructure\HttpUtilities.cs (1)
599return new AltSvcHeader(text, bytes);
9 references to AltSvcHeader
Microsoft.AspNetCore.Server.Kestrel.Core (9)
Internal\BaseHttpConnectionContext.cs (2)
17AltSvcHeader? altSvcHeader, 38public AltSvcHeader? AltSvcHeader { get; }
Internal\Http2\Http2StreamContext.cs (1)
18AltSvcHeader? altSvcHeader,
Internal\Http3\Http3StreamContext.cs (1)
18AltSvcHeader? altSvcHeader,
Internal\HttpConnectionContext.cs (1)
18AltSvcHeader? altSvcHeader,
Internal\HttpMultiplexedConnectionContext.cs (1)
17AltSvcHeader? altSvcHeader,
Internal\Infrastructure\HttpUtilities.cs (1)
586public static AltSvcHeader? GetEndpointAltSvc(System.Net.IPEndPoint endpoint, HttpProtocols protocols)
Middleware\HttpConnectionMiddleware.cs (1)
34var altSvcHeader = _addAltSvcHeader && localEndPoint != null ? HttpUtilities.GetEndpointAltSvc(localEndPoint, protocols) : null;
Middleware\HttpMultiplexedConnectionMiddleware.cs (1)
31var altSvcHeader = _addAltSvcHeader && localEndPoint != null ? HttpUtilities.GetEndpointAltSvc(localEndPoint, _protocols) : null;