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)
45
if (
_strings
== null)
49
else if (id >=
_strings
.Length)
51
XmlDictionaryString[] newStrings = new XmlDictionaryString[Math.Min(Math.Max(id + 1,
_strings
.Length * 2), MaxArrayEntries)];
52
Array.Copy(
_strings
, 0, newStrings, 0,
_strings
.Length);
55
_strings
[id] = xmlString;
62
if (
_strings
!= null && key >= 0 && key <
_strings
.Length)
64
result =
_strings
[key];
81
if (
_strings
!= null)
83
for (int i = 0; i <
_strings
.Length; i++)
85
XmlDictionaryString s =
_strings
[i];
125
if (
_strings
!= null)
126
Array.Clear(
_strings
, 0,
_strings
.Length);