1 write to _globalValues
System.Private.Xml (1)
System\Xml\Xsl\Runtime\XmlQueryRuntime.cs (1)
87
_globalValues
= (_globalNames != null) ? new object[_globalNames.Length] : null;
7 references to _globalValues
System.Private.Xml (7)
System\Xml\Xsl\Runtime\XmlQueryRuntime.cs (7)
175
Debug.Assert(
_globalValues
![idx] is IList<XPathItem>, "Only debugger should call this method, and all global values should have type item* in debugging scenarios.");
176
return (IList)
_globalValues
[idx];
192
Debug.Assert(
_globalValues
![idx] is IList<XPathItem>, "Only debugger should call this method, and all global values should have type item* in debugging scenarios.");
195
_globalValues
[idx] = (IList<XPathItem>)XmlAnyListConverter.ItemList.ChangeType(value, typeof(XPathItem[]), null);
291
return
_globalValues
![index] != null;
301
return
_globalValues
![index];
311
_globalValues
![index] = value;