3 writes to _state
Microsoft.AspNetCore.Server.Kestrel.Core (3)
Internal\Http2\Http2KeepAlive.cs (3)
56_state = KeepAliveState.None; 69_state = KeepAliveState.PingSent; 82_state = KeepAliveState.Timeout;
7 references to _state
InMemory.FunctionalTests (4)
Http2\Http2KeepAliveTests.cs (4)
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 (3)
Internal\Http2\Http2KeepAlive.cs (3)
53if (_state == KeepAliveState.PingSent) 61switch (_state) 89return _state;