Method | Description | |
---|---|---|
Address ( string address ) : System |
Initializes a new instance of the Address class from a string.
|
|
Address ( string host, int port, string user = null, string password = null, string path = "/", string scheme = Amqps ) : System |
Initializes a new instance of the Address class from individual components.
|
Method | Description | |
---|---|---|
Parse ( string address ) : void | ||
SetDefault ( ) : void |
public Address ( string address ) : System | ||
address | string | The string representation of the address. |
return | System |
public Address ( string host, int port, string user = null, string password = null, string path = "/", string scheme = Amqps ) : System | ||
host | string | The domain of the address. |
port | int | The port number of the address. |
user | string | User name for SASL PLAIN profile. |
password | string | Password for SASL PLAIN profile. |
path | string | The path of the address. |
scheme | string | Protocol scheme, which can be either "amqp" or "amqps". |
return | System |