Skip to main content

Enum AsmHookBehaviour

Defines the behaviour used by the Dalamud.Hooking.AsmHook. This is equivalent to the same enumeration in Reloaded and is included so you do not have to reference the assembly.

Assembly: Dalamud.dll
View Source
Declaration
public enum AsmHookBehaviour

Fields

ExecuteFirst

Executes your assembly code before the original.

View Source
Declaration
ExecuteFirst = 0

ExecuteAfter

Executes your assembly code after the original.

View Source
Declaration
ExecuteAfter = 1

DoNotExecuteOriginal

Do not execute original replaced code (Dangerous!).

View Source
Declaration
DoNotExecuteOriginal = 2

Extension Methods