Class IRCCommand
- Namespace
- Firesplash.UnityAssets.TwitchIntegration.DataTypes.IRC
- Assembly
- Firesplash.UnityAssets.TwitchIntegration.dll
This object represents a chat message that has been identified as a possible command to us. It has been preprocessed for further usage.
public class IRCCommand : IRCMessage
- Inheritance
-
IRCCommand
- Inherited Members
Properties
Command
The command we received
public string Command { get; }
Property Value
ParameterText
All parameters as a raw text - just as received from twitch
public string ParameterText { get; }
Property Value
Parameters
The Parameters given to the command as an array. Empty array if no parameters given.
public string[] Parameters { get; }
Property Value
- string[]