SqlCredential(String, SecureString) Constructor
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.
Creates an object of type SqlCredential.
public:
SqlCredential(System::String ^ userId, System::Security::SecureString ^ password);
public SqlCredential (string userId, System.Security.SecureString password);
new Microsoft.Data.SqlClient.SqlCredential : string * System.Security.SecureString -> Microsoft.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.