Class EventBridge.OnPluginReadyEvent<TContext>
Event triggered when the plugin is ready, meaning everything is loaded and ready.
public record EventBridge.OnPluginReadyEvent<TContext> : Event<EventBridge.OnPluginReadyEvent<TContext>>, IEvent, IEquatable<Event>, IEquatable<Event<EventBridge.OnPluginReadyEvent<TContext>>>, IEquatable<EventBridge.OnPluginReadyEvent<TContext>> where TContext : IPluginContext
Type Parameters
TContext
The type of the plugin context.
- Inheritance
-
EventBridge.OnPluginReadyEvent<TContext>
- Implements
- Inherited Members
- Extension Methods
Constructors
OnPluginReadyEvent(TContext)
Event triggered when the plugin is ready, meaning everything is loaded and ready.
public OnPluginReadyEvent(TContext PluginContext)
Parameters
PluginContext
TContextThe context of the plugin that is ready.
Properties
PluginContext
The context of the plugin that is ready.
public TContext PluginContext { get; init; }
Property Value
- TContext