7 references to Merge
System.Private.Xml (7)
System\Xml\XPath\Internal\CacheAxisQuery.cs (1)
63public override QueryProps Properties { get { return QueryProps.Merge | QueryProps.Cached | QueryProps.Position | QueryProps.Count; } }
System\Xml\XPath\Internal\CacheOutputQuery.cs (1)
75public override QueryProps Properties { get { return QueryProps.Merge | QueryProps.Cached | QueryProps.Position | QueryProps.Count; } }
System\Xml\XPath\Internal\ContextQuery.cs (1)
56public override QueryProps Properties { get { return QueryProps.Merge | QueryProps.Cached | QueryProps.Position | QueryProps.Count; } }
System\Xml\XPath\Internal\EmptyQuery.cs (1)
15public override QueryProps Properties { get { return QueryProps.Merge | QueryProps.Cached | QueryProps.Position | QueryProps.Count; } }
System\Xml\XPath\Internal\FilterQuery.cs (1)
176return QueryProps.Position | (qyInput.Properties & (QueryProps.Merge | QueryProps.Reverse));
System\Xml\XPath\Internal\Query.cs (1)
66public virtual QueryProps Properties { get { return QueryProps.Merge; } }
System\Xml\XPath\Internal\QueryBuilder.cs (1)
274bool merge = (qyInput.Properties & QueryProps.Merge) != 0;