Class OnCommandEventArgs
Inherited Members
Namespace: RageCoop.Server.Scripting
Assembly: RageCoop.Server.dll
Syntax
public class OnCommandEventArgs : EventArgs
Properties
Args
Arguments
Declaration
public string[] Args { get; set; }
Property Value
Type | Description |
---|---|
String[] |
Cancel
If this value was set to true, corresponding handler registered with RegisterCommand(String, Action<CommandContext>) will not be invoked.
Declaration
public bool Cancel { get; set; }
Property Value
Type | Description |
---|---|
Boolean |
Name
The name of executed command
Declaration
public string Name { get; set; }
Property Value
Type | Description |
---|---|
String |
Sender
The Client that executed this command.
Declaration
public Client Sender { get; set; }
Property Value
Type | Description |
---|---|
Client |