Table of Contents

Method AddBefore

Namespace
MonoMod.RuntimeDetour
Assembly
MonoMod.RuntimeDetour.dll

AddBefore(IEnumerable<string>)

Creates a new DetourConfig which is identical to this one, but with before added to Before.
public DetourConfig AddBefore(IEnumerable<string> before)

Parameters

before IEnumerable<string>
The list of IDs to add to Before.

Returns

DetourConfig
A DetourConfig with before added to Before.

AddBefore(params string[])

Creates a new DetourConfig which is identical to this one, but with before added to Before.
public DetourConfig AddBefore(params string[] before)

Parameters

before string[]
The list of IDs to add to Before.

Returns

DetourConfig
A DetourConfig with before added to Before.