SqlConnectionStringBuilder.TrustServerCertificate Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets or sets a value that indicates whether the channel will be encrypted while bypassing walking the certificate chain to validate trust.
public:
property bool TrustServerCertificate { bool get(); void set(bool value); };
public bool TrustServerCertificate { get; set; }
member this.TrustServerCertificate : bool with get, set
Public Property TrustServerCertificate As Boolean
Property Value
A boolean. The default is false
.
Remarks
This property corresponds to the "Trust Server Certificate" and "TrustServerCertificate" keys within the connection string.
When Trust Server Certificate
is set to true
, the transport layer will use TLS to encrypt the channel and bypass walking the certificate chain to validate trust. If Trust Server Certificate
is set to true
and encryption is enforced by target server, the encryption level specified on the server will be used even if Encrypt
is set to false
. The connection will fail otherwise.
For more information, see Encryption Hierarchy and Using Encryption Without Validation.