OrderBy.

Descending(bool) Method

Summary

Specifies whether the documents should be output in descending order (the default is ascending order). If you use this method after called ThenBy, the descending ordering will apply to the secondary sort.
Assembly
Wyam.Core.dll
Namespace
Wyam.Core.Modules.Control
Containing Type
OrderBy

Syntax

public OrderBy Descending(bool descending = true)

Parameters

Name Type Description
descending bool If set to true, the documents are output in descending order.

Return Value

Type Description
OrderBy The current module instance.
GitHub