Interface IDisablablePlugin
Provides methods to allow runtime disabling of a plugin.
Inherited Members
Namespace: IPA
Assembly: IPA.Loader.dll
Syntax
[Obsolete("Use the attribute-based system instead.")]
public interface IDisablablePlugin : IPlugin
Methods
| Improve this Doc View SourceOnDisable()
Called when a plugin is disabled at runtime. This should disable things like Harmony patches and unsubscribe from events. After this is called there should be no lingering effects of the mod.
Declaration
void OnDisable()
Remarks
This will get called at shutdown, after OnApplicationQuit(), as well as when the plugin is disabled at runtime.