Table of Contents

Method AddAfter

Namespace
MonoMod.RuntimeDetour
Assembly
MonoMod.RuntimeDetour.dll

AddAfter(IEnumerable<string>)

Creates a new DetourConfig which is identical to this one, but with after added to After.
public DetourConfig AddAfter(IEnumerable<string> after)

Parameters

after IEnumerable<string>
The list of IDs to add to After.

Returns

DetourConfig
A DetourConfig with after added to After.

AddAfter(params string[])

Creates a new DetourConfig which is identical to this one, but with after added to After.
public DetourConfig AddAfter(params string[] after)

Parameters

after string[]
The list of IDs to add to After.

Returns

DetourConfig
A DetourConfig with after added to After.