StopGuessing.Models.LoginAttempt.ToUniqueKey C# (CSharp) 메소드

ToUniqueKey() 개인적인 메소드

Get a unique identifier for this login attempt.
private ToUniqueKey ( ) : string
리턴 string
        private string ToUniqueKey()
        {
            return UrlEncoder.Default.Encode(UsernameOrAccountId) + "&" + 
                UrlEncoder.Default.Encode(AddressOfServerThatInitiallyReceivedLoginAttempt.ToString()) + "&" + 
                TimeOfAttemptUtc.Ticks.ToString();
        }