Glipho.OAuth.Providers.Database.Nonce.ToString C# (CSharp) Method

ToString() public method

Returns a System.String that represents the current Nonce.
public ToString ( ) : string
return string
        public override string ToString()
        {
            return string.Format(
                "{0} [{1}, {2}, {3}, {4}, {5}]",
                this.GetType().Name,
                this.Id,
                this.Context,
                this.Code,
                this.Issued,
                this.Expires);
        }