C# Class Nexus.Client.Commands.CommandBinding

The base class for binding a command to a command trigger.
Inheritance: CommandBindingBase
Datei anzeigen Open project: NexusMods/NexusModManager-4.5

Public Methods

Method Description
Execute ( ) : void

Executes the command.

Protected Methods

Method Description
CommandBinding ( object p_objTrigger, Command p_cmdCommand ) : System

A simple constructor that initializes the object with the given values.

Method Details

CommandBinding() protected method

A simple constructor that initializes the object with the given values.
protected CommandBinding ( object p_objTrigger, Command p_cmdCommand ) : System
p_objTrigger object The object that can trigger the command.
p_cmdCommand Command The command that can be triggered.
return System

Execute() public method

Executes the command.
public Execute ( ) : void
return void