ModuleListExtensions.

InsertBefore<TModuleList>(TModuleList, string, IModule[]) Method

Summary

Inserts modules before the module with the specified name.
Assembly
Wyam.Common.dll
Namespace
Wyam.Common.Modules
Containing Type
ModuleListExtensions

Syntax

public static TModuleList InsertBefore<TModuleList>(this TModuleList moduleList, string beforeName, params IModule[] modules) 
    where TModuleList : IModuleList

Type Parameters

Name Description
TModuleList The type of the module list.

Parameters

Name Type Description
moduleList TModuleList The Wyam.Common.Modules.ModuleList.
beforeName string The name of the module at which to insert the specified modules.
modules IModule[] The modules to insert.

Return Value

Type Description
TModuleList The current instance.
GitHub