AmqpCFXEndpointOpen(String, IPAddress, Int32, X509Certificate2) Method |
Opens and inintializes the Endpoint. This should be called only once prior to closing the endpoint.
Namespace: CFX.TransportAssembly: CFX (in CFX.dll) Version: 2.0.0+5bb1f71a933ed371a0f5f2d5e7db34c89b75f3ea
Syntaxpublic void Open(
string cfxHandle,
IPAddress requestAddress,
int requestPort = 5672,
X509Certificate2 certificate = null
)
Public Sub Open (
cfxHandle As String,
requestAddress As IPAddress,
Optional requestPort As Integer = 5672,
Optional certificate As X509Certificate2 = Nothing
)
Parameters
- cfxHandle String
- The unique CFX Handle for this endpoint.
- requestAddress IPAddress
- The IP address on which this endpoint will listen for incoming requests.
- requestPort Int32 (Optional)
- The TCP port on which this endpoint will listen for incoming requests. Default is 5672.
- certificate X509Certificate2 (Optional)
- An X509 certificate that has been loaded from the certificate store. This is optional, and only must be set when using secure, encrypted AMQPS
See Also