1 write to newValue
System.Data (1)
fx\src\data\System\Data\SqlClient\TdsParser.cs (1)
2667env.newValue = newValue;
12 references to newValue
System.Data (12)
fx\src\data\System\Data\SqlClient\SqlInternalConnectionTds.cs (7)
2105_originalDatabase = rec.newValue; 2108CurrentDatabase = rec.newValue; 2114_originalLanguage = rec.newValue; 2117_currentLanguage = rec.newValue; // TODO: finish this. 2121_currentPacketSize = Int32.Parse(rec.newValue, CultureInfo.InvariantCulture); 2142_currentFailoverPartner = rec.newValue; 2164_instanceName = rec.newValue;
fx\src\data\System\Data\SqlClient\TdsParser.cs (5)
2401if (env.newValue == TdsEnums.DEFAULT_ENGLISH_CODE_PAGE_STRING) { 2406Debug.Assert(env.newValue.Length > TdsEnums.CHARSET_CODE_PAGE_OFFSET, "TdsParser.ProcessEnvChange(): charset value received with length <=10"); 2408string stringCodePage = env.newValue.Substring(TdsEnums.CHARSET_CODE_PAGE_OFFSET); 2425Int32 packetSize = Int32.Parse(env.newValue, NumberStyles.Integer, CultureInfo.InvariantCulture); 2447_defaultLCID = Int32.Parse(env.newValue, NumberStyles.Integer, CultureInfo.InvariantCulture);