2 implementations of IsDraining
Microsoft.AspNetCore.Server.Kestrel.Core (2)
Internal\Http3\Http3ControlStream.cs (1)
74
public bool
IsDraining
=> false;
Internal\Http3\Http3Stream.cs (1)
78
public 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)
305
else if (stream.
IsDraining
)