2 writes to outputBuffer
dotnet-svcutil-lib (2)
FrameworkFork\Microsoft.Xml\Xml\XPath\Internal\CacheOutputQuery.cs (2)
23this.outputBuffer = new List<XPathNavigator>(); 29this.outputBuffer = new List<XPathNavigator>(other.outputBuffer);
13 references to outputBuffer
dotnet-svcutil-lib (13)
FrameworkFork\Microsoft.Xml\Xml\XPath\Internal\CacheOutputQuery.cs (8)
29this.outputBuffer = new List<XPathNavigator>(other.outputBuffer); 45outputBuffer.Clear(); 53Debug.Assert(0 <= count && count <= outputBuffer.Count); 54if (count < outputBuffer.Count) 56return outputBuffer[count++]; 65Debug.Assert(0 <= count && count <= outputBuffer.Count); 70return outputBuffer[count - 1]; 76public override int Count { get { return outputBuffer.Count; } }
FrameworkFork\Microsoft.Xml\Xml\XPath\Internal\DocumentOrderQuery.cs (1)
24Insert(outputBuffer, node);
FrameworkFork\Microsoft.Xml\Xml\XPath\Internal\ForwardPositionQuery.cs (1)
27outputBuffer.Add(node.Clone());
FrameworkFork\Microsoft.Xml\Xml\XPath\Internal\IDQuery.cs (1)
56Insert(outputBuffer, contextNode);
FrameworkFork\Microsoft.Xml\Xml\XPath\Internal\MergeFilterQuery.cs (1)
43Insert(outputBuffer, node);
FrameworkFork\Microsoft.Xml\Xml\XPath\Internal\ReversePositionQuery.cs (1)
18public override int CurrentPosition { get { return outputBuffer.Count - count + 1; } }