Gablarski.Clients.Input.CommandStateChangedEventArgs.CommandStateChangedEventArgs C# (CSharp) Méthode

CommandStateChangedEventArgs() public méthode

Initializes a new instance of the CommandStateChangedEventArgs class.
public CommandStateChangedEventArgs ( Command command, object state ) : System
command Command The command that's state has changed.
state object The new state of the .
Résultat System
        public CommandStateChangedEventArgs(Command command, object state)
        {
            Command = command;
            State = state;
        }
CommandStateChangedEventArgs