コード例 #1
0
 private void TwitchOnWhisperThrottled(object sender, OnWhisperThrottledEventArgs e)
 {
     Core.LOG(new LogEntry(LOGSEVERITY.WARNING, "EventCatcherTwitch",  $"Twitch Whisper Throttled!! {e.AllowedInPeriod}:Allowed {e.Period}:Period {e.SentWhisperCount}:sent count"));
 }
コード例 #2
0
 public void WhisperThrottled(OnWhisperThrottledEventArgs eventArgs)
 {
     OnWhisperThrottled?.Invoke(this, eventArgs);
 }
コード例 #3
0
 /// <summary>
 /// Passes <see cref="OnWhisperThrottled"/> events down to subscribed plugins.
 /// </summary>
 /// <param name="sender">The source of the event.</param>
 /// <param name="e">An <see cref="OnWhisperThrottledEventArgs"/> object.</param>
 private void TwitchClient_OnWhisperThrottled(object sender, OnWhisperThrottledEventArgs e) => this.OnWhisperThrottled?.Invoke(this, e);
コード例 #4
0
ファイル: DrakeBot.cs プロジェクト: curin/AzureDrakeBot
 private void _client_OnWhisperThrottled(object sender, OnWhisperThrottledEventArgs e)
 {
 }
コード例 #5
0
 private void On_WhisperThrottle(object sender, OnWhisperThrottledEventArgs e)
 {
     Console.WriteLine("? : Whisper has been Throttled!");
 }
コード例 #6
0
 public void WhisperThrottled(OnWhisperThrottledEventArgs eventArgs)
 {
     throw new NotImplementedException();
 }