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