private void MainForm_LoadingVideo(object sender, Forms.EventHandlers.LoadingVideoEventArgs e)
 {
     getChatLogLinesListTokenSource.Cancel();
     getChatLogLinesListTokenSource = new CancellationTokenSource();
     chatLogLines = null;
     ClearChatBox();
     ShowChatLoadingDisplay();
 }
Exemple #2
0
 private void OnLoadingVideo(object sender, Forms.EventHandlers.LoadingVideoEventArgs e)
 {
     LoadingVideo?.Invoke(this, e);
 }
Exemple #3
0
 private void BroadcastLoadingVideoEvent(Video.VideoFile video)
 {
     Forms.EventHandlers.LoadingVideoEventArgs e = new Forms.EventHandlers.LoadingVideoEventArgs();
     e.Video = video;
     OnLoadingVideo(this, e);
 }