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