ModuleListExtensions.

InsertAfterLast<TModule>(IModuleList, Predicate<TModule>, string, IModule) Method

Summary

Inserts modules after the last module in the list of the specified type that satisfies a predicate.
Assembly
Wyam.Common.dll
Namespace
Wyam.Common.Modules
Containing Type
ModuleListExtensions

Syntax

public static IModuleList InsertAfterLast<TModule>(this IModuleList moduleList, Predicate<TModule> filter, string name, IModule module) 
    where TModule : class, IModule

Type Parameters

Name Description
TModule The type of the module at which to insert the modules.

Parameters

Name Type Description
moduleList IModuleList The Wyam.Common.Modules.ModuleList.
filter Predicate<TModule> A predicate determining at which module to insert the specified modules.
name string The name of the module to insert.
module IModule The module to insert.

Return Value

Type Description
IModuleList The current instance.
GitHub