2 writes to _strings
System.Private.DataContractSerialization (2)
System\Xml\XmlBinaryReaderSession.cs (2)
43
_strings
= new XmlDictionaryString[Math.Max(id + 1, 16)];
49
_strings
= newStrings;
14 references to _strings
System.Private.DataContractSerialization (14)
System\Xml\XmlBinaryReaderSession.cs (14)
41
if (
_strings
== null)
45
else if (id >=
_strings
.Length)
47
XmlDictionaryString[] newStrings = new XmlDictionaryString[Math.Min(Math.Max(id + 1,
_strings
.Length * 2), MaxArrayEntries)];
48
Array.Copy(
_strings
, newStrings,
_strings
.Length);
51
_strings
[id] = xmlString;
58
if (
_strings
!= null && key >= 0 && key <
_strings
.Length)
60
result =
_strings
[key];
76
if (
_strings
!= null)
78
for (int i = 0; i <
_strings
.Length; i++)
80
XmlDictionaryString s =
_strings
[i];
120
if (
_strings
!= null)
121
Array.Clear(
_strings
);