Table of Contents

Class ContentTypesQueryParametersExtensions

Namespace
CMS.Websites
Assembly
CMS.Websites.dll

Content types query parameters extension methods related to web pages.

public static class ContentTypesQueryParametersExtensions
Inheritance
object
ContentTypesQueryParametersExtensions

Methods

ForWebsite(ContentTypesQueryParameters, bool)

Limits the collection of retrieved content types to web page items.

public static ContentTypesQueryParameters ForWebsite(this ContentTypesQueryParameters parameters, bool includeUrlPath = true)

Parameters

parameters ContentTypesQueryParameters

Content type query parameters.

includeUrlPath bool

Indicates if page URLs should be included in the retrieved data.

Returns

ContentTypesQueryParameters

Exceptions

ArgumentNullException

Thrown when parameters is null.

InvalidOperationException

When the 'ForWebsite' method has been called previously.

ForWebsite(ContentTypesQueryParameters, IEnumerable<Guid>, bool)

Limits the collection of retrieved content types to web page items with the provided identifiers.

public static ContentTypesQueryParameters ForWebsite(this ContentTypesQueryParameters parameters, IEnumerable<Guid> identifiers, bool includeUrlPath = true)

Parameters

parameters ContentTypesQueryParameters

Content type query parameters.

identifiers IEnumerable<Guid>

Identifiers of web page items.

includeUrlPath bool

Indicates if page URLs should be included in the retrieved data.

Returns

ContentTypesQueryParameters

Exceptions

ArgumentNullException

Thrown when parameters or identifiers is null.

InvalidOperationException

When the 'ForWebsite' method has been called previously.

ForWebsite(ContentTypesQueryParameters, IEnumerable<int>, bool)

Limits the collection of retrieved content types to web page items with the provided identifiers.

public static ContentTypesQueryParameters ForWebsite(this ContentTypesQueryParameters parameters, IEnumerable<int> identifiers, bool includeUrlPath = true)

Parameters

parameters ContentTypesQueryParameters

Content type query parameters.

identifiers IEnumerable<int>

Identifiers of web page items.

includeUrlPath bool

Indicates if page URLs should be included in the retrieved data.

Returns

ContentTypesQueryParameters

Exceptions

ArgumentNullException

Thrown when parameters or identifiers is null.

InvalidOperationException

When the 'ForWebsite' method has been called previously.

ForWebsite(ContentTypesQueryParameters, IEnumerable<string>, bool)

Limits the collection of retrieved content types to web page items with the provided identifiers.

public static ContentTypesQueryParameters ForWebsite(this ContentTypesQueryParameters parameters, IEnumerable<string> identifiers, bool includeUrlPath = true)

Parameters

parameters ContentTypesQueryParameters

Content type query parameters.

identifiers IEnumerable<string>

Identifiers of web page items.

includeUrlPath bool

Indicates if page URLs should be included in the retrieved data.

Returns

ContentTypesQueryParameters

Exceptions

ArgumentNullException

Thrown when parameters or identifiers is null.

InvalidOperationException

When any of the 'ForWebsite' methods has been called previously.

ForWebsite(ContentTypesQueryParameters, string, PathMatch, bool)

Limits the collection of retrieved content types to web page items that belong to the provided websiteChannelName and pathMatch.

public static ContentTypesQueryParameters ForWebsite(this ContentTypesQueryParameters parameters, string websiteChannelName, PathMatch pathMatch = null, bool includeUrlPath = true)

Parameters

parameters ContentTypesQueryParameters

Content type query parameters.

websiteChannelName string

Name of the website channel.

pathMatch PathMatch

Web page tree path for which the query should be limited.

includeUrlPath bool

Indicates if page URLs should be included in the retrieved data.

Returns

ContentTypesQueryParameters

Exceptions

ArgumentNullException

Thrown when parameters is null.

InvalidOperationException

When the 'ForWebsite' method has been called previously.

WithWebPageData(ContentTypesQueryParameters, bool)

Adds website-specific data, such as content tree path, page order and URL path (optional see includeUrlPath), to the result. Only affects web page items. Other content types in the result are not affected.

public static ContentTypesQueryParameters WithWebPageData(this ContentTypesQueryParameters parameters, bool includeUrlPath = true)

Parameters

parameters ContentTypesQueryParameters

Content type query parameters.

includeUrlPath bool

Indicates if the URL path should be included in the retrieved data.

Returns

ContentTypesQueryParameters

Remarks

Unlike ForWebsite(ContentTypesQueryParameters, IEnumerable<Guid>, bool), which ensures identical website-specific data for web page items, this method does not scope the result to only web page content types.

For example, when querying for data via reusable field schemas that contain a combination of reusable and web site content types, you can use this method to ensure web page data without pruning other content types from the result.