C# Class RabbitMQ.Client.SslOption

Represents a configurable SSL option, used in setting up an SSL connection.
Exibir arquivo Open project: Chatham/rabbitmq-dotnet-client Class Usage Examples

Public Methods

Method Description
SslOption ( ) : System

Construct an SslOption with no parameters set

SslOption ( string serverName ) : System

Construct an SslOption with just the server cannonical name. The Certificate path is set to an empty string

SslOption ( string serverName, string certPath, bool enabled ) : System

Construct an SslOption specifying both the server cannonical name and the client's certificate path.

Method Details

SslOption() public method

Construct an SslOption with no parameters set
public SslOption ( ) : System
return System

SslOption() public method

Construct an SslOption with just the server cannonical name. The Certificate path is set to an empty string
public SslOption ( string serverName ) : System
serverName string
return System

SslOption() public method

Construct an SslOption specifying both the server cannonical name and the client's certificate path.
public SslOption ( string serverName, string certPath, bool enabled ) : System
serverName string
certPath string
enabled bool
return System