Table of Contents

Class PluginEventArgs

Namespace
SharpConsoleUI.Core
Assembly
SharpConsoleUI.dll

Event arguments for plugin load/unload events.

public class PluginEventArgs : EventArgs
Inheritance
PluginEventArgs
Inherited Members

Constructors

PluginEventArgs(IPlugin)

Initializes a new instance of the PluginEventArgs class.

public PluginEventArgs(IPlugin plugin)

Parameters

plugin IPlugin

The plugin instance.

Properties

Info

Gets the plugin information.

public PluginInfo Info { get; }

Property Value

PluginInfo

Plugin

Gets the plugin instance.

public IPlugin Plugin { get; }

Property Value

IPlugin