ABsoluteMaybe.Identification.CookieUserIdentification.GenerateUniqueId C# (CSharp) Method

GenerateUniqueId() private method

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