42 references to QueryProps
System.Xml (42)
System\Xml\XPath\Internal\CacheAxisQuery.cs (5)
58public override QueryProps Properties { get { return QueryProps.Merge | QueryProps.Cached | QueryProps.Position | QueryProps.Count; } }
System\Xml\XPath\Internal\CacheOutputQuery.cs (5)
68public override QueryProps Properties { get { return QueryProps.Merge | QueryProps.Cached | QueryProps.Position | QueryProps.Count; } }
System\Xml\XPath\Internal\ContextQuery.cs (5)
52public override QueryProps Properties { get { return QueryProps.Merge | QueryProps.Cached | QueryProps.Position | QueryProps.Count; } }
System\Xml\XPath\Internal\EmptyQuery.cs (5)
23public override QueryProps Properties { get { return QueryProps.Merge | QueryProps.Cached | QueryProps.Position | QueryProps.Count; } }
System\Xml\XPath\Internal\FilterQuery.cs (4)
148public override QueryProps Properties { 150return QueryProps.Position | (qyInput.Properties & (QueryProps.Merge | QueryProps.Reverse));
System\Xml\XPath\Internal\GroupQuery.cs (2)
34public override QueryProps Properties { get { return QueryProps.Position; } } // Doesn't have QueryProps.Merge
System\Xml\XPath\Internal\PrecedingQuery.cs (2)
92public override QueryProps Properties { get { return base.Properties | QueryProps.Reverse; } }
System\Xml\XPath\Internal\PrecedingSibling.cs (2)
80public override QueryProps Properties { get { return base.Properties | QueryProps.Reverse; } }
System\Xml\XPath\Internal\Query.cs (2)
73public virtual QueryProps Properties { get { return QueryProps.Merge; } }
System\Xml\XPath\Internal\QueryBuilder.cs (2)
237bool merge = (qyInput.Properties & QueryProps.Merge ) != 0; 238bool reverse = (qyInput.Properties & QueryProps.Reverse) != 0;
System\Xml\XPath\Internal\ReversePositionQuery.cs (2)
21public override QueryProps Properties { get { return base.Properties | QueryProps.Reverse; } }
System\Xml\XPath\Internal\SortQuery.cs (4)
101public override QueryProps Properties { get { return QueryProps.Cached | QueryProps.Position | QueryProps.Count; } }
System\Xml\XPath\Internal\XPathAncestorQuery.cs (2)
56public override QueryProps Properties { get { return base.Properties | QueryProps.Reverse; } }