我可以使用以下用户名和密码连接ActiveMQ Server
IConnectionFactory connectionFactory= new ConnectionFactory("tcp:\\host:port");
IConnection _connection = connectionFactory.CreateConnection("username", "password");
_connection.start();
此代码运行正常。因此,现在我要使用计算机上已安装的证书(SSL)对此进行身份验证。
您能建议我如何在C#中使用SSL进行身份验证。