Class PathMatch
Path matching object to limit retrieved data.
public class PathMatch
- Inheritance
-
objectPathMatch
- Extension Methods
Methods
Children(string, int)
Select the web page items only below the specified path.
public static PathMatch Children(string path, int nestingLevel = -1)
Parameters
pathstringTree path used to query content items.
nestingLevelintOnly items within specified nesting level will be included in the query. When not specified all levels are included.
Returns
Section(string, int)
Select the web page item on the specified path and it's children limited by nestingLevel.
public static PathMatch Section(string path, int nestingLevel = -1)
Parameters
pathstringTree path used to query content items.
nestingLevelintOnly items within specified nesting level will be included in the query. When not specified all levels are included.
Returns
Single(string)
Select the web page item only on specified path.
public static PathMatch Single(string path)
Parameters
pathstringTree path used to query content items.
Returns
SkipChildren(string)
Filters the data to exclude items below the specified path.
public static PathMatch SkipChildren(string path)
Parameters
pathstringTree path used to exclude content items.
Returns
SkipSection(string)
Filters the data to exclude item on the specified path and it's children.
public static PathMatch SkipSection(string path)
Parameters
pathstringTree path used to exclude content items.