2 implementations of Count
Microsoft.AspNetCore.Session (2)
DefaultDistributedSessionStore.cs (1)
13
public int
Count
=> _store.Count;
NoOpSessionStore.cs (1)
16
public int
Count
=> 0;
3 references to Count
Microsoft.AspNetCore.Session (3)
DistributedSession.cs (3)
174
_isModified |= _store.
Count
> 0;
285
_logger.SessionStored(_sessionKey, Id, _store.
Count
);
320
SerializeNumAs3Bytes(output, _store.
Count
);