2 implementations of IsDraining
Microsoft.AspNetCore.Server.Kestrel.Core (2)
Internal\Http3\Http3ControlStream.cs (1)
74public bool IsDraining => false;
Internal\Http3\Http3Stream.cs (1)
78public bool IsDraining => _appCompletedTaskSource.GetStatus() != ValueTaskSourceStatus.Pending; // Draining starts once app is complete
1 reference to IsDraining
Microsoft.AspNetCore.Server.Kestrel.Core (1)
Internal\Http3\Http3Connection.cs (1)
305else if (stream.IsDraining)