Back to Harmony

Enum MethodDispatchType

docs/api/HarmonyLib.MethodDispatchType.html

2.4.2.0536 B
Original Source

Enum MethodDispatchType

Specifies the type of method call dispatching mechanics

Namespace : HarmonyLib
Assembly : 0Harmony.dll
Syntax
public enum MethodDispatchType

Fields

NameDescription
Call

Call the method using static dispatching, regardless of whether method is virtual (including overriden) or non-virtual (including static)

| | VirtualCall |

Call the method using dynamic dispatching if method is virtual (including overriden)

|