Microsoft.Azure.Amqp.Sasl.SaslResponse.ToString C# (CSharp) Method

ToString() public method

public ToString ( ) : string
return string
        public override string ToString()
        {
            StringBuilder sb = new StringBuilder("sasl-response(");
            int count = 0;
            this.AddFieldToString(this.Response.Array != null, sb, "response", this.Response, ref count);
            sb.Append(')');
            return sb.ToString();
        }