ABsoluteMaybe.Identification.CookieUserIdentification.GenerateUniqueId C# (CSharp) Метод

GenerateUniqueId() приватный метод

private GenerateUniqueId ( ) : string
Результат string
        private string GenerateUniqueId()
        {
            var ip = Context.Request.UserHostAddress;
            var now = UtcNow.Ticks.ToString();
            return Hash(ip + now);
        }