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

GetSessionAuthenticationHistory() protected method

Gets the authentication history for a specific session.
protected GetSessionAuthenticationHistory ( UserSession session ) : AuthenticationHistory
session UserSession
return AuthenticationHistory
        protected override AuthenticationHistory GetSessionAuthenticationHistory(UserSession session)
        {
            var item = TableProxyAuthenticationHistoryByToken.Get("ByToken", session.RenewalToken.ToString().GetValidRowKey());
            return item == null ? null : item.Entity;
        }