Table of Contents

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

previousState PluginState

The previous state.

newState PluginState

The new state.

Properties

NewState

Gets the new plugin state.

public PluginState NewState { get; }

Property Value

PluginState

PreviousState

Gets the previous plugin state.

public PluginState PreviousState { get; }

Property Value

PluginState