AmqpCFXEndpointAddSubscribeChannel(Uri, String, String, X509Certificate) Method |
Adds a new subscription channel for this endpoint.
Namespace: CFX.TransportAssembly: CFX (in CFX.dll) Version: 2.0.0+5bb1f71a933ed371a0f5f2d5e7db34c89b75f3ea
Syntaxpublic void AddSubscribeChannel(
Uri networkAddress,
string address,
string virtualHostHame = null,
X509Certificate certificate = null
)
Public Sub AddSubscribeChannel (
networkAddress As Uri,
address As String,
Optional virtualHostHame As String = Nothing,
Optional certificate As X509Certificate = Nothing
)
Parameters
- networkAddress Uri
- The network address of the message source.
- address String
- The AMQP source address of the message source.
- virtualHostHame String (Optional)
- If using a broker with multiple virtual hosts, the virtual host name to be used on the broker. For RabbitMQ broker, use format vhost:MYVHOST
- certificate X509Certificate (Optional)
- If secure amqps is being used, this property may optionally include the certificate that will be matched
against the server's certificate. Leave null if you do not wish to perform certificate matching (secure communications will still be established
using the server's certificate (if using amqps).
See Also