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