4 implementations of Keys
Microsoft.AspNetCore.Http.Tests (1)
DefaultHttpContextTests.cs (1)
456public IEnumerable<string> Keys { get { return _store.Keys; } }
Microsoft.AspNetCore.Mvc.ViewFeatures.Test (2)
SessionStateTempDataProviderTest.cs (1)
103public IEnumerable<string> Keys { get { return _innerDictionary.Keys; } }
ViewComponentTests.cs (1)
270public IEnumerable<string> Keys { get { return _innerDictionary.Keys; } }
Microsoft.AspNetCore.Session (1)
DistributedSession.cs (1)
122public IEnumerable<string> Keys
4 references to Keys
Microsoft.AspNetCore.Http.Tests (2)
DefaultHttpContextTests.cs (2)
42Assert.Equal(3, context.Session.Keys.Count()); 76Assert.Empty(context.Session.Keys);
Microsoft.AspNetCore.Session.Tests (2)
SessionTests.cs (2)
657Assert.False(context.Session.Keys.Any()); 707Assert.False(context.Session.Keys.Any());