IExecutionContext.

Execute(IEnumerable<IModule>, IEnumerable<IDocument>) Method

Summary

Executes the specified modules with the specified input documents and returns the result documents.
Assembly
Wyam.Common.dll
Namespace
Wyam.Common.Execution
Containing Type
IExecutionContext

Syntax

IReadOnlyList<IDocument> Execute(IEnumerable<IModule> modules, IEnumerable<IDocument> inputs)

Parameters

Name Type Description
modules IEnumerable<IModule> The modules to execute.
inputs IEnumerable<IDocument> The input documents.

Return Value

Type Description
IReadOnlyList<IDocument> The result documents from the executed modules.
GitHub