SqlConnection::Credential Property
Gets or sets the SqlCredential object for this connection.
Assembly: System.Data (in System.Data.dll)
public: [BrowsableAttribute(false)] property SqlCredential^ Credential { SqlCredential^ get(); void set(SqlCredential^ value); }
Property Value
Type: System.Data.SqlClient::SqlCredential^The SqlCredential object for this connection.
Persist Security Info = true is required to get the value of the SqlCredential object with Credential.
The default value of Credential is null.
An InvalidOperationException exception will be raised:
If Credential is set on an open connection.
If Credential is set when Context Connection=true.
If Credential is set when Integrated Security = true.
If Credential is set when the connection string uses Password.
If Credential is set when the connection string uses UserID.
Available since 4.5