Class PluginStateChangedEventArgs
- Namespace
- SharpConsoleUI.Core
- Assembly
- SharpConsoleUI.dll
Event arguments for plugin state changes.
public class PluginStateChangedEventArgs : EventArgs
- Inheritance
-
PluginStateChangedEventArgs
- Inherited Members
Constructors
PluginStateChangedEventArgs(PluginState, PluginState)
Initializes a new instance of the PluginStateChangedEventArgs class.
public PluginStateChangedEventArgs(PluginState previousState, PluginState newState)
Parameters
previousStatePluginStateThe previous state.
newStatePluginStateThe new state.
Properties
NewState
Gets the new plugin state.
public PluginState NewState { get; }
Property Value
PreviousState
Gets the previous plugin state.
public PluginState PreviousState { get; }