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