Table of Contents

Class PathMatch

Namespace
CMS.Websites
Assembly
CMS.Websites.dll

Path matching object to limit retrieved data.

public class PathMatch
Inheritance
object
PathMatch
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

path string

Tree path used to query content items.

nestingLevel int

Only items within specified nesting level will be included in the query. When not specified all levels are included.

Returns

PathMatch

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

path string

Tree path used to query content items.

nestingLevel int

Only items within specified nesting level will be included in the query. When not specified all levels are included.

Returns

PathMatch

Single(string)

Select the web page item only on specified path.

public static PathMatch Single(string path)

Parameters

path string

Tree path used to query content items.

Returns

PathMatch

SkipChildren(string)

Filters the data to exclude items below the specified path.

public static PathMatch SkipChildren(string path)

Parameters

path string

Tree path used to exclude content items.

Returns

PathMatch

SkipSection(string)

Filters the data to exclude item on the specified path and it's children.

public static PathMatch SkipSection(string path)

Parameters

path string

Tree path used to exclude content items.

Returns

PathMatch