Class PluginUnloadingEvent
Namespace: Void.Proxy.Api.Events.Plugins
Assembly: Void.Proxy.Api.dll
Signals that a plugin is about to be unloaded.
public record PluginUnloadingEvent : IEvent, IEquatable<PluginUnloadingEvent>Inheritance
Implements
IEvent, IEquatable<PluginUnloadingEvent>
Inherited Members
object.Equals(object?), object.Equals(object?, object?), object.GetHashCode(), object.GetType(), object.MemberwiseClone(), object.ReferenceEquals(object?, object?), object.ToString()
Constructors
PluginUnloadingEvent(IPlugin)
Signals that a plugin is about to be unloaded.
public PluginUnloadingEvent(IPlugin Plugin)Parameters
Plugin IPlugin
The plugin entering the unloading phase.
Properties
Plugin
The plugin entering the unloading phase.
public IPlugin Plugin { get; init; }