Ejemplo n.º 1
0
        private void Store(IClientSession clientSession)
        {
            var hashEntries = new HashEntry[2];

            hashEntries.Set(0, "LastLoginTimestamp", TimeProvider.Default.Now);
            hashEntries.Set(1, "LastLoginEndPoint", clientSession.Endpoint);
            _database.HashSet(DatabaseSchema.UserNamespace + clientSession.Name, hashEntries);
        }