Show / Hide Table of Contents

Class GameCommands

A class containing the methods to represent Game Commands.

Inheritance
object
GameCommands
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Phoenix.Aruba.TestTitle
Assembly: Phoenix.Plugin.Aruba.TestTitle.dll
Syntax
public class GameCommands
Remarks

Initializes a new instance of the GameCommands class.

Constructors

View Source

GameCommands(IPhoenixLogger)

A class containing the methods to represent Game Commands.

Declaration
public GameCommands(IPhoenixLogger logger)
Parameters
Type Name Description
IPhoenixLogger logger

The logger to use.

Remarks

Initializes a new instance of the GameCommands class.

Methods

View Source

CanExecuteDummyGameCommand1(IGameClient, string)

A function used to check if DummyGameCommand1(IGameClient, string) can execute.

Declaration
public static bool CanExecuteDummyGameCommand1(IGameClient gameClient, string parameters)
Parameters
Type Name Description
IGameClient gameClient

The game client.

string parameters

The parameters string.

Returns
Type Description
bool

Whether the action can be performed.

View Source

CanExecuteDummyGameCommand2(IGameClient, string)

A function used to check if DummyGameCommand2(IGameClient, string) can execute.

Declaration
public static bool CanExecuteDummyGameCommand2(IGameClient gameClient, string parameters)
Parameters
Type Name Description
IGameClient gameClient

The game client.

string parameters

The parameters string.

Returns
Type Description
bool

Whether the action can be performed.

View Source

CanExecuteDummyGameCommand3(IGameClient, string)

A function used to check if DummyGameCommand3(IGameClient, string) can execute.

Declaration
public static bool CanExecuteDummyGameCommand3(IGameClient gameClient, string parameters)
Parameters
Type Name Description
IGameClient gameClient

The game client.

string parameters

The parameters string.

Returns
Type Description
bool

Whether the action can be performed.

View Source

DummyGameCommand1(IGameClient, string)

Function to execute a dummy game command.

Declaration
public Task DummyGameCommand1(IGameClient gameClient, string parameters)
Parameters
Type Name Description
IGameClient gameClient

The game client.

string parameters

The parameters string.

Returns
Type Description
Task

A task.

View Source

DummyGameCommand2(IGameClient, string)

Function to execute a dummy game command.

Declaration
public Task DummyGameCommand2(IGameClient gameClient, string parameters)
Parameters
Type Name Description
IGameClient gameClient

The game client.

string parameters

The parameters string.

Returns
Type Description
Task

A task.

View Source

DummyGameCommand3(IGameClient, string)

Function to execute a dummy game command.

Declaration
public Task DummyGameCommand3(IGameClient gameClient, string parameters)
Parameters
Type Name Description
IGameClient gameClient

The game client.

string parameters

The parameters string.

Returns
Type Description
Task

A task.

View Source

GetCommandsToRegister()

Gets a list of commands to register.

Declaration
public List<ArubaCommand> GetCommandsToRegister()
Returns
Type Description
List<ArubaCommand>

A list of ArubaCommands to register.

  • View Source
In this article
Back to top Generated by DocFX