Enum HookResult
- Namespace
- CounterStrikeSharp.API.Core
- Assembly
- CounterStrikeSharp.API.dll
Represents the result of a hook.
public enum HookResult
- Extension Methods
Fields
Changed = 1The hook result has been changed. Currently unused.
Continue = 0Continue processing the hook to other listeners.
Handled = 3The hook has been handled. The original method will not be called, but other hooks will still be called.
Stop = 4Stop processing the hook. The original method will not be called, and other hooks will not proceed after this one.