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