Class ConnectionFactory.SslSettings
Contains the TLS/SSL settings for a connection.
Inheritance
System.Object
ConnectionFactory.SslSettings
Inherited Members
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: Amqp
Assembly: Amqp.Net.dll
Syntax
public class SslSettings
Properties
CheckCertificateRevocation
Specifies whether certificate revocation should be performed during handshake.
Declaration
public bool CheckCertificateRevocation { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
ClientCertificates
Client certificates to use for mutual authentication.
Declaration
public X509CertificateCollection ClientCertificates { get; set; }
Property Value
Type | Description |
---|---|
System.Security.Cryptography.X509Certificates.X509CertificateCollection |
LocalCertificateSelectionCallback
Gets or sets a local certificate selection callback to select the certificate which should be used for authentication.
Declaration
public LocalCertificateSelectionCallback LocalCertificateSelectionCallback { get; set; }
Property Value
Type | Description |
---|---|
System.Net.Security.LocalCertificateSelectionCallback |
Protocols
Supported protocols to use.
Declaration
public SslProtocols Protocols { get; set; }
Property Value
Type | Description |
---|---|
System.Security.Authentication.SslProtocols |
RemoteCertificateValidationCallback
Gets or sets a certificate validation callback to validate remote certificate.
Declaration
public RemoteCertificateValidationCallback RemoteCertificateValidationCallback { get; set; }
Property Value
Type | Description |
---|---|
System.Net.Security.RemoteCertificateValidationCallback |