2 overrides of GetIdleTicks
System.Net.Http (2)
System\Net\Http\SocketsHttpHandler\Http2Connection.cs (1)
1797public override long GetIdleTicks(long nowTicks)
System\Net\Http\SocketsHttpHandler\Http3Connection.cs (1)
366public override long GetIdleTicks(long nowTicks) => throw new NotImplementedException("We aren't scavenging HTTP3 connections yet");
3 references to GetIdleTicks
System.Net.Http (3)
System\Net\Http\SocketsHttpHandler\Http2Connection.cs (1)
1806return _streamsInUse == 0 ? base.GetIdleTicks(nowTicks) : 0;
System\Net\Http\SocketsHttpHandler\HttpConnection.cs (1)
256GetIdleTicks(Environment.TickCount64) >= _keepAliveTimeoutSeconds * 1000;
System\Net\Http\SocketsHttpHandler\HttpConnectionBase.cs (1)
223long idleTicks = GetIdleTicks(nowTicks);