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

ToString() public method

Returns a System.String that represents the current Consumer.
public ToString ( ) : string
return string
        public override string ToString()
        {
            return string.Format(
                "{0} [{1}, {2}, {3}, {4}, {5}]",
                this.GetType().Name,
                this.Id,
                this.Name,
                this.Callback,
                this.VerificationCodeFormat,
                this.VerificationCodeLength);
        }