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.

C#
public SqlCredential(string userId, System.Security.SecureString password);

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

Product Versions
.NET 6 (package-provided), 7 (package-provided), 8 (package-provided), 9 (package-provided), 10 (package-provided)
.NET Framework 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
.NET Standard 2.0 (package-provided)

See also