Chat

C# Methods for Twitch > Chat

SendAction

Sends an Action from either the Twitch Broadcaster or Twitch Bot Account (denoted by Italics in Twitch chat)

0.2.5
public void SendAction(string action, bool useBot = true, bool fallback = true)

SendMessage

Sends a Twitch chat message using either Twitch Broadcaster or Twitch Bot account

public void SendMessage(string message, bool useBot = true, bool fallback = true)

SendWhisper

public bool SendWhisper(string userName, string message, bool bot = true)

TwitchAnnounce

public void TwitchAnnounce(string message, bool bot = false, string color, bool fallback = false)

TwitchClearChatMessages

public bool TwitchClearChatMessages(bool bot = true)

TwitchDeleteChatMessage

public bool TwitchDeleteChatMessage(string messageId, bool bot = true)

TwitchReplyToMessage

Send a reply to a specific Twitch chat message

public void TwitchReplyToMessage(string message, string replyId, bool useBot = true, bool fallback = true)