5 references to Password
System.Data (5)
fx\src\data\System\Data\SqlClient\SqlConnection.cs (2)
492
result = (!ADP.IsEmpty(opt.UserID) || !ADP.IsEmpty(opt.
Password
));
2099
if (!ADP.IsEmpty(connectionOptions.UserID) || !ADP.IsEmpty(connectionOptions.
Password
)) {
fx\src\data\System\Data\SqlClient\SqlInternalConnectionTds.cs (3)
383
Debug.Assert(credential == null || (String.IsNullOrEmpty(connectionOptions.UserID) && String.IsNullOrEmpty(connectionOptions.
Password
)), "cannot mix the new secure password system and the connection string based password");
1290
login.password = ConnectionOptions.
Password
;
2418
authParamsBuilder.WithUserId(username).WithPassword(ConnectionOptions.
Password
);