Candor.Security.AzureStorageProvider.UserProvider.InsertUserHistory C# (CSharp) Method

InsertUserHistory() protected method

Inserts a new user authentication history.
protected InsertUserHistory ( AuthenticationHistory history ) : void
history AuthenticationHistory
return void
        protected override void InsertUserHistory(AuthenticationHistory history)
        {
            TableProxyAuthenticationHistoryByUserName.Insert(history);
            if (history.UserSession != null && !history.UserSession.RenewalToken.Equals(Guid.Empty))
                TableProxyAuthenticationHistoryByToken.InsertOrUpdate(history);
        }