2 writes to strings
System.Runtime.Serialization (2)
System\Xml\XmlBinaryReaderSession.cs (2)
45
strings
= new XmlDictionaryString[Math.Max(id + 1, 16)];
51
strings
= newStrings;
15 references to strings
System.Runtime.Serialization (15)
System\Xml\XmlBinaryReaderSession.cs (15)
43
if (
strings
== null)
47
else if (id >=
strings
.Length)
49
XmlDictionaryString[] newStrings = new XmlDictionaryString[Math.Min(Math.Max(id + 1,
strings
.Length * 2), MaxArrayEntries)];
50
Array.Copy(
strings
, newStrings,
strings
.Length);
53
strings
[id] = xmlString;
60
if (
strings
!= null && key >= 0 && key <
strings
.Length)
62
result =
strings
[key];
79
if (
strings
!= null)
81
for (int i = 0; i <
strings
.Length; i++)
83
XmlDictionaryString s =
strings
[i];
123
if (
strings
!= null)
124
Array.Clear(
strings
, 0,
strings
.Length);