Apache.NMS.ActiveMQ.Commands.MessageAck.ToString C# (CSharp) Метод

ToString() публичный Метод

public ToString ( ) : string
Результат string
        public override string ToString()
        {
            return GetType().Name + "[ " +
                "commandId = " + this.CommandId + ", " +
                "responseRequired = " + this.ResponseRequired + ", " +
                "Destination = " + Destination + ", " +
                "TransactionId = " + TransactionId + ", " +
                "ConsumerId = " + ConsumerId + ", " +
                "AckType = " + AckType + ", " +
                "FirstMessageId = " + FirstMessageId + ", " +
                "LastMessageId = " + LastMessageId + ", " +
                "MessageCount = " + MessageCount + " ]";
        }