ABsoluteMaybe.Identification.CookieUserIdentification.GenerateUniqueId C# (CSharp) Méthode

GenerateUniqueId() private méthode

private GenerateUniqueId ( ) : string
Résultat string
        private string GenerateUniqueId()
        {
            var ip = Context.Request.UserHostAddress;
            var now = UtcNow.Ticks.ToString();
            return Hash(ip + now);
        }