Table of Contents

Method WithAfter

Namespace
MonoMod.RuntimeDetour
Assembly
MonoMod.RuntimeDetour.dll

WithAfter(IEnumerable<string>)

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

Parameters

after IEnumerable<string>
The After list for the new DetourConfig.

Returns

DetourConfig
A DetourConfig identical to this one, but with After equal to after.

WithAfter(params string[])

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

Parameters

after string[]
The After list for the new DetourConfig.

Returns

DetourConfig
A DetourConfig identical to this one, but with After equal to after.