42 references to QueryProps
System.Private.Xml (42)
System\Xml\XPath\Internal\CacheAxisQuery.cs (5)
63public override QueryProps Properties { get { return QueryProps.Merge | QueryProps.Cached | QueryProps.Position | QueryProps.Count; } }
System\Xml\XPath\Internal\CacheOutputQuery.cs (5)
75public override QueryProps Properties { get { return QueryProps.Merge | QueryProps.Cached | QueryProps.Position | QueryProps.Count; } }
System\Xml\XPath\Internal\ContextQuery.cs (5)
56public override QueryProps Properties { get { return QueryProps.Merge | QueryProps.Cached | QueryProps.Position | QueryProps.Count; } }
System\Xml\XPath\Internal\EmptyQuery.cs (5)
15public override QueryProps Properties { get { return QueryProps.Merge | QueryProps.Cached | QueryProps.Position | QueryProps.Count; } }
System\Xml\XPath\Internal\FilterQuery.cs (4)
172public override QueryProps Properties 176return QueryProps.Position | (qyInput.Properties & (QueryProps.Merge | QueryProps.Reverse));
System\Xml\XPath\Internal\GroupQuery.cs (2)
30public override QueryProps Properties { get { return QueryProps.Position; } } // Doesn't have QueryProps.Merge
System\Xml\XPath\Internal\PrecedingQuery.cs (2)
101public override QueryProps Properties { get { return base.Properties | QueryProps.Reverse; } }
System\Xml\XPath\Internal\PreSiblingQuery.cs (2)
87public override QueryProps Properties { get { return base.Properties | QueryProps.Reverse; } }
System\Xml\XPath\Internal\Query.cs (2)
66public virtual QueryProps Properties { get { return QueryProps.Merge; } }
System\Xml\XPath\Internal\QueryBuilder.cs (2)
274bool merge = (qyInput.Properties & QueryProps.Merge) != 0; 275bool reverse = (qyInput.Properties & QueryProps.Reverse) != 0;
System\Xml\XPath\Internal\ReversePositionQuery.cs (2)
15public override QueryProps Properties { get { return base.Properties | QueryProps.Reverse; } }
System\Xml\XPath\Internal\SortQuery.cs (4)
113public override QueryProps Properties { get { return QueryProps.Cached | QueryProps.Position | QueryProps.Count; } }
System\Xml\XPath\Internal\XPathAncestorQuery.cs (2)
62public override QueryProps Properties { get { return base.Properties | QueryProps.Reverse; } }