2 writes to _strings
dotnet-svcutil-lib (2)
FrameworkFork\System.Runtime.Serialization\System\Xml\XmlBinaryReaderSession.cs (2)
47_strings = new XmlDictionaryString[Math.Max(id + 1, 16)]; 53_strings = newStrings;
15 references to _strings
dotnet-svcutil-lib (15)
FrameworkFork\System.Runtime.Serialization\System\Xml\XmlBinaryReaderSession.cs (15)
45if (_strings == null) 49else if (id >= _strings.Length) 51XmlDictionaryString[] newStrings = new XmlDictionaryString[Math.Min(Math.Max(id + 1, _strings.Length * 2), MaxArrayEntries)]; 52Array.Copy(_strings, 0, newStrings, 0, _strings.Length); 55_strings[id] = xmlString; 62if (_strings != null && key >= 0 && key < _strings.Length) 64result = _strings[key]; 81if (_strings != null) 83for (int i = 0; i < _strings.Length; i++) 85XmlDictionaryString s = _strings[i]; 125if (_strings != null) 126Array.Clear(_strings, 0, _strings.Length);