コード例 #1
0
 private void Client_OnJoinedChannel(object sender, TwitchLib.Events.Client.OnJoinedChannelArgs e)
 {
     OutputTextBox.Invoke((MethodInvoker) delegate
     {
         OutputTextBox.Text = "Join successfull!\n";
     });
 }
コード例 #2
0
 private static void _client_OnJoinedChannel(object sender, TwitchLib.Events.Client.OnJoinedChannelArgs e)
 {
     Log.Information("Joined Channel: {channel} as {user}", e.Channel, e.Username);
 }
コード例 #3
0
ファイル: AivaClient.cs プロジェクト: vikewoods/Aiva
 /// <summary>
 /// Fires when Client join Channel
 /// </summary>
 /// <param name="sender"></param>
 /// <param name="e"></param>
 private void OnJoinedChannel(object sender, TwitchLib.Events.Client.OnJoinedChannelArgs e)
 {
     AivaClient.Instance.AivaTwitchClient.SendMessage(Config.Text.Instance.GetString("AivaStartedText"));
 }
コード例 #4
0
ファイル: TwitchService.cs プロジェクト: masterufg/conan
 private void Client_OnJoinedChannel(object sender, TwitchLib.Events.Client.OnJoinedChannelArgs e)
 {
     Log.Information("Joined Twitch Channel: {channel}", e.Channel);
 }