SqlConnectionStringBuilder.ServerCertificate 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 the path to a certificate file to match against the SQL Server TLS/SSL certificate for the connection. The accepted certificate formats are PEM, DER, and CER. If specified, the SQL Server certificate is checked by verifying if the ServerCertificate provided is an exact match. (Only available in v5.1+)
public:
 property System::String ^ ServerCertificate { System::String ^ get(); void set(System::String ^ value); };public string ServerCertificate { get; set; }member this.ServerCertificate : string with get, setPublic Property ServerCertificate As StringProperty Value
The value of the ServerCertificate property, or string.Empty if none has been supplied.
Remarks
This property corresponds to the "ServerSPN" and "Server SPN" keys within the connection string.
Note
This property only applies when using Integrated Security mode, otherwise it is ignored.