Table of Contents

Interface ICoreDetourBase

Namespace
MonoMod.Core
Assembly
MonoMod.Core.dll
A single detour. This is the base type of both ICoreDetour and ICoreNativeDetour.
public interface ICoreDetourBase

Remarks

When disposed or collected by GC, detours will be automatically undone and any associated memory freed.

Properties

IsApplied
Gets whether or not this detour is currently applied.

Methods

Apply()
Applies this detour.
Undo()
Undoes this detour. Once a detour is undone, it is no longer valid, and may not be used further.

See Also