7 references to UserID
System.Data (7)
fx\src\data\System\Data\SqlClient\SqlCommand.cs (1)
3030
identityUserName = new SqlDependency.IdentityUserNamePair(null, internalConnection.ConnectionOptions.
UserID
);
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 (4)
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");
1289
login.userName = ConnectionOptions.
UserID
;
2403
authParamsBuilder.WithUserId(ConnectionOptions.
UserID
);
2417
username = ConnectionOptions.
UserID
;