2 instantiations of AltSvcHeaderValue
System.Net.Http (2)
System\Net\Http\Headers\AltSvcHeaderParser.cs (1)
178parsedValue = new AltSvcHeaderValue(alpnProtocolName, altAuthorityHost, altAuthorityPort, maxAgeTimeSpan, persist);
System\Net\Http\Headers\AltSvcHeaderValue.cs (1)
18public static AltSvcHeaderValue Clear { get; } = new AltSvcHeaderValue(ClearString, host: null, port: 0, maxAge: TimeSpan.Zero, persist: false);
6 references to AltSvcHeaderValue
System.Net.Http (6)
System\Net\Http\Headers\AltSvcHeaderParser.cs (2)
46if (alpnProtocolName == AltSvcHeaderValue.ClearString) 55parsedValue = AltSvcHeaderValue.Clear;
System\Net\Http\Headers\AltSvcHeaderValue.cs (1)
18public static AltSvcHeaderValue Clear { get; } = new AltSvcHeaderValue(ClearString, host: null, port: 0, maxAge: TimeSpan.Zero, persist: false);
System\Net\Http\SocketsHttpHandler\ConnectionPool\HttpConnectionPool.Http3.cs (3)
670var value = (AltSvcHeaderValue)parsedValue; 673if (ReferenceEquals(AltSvcHeaderValue.Clear, value))