Note

Access to this page requires authorization. You can try signing in or .

Access to this page requires authorization. You can try .

SqlCredential(String, SecureString) Constructor

Definition

Namespace:
System.Data.SqlClient
Assembly:
System.Data.dll
Source:
System.Data.SqlClient.notsupported.cs

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.

Creates an object of type SqlCredential.

public:
 SqlCredential(System::String ^ userId, System::Security::SecureString ^ password);
public SqlCredential(string userId, System.Security.SecureString password);
new System.Data.SqlClient.SqlCredential : string * System.Security.SecureString -> System.Data.SqlClient.SqlCredential
Public Sub New (userId As String, password As SecureString)

Parameters

userId
String

The user id.

password
SecureString

The password; a SecureString value marked as read-only. Passing a read/write SecureString parameter will raise an ArgumentException.

Remarks

The constructor does not accept null parameters. A Empty value is allowed. An attempt to pass a null parameter in the constructor will raise an ArgumentNullException exception.

Applies to

See also


Feedback

Was this page helpful?