Enum MethodType
- Namespace
- HarmonyLib
- Assembly
- 0Harmony.dll
Specifies the type of method
public enum MethodType
Fields
Constructor = 3This is a constructor
Enumerator = 5This targets the MoveNext method of the enumerator result, that actually contains the method's implementation
EventAdd = 8This is a add event method
EventRemove = 9This is a remove event method
Finalizer = 7Finalize
Getter = 1This is a getter
Normal = 0This is a normal method
OperatorAddition = 20This is a op_Addition
OperatorBitwiseAnd = 25This is a op_BitwiseAnd
OperatorBitwiseOr = 26This is a op_BitwiseOr
OperatorComma = 36This is a op_Comma
OperatorDecrement = 17This is a op_Decrement
OperatorDivision = 23This is a op_Division
OperatorEquality = 30This is a op_Equality
OperatorExclusiveOr = 27This is a op_ExclusiveOr
OperatorExplicit = 11This is a op_Explicit
OperatorFalse = 19This is a op_False
OperatorGreaterThan = 32This is a op_GreaterThan
OperatorGreaterThanOrEqual = 34This is a op_GreaterThanOrEqual
OperatorImplicit = 10This is a op_Implicit
OperatorIncrement = 16This is a op_Increment
OperatorInequality = 31This is a op_Inequality
OperatorLeftShift = 28This is a op_LeftShift
OperatorLessThan = 33This is a op_LessThan
OperatorLessThanOrEqual = 35This is a op_LessThanOrEqual
OperatorLogicalNot = 14This is a op_LogicalNot
OperatorModulus = 24This is a op_Modulus
OperatorMultiply = 22This is a op_Multiply
OperatorOnesComplement = 15This is a op_OnesComplement
OperatorRightShift = 29This is a op_RightShift
OperatorSubtraction = 21This is a op_Subtraction
OperatorTrue = 18This is a op_True
OperatorUnaryNegation = 13This is a op_UnaryNegation
OperatorUnaryPlus = 12This is a op_UnaryPlus
Setter = 2This is a setter
StaticConstructor = 4This is a static constructor