Amqp.Address.Address C# (CSharp) Method

Address() public method

Initializes a new instance of the Address class from a string.
public Address ( string address ) : System
address string The string representation of the address.
return System
        public Address(string address)
        {
            this.Port = -1;
            this.Parse(address);
            this.SetDefault();
        }

Same methods

Address::Address ( string host, int port, string user = null, string password = null, string path = "/", string scheme = Amqps ) : System