1 write to _keepAlive
Microsoft.AspNetCore.Server.Kestrel.Core (1)
Internal\Http2\Http2Connection.cs (1)
176_keepAlive = new Http2KeepAlive(
7 references to _keepAlive
InMemory.FunctionalTests (5)
Http2\Http2KeepAliveTests.cs (5)
18Assert.Null(_connection._keepAlive); 48Assert.Equal(KeepAliveState.PingSent, _connection._keepAlive._state); 202Assert.Equal(KeepAliveState.Timeout, _connection._keepAlive._state); 223Assert.Equal(KeepAliveState.PingSent, _connection._keepAlive._state); 230Assert.Equal(KeepAliveState.None, _connection._keepAlive._state);
Microsoft.AspNetCore.Server.Kestrel.Core (2)
Internal\Http2\Http2Connection.cs (2)
365if (_keepAlive != null) 369var state = _keepAlive.ProcessKeepAlive(frameReceived);