1 write to _onStarting
Microsoft.AspNetCore.Server.Kestrel.Core (1)
Internal\Http\HttpProtocol.cs (1)
791
_onStarting
= new Stack<KeyValuePair<Func<object, Task>, object>>();
5 references to _onStarting
Microsoft.AspNetCore.Server.Kestrel.Core (5)
Internal\Http\HttpProtocol.cs (5)
345
_onStarting
?.Clear();
689
if (!HasResponseStarted && _applicationException == null &&
_onStarting
?.Count > 0)
789
if (
_onStarting
== null)
793
_onStarting
.Push(new KeyValuePair<Func<object, Task>, object>(callback, state));
807
var onStarting =
_onStarting
;