NetMQ.Core.Command.ToString C# (CSharp) Method

ToString() public method

Override of ToString, which returns a string in the form [ command-type, destination ].
public ToString ( ) : string
return string
        public override string ToString()
        {
            return base.ToString() + "[" + CommandType + ", " + Destination + "]";
        }
    }