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);
        }