SqlCredential(String, SecureString) Constructor

Definition

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