| Flags | Type | Name | Summary |
|---|---|---|---|
| public | |
HostName (rw)
|
Retrieve or set the hostname of this AmqpTcpEndpoint. |
| public | |
Port (rw)
|
Retrieve or set the port number of this AmqpTcpEndpoint. A port number of -1 causes the default port number for the IProtocol to be used. |
| public | IProtocol |
Protocol (rw)
|
Retrieve or set the IProtocol of this AmqpTcpEndpoint. |
| public | SslOption |
Ssl (rw)
|
Retrieve the SSL options for this AmqpTcpEndpoint. If not set, null is returned |
| Flags | Name | Summary |
|---|---|---|
| public | AmqpTcpEndpoint()
|
Construct an AmqpTcpEndpoint with a hostname of "localhost", using the IProtocol from Protocols.FromEnvironment(), and the default port number of that IProtocol. |
| public | AmqpTcpEndpoint(string hostName)
|
Construct an AmqpTcpEndpoint with the given hostname, using the IProtocol from Protocols.FromEnvironment(), and the default port number of that IProtocol. |
| public | AmqpTcpEndpoint(IProtocol protocol, Uri uri, SslOption ssl)
|
Construct an AmqpTcpEndpoint with the given IProtocol, Uri and ssl options. |
| public | AmqpTcpEndpoint(Uri uri)
|
Construct an AmqpTcpEndpoint with the given Uri, using the IProtocol from Protocols.FromEnvironment(). |
| public | AmqpTcpEndpoint(IProtocol protocol, Uri uri)
|
Construct an AmqpTcpEndpoint with the given IProtocol and Uri. |
| public | AmqpTcpEndpoint(IProtocol protocol, string hostName, int portOrMinusOne)
|
Construct an AmqpTcpEndpoint with the given IProtocol, hostname, and port number. If the port number is -1, the default port number for the IProtocol will be used. |
| public | AmqpTcpEndpoint(IProtocol protocol, string hostName, int portOrMinusOne, SslOption ssl)
|
Construct an AmqpTcpEndpoint with the given IProtocol, hostname, port number and ssl option. If the port number is -1, the default port number for the IProtocol will be used. |
| public | AmqpTcpEndpoint(IProtocol protocol, string hostName)
|
Construct an AmqpTcpEndpoint with the given IProtocol and hostname, using the default port for the IProtocol. |
| public | AmqpTcpEndpoint(string hostName, int portOrMinusOne)
|
Construct an AmqpTcpEndpoint with the given hostname and port number, using the IProtocol from Protocols.FromEnvironment(). If the port number is -1, the default port number for the IProtocol will be used. |
| public | AmqpTcpEndpoint(IProtocol protocol)
|
Construct an AmqpTcpEndpoint with the given IProtocol, "localhost" as the hostname, and using the default port for the IProtocol. |
| Flags | Name | Summary |
|---|---|---|
| public virtual | bool Equals(object obj)
|
Compares this instance by value (protocol, hostname, port) against another instance |
| public virtual | int GetHashCode()
|
Implementation of hash code depending on protocol, hostname and port, to line up with the implementation of Equals() |
| public static | AmqpTcpEndpoint Parse(IProtocol protocol, string address)
|
Construct an instance from a protocol and an address in "hostname:port" format. |
| public static | AmqpTcpEndpoint[] ParseMultiple(IProtocol protocol, string addresses)
|
Splits the passed-in string on ",", and passes the substrings to AmqpTcpEndpoint.Parse() |
| public virtual | string ToString()
|
Returns a URI-like string of the form amqp-PROTOCOL://HOSTNAME:PORTNUMBER |
public AmqpTcpEndpoint()
public AmqpTcpEndpoint(string hostName)
| Parameters |
|
|---|
public AmqpTcpEndpoint(IProtocol protocol, Uri uri, SslOption ssl)
| Parameters |
|
|---|
public AmqpTcpEndpoint(Uri uri)
| Parameters |
|
|---|
public AmqpTcpEndpoint(IProtocol protocol, Uri uri)
| Parameters |
|
|---|
public AmqpTcpEndpoint(IProtocol protocol, string hostName, int portOrMinusOne)
| Parameters |
|
|---|
public AmqpTcpEndpoint(IProtocol protocol, string hostName, int portOrMinusOne, SslOption ssl)
| Parameters |
|
|---|
public AmqpTcpEndpoint(IProtocol protocol, string hostName)
| Parameters |
|
|---|
public AmqpTcpEndpoint(string hostName, int portOrMinusOne)
| Parameters |
|
|---|
public AmqpTcpEndpoint(IProtocol protocol)
| Parameters |
|
|---|
public virtual bool Equals(object obj)
| Flags | public virtual | ||||
|---|---|---|---|---|---|
| Return type | |
||||
| Parameters |
|
public virtual int GetHashCode()
| Flags | public virtual |
|---|---|
| Return type | |
public static AmqpTcpEndpoint Parse(IProtocol protocol, string address)
| Flags | public static | ||||||
|---|---|---|---|---|---|---|---|
| Return type | AmqpTcpEndpoint |
||||||
| Parameters |
|
public static AmqpTcpEndpoint[] ParseMultiple(IProtocol protocol, string addresses)
| Flags | public static | ||||||
|---|---|---|---|---|---|---|---|
| Return type | AmqpTcpEndpoint[] |
||||||
| Parameters |
|