Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

SqlConnection::Credential Property

.NET Framework (current version)
 

Gets or sets the SqlCredential object for this connection.

Namespace:   System.Data.SqlClient
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.

.NET Framework
Available since 4.5
Return to top
Show:
© 2017 Microsoft