ExecuteConfigAsync(IDocument, IExecutionContext, string) Method
Executes the module for each input document in parallel. If there aren't any input documents and the config delegate doesn't require documents, this will be called once with a null input.
Namespace
Statiq.Core
Containing Type
ReplaceWithContent
Overridden
ExecuteConfigAsync(IDocument, IExecutionContext, string)

Syntax

protected override Task<IEnumerable<IDocument>> ExecuteConfigAsync(IDocument input, IExecutionContext context, string value)

Parameters

Name Type Description
input IDocument The input document this module is currently applying to or null if there aren't any input documents or if the config delegate doesn't require documents.
context IExecutionContext The execution context.
value string The evaluated config value.

Return Value

Type Description
Task<IEnumerable<IDocument>> The result documents.