2 implementations of StreamTimeoutTimestamp
Microsoft.AspNetCore.Server.Kestrel.Core (2)
Internal\Http3\Http3ControlStream.cs (1)
72public long StreamTimeoutTimestamp { get; set; }
Internal\Http3\Http3Stream.cs (1)
76public long StreamTimeoutTimestamp { get; set; }
2 writes to StreamTimeoutTimestamp
Microsoft.AspNetCore.Server.Kestrel.Core (2)
Internal\Http3\Http3Connection.cs (2)
290stream.StreamTimeoutTimestamp = expiration >= 0 ? expiration : long.MaxValue; 315stream.StreamTimeoutTimestamp = TimeoutControl.GetResponseDrainDeadline(timestamp, minDataRate);
4 references to StreamTimeoutTimestamp
Microsoft.AspNetCore.Server.Kestrel.Core (4)
Internal\Http3\Http3Connection.cs (4)
286if (stream.StreamTimeoutTimestamp == default) 293if (stream.StreamTimeoutTimestamp < timestamp) 313if (stream.StreamTimeoutTimestamp == default) 318if (stream.StreamTimeoutTimestamp < timestamp)