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 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
Samarbeta med oss på GitHub
Källan för det här innehållet finns på GitHub, där du även kan skapa och granska ärenden och pull-begäranden. Se vår deltagarguide för mer information.