8 overrides of Properties
dotnet-svcutil-lib (8)
FrameworkFork\Microsoft.Xml\Xml\XPath\Internal\CacheAxisQuery.cs (1)
66public override QueryProps Properties { get { return QueryProps.Merge | QueryProps.Cached | QueryProps.Position | QueryProps.Count; } }
FrameworkFork\Microsoft.Xml\Xml\XPath\Internal\CacheOutputQuery.cs (1)
77public override QueryProps Properties { get { return QueryProps.Merge | QueryProps.Cached | QueryProps.Position | QueryProps.Count; } }
FrameworkFork\Microsoft.Xml\Xml\XPath\Internal\ContextQuery.cs (1)
58public override QueryProps Properties { get { return QueryProps.Merge | QueryProps.Cached | QueryProps.Position | QueryProps.Count; } }
FrameworkFork\Microsoft.Xml\Xml\XPath\Internal\EmptyQuery.cs (1)
22public override QueryProps Properties { get { return QueryProps.Merge | QueryProps.Cached | QueryProps.Position | QueryProps.Count; } }
FrameworkFork\Microsoft.Xml\Xml\XPath\Internal\FilterQuery.cs (1)
175public override QueryProps Properties
FrameworkFork\Microsoft.Xml\Xml\XPath\Internal\GroupQuery.cs (1)
35public override QueryProps Properties { get { return QueryProps.Position; } } // Doesn't have QueryProps.Merge
FrameworkFork\Microsoft.Xml\Xml\XPath\Internal\precedingquery.cs (1)
105public override QueryProps Properties { get { return base.Properties | QueryProps.Reverse; } }
FrameworkFork\Microsoft.Xml\Xml\XPath\Internal\SortQuery.cs (1)
114public override QueryProps Properties { get { return QueryProps.Cached | QueryProps.Position | QueryProps.Count; } }
4 references to Properties
dotnet-svcutil-lib (4)
FrameworkFork\Microsoft.Xml\Xml\XPath\Internal\FilterQuery.cs (1)
179return QueryProps.Position | (qyInput.Properties & (QueryProps.Merge | QueryProps.Reverse));
FrameworkFork\Microsoft.Xml\Xml\XPath\Internal\precedingquery.cs (1)
105public override QueryProps Properties { get { return base.Properties | QueryProps.Reverse; } }
FrameworkFork\Microsoft.Xml\Xml\XPath\Internal\querybuilder.cs (2)
279bool merge = (qyInput.Properties & QueryProps.Merge) != 0; 280bool reverse = (qyInput.Properties & QueryProps.Reverse) != 0;