public void Handle(AudioBackgroundPause message) { this.log.Information("Pause audio BG"); if (this.currentBgChannel.HasValue) { var chn = this.currentBgChannel.Value; chn.Pause = true; } this.backgroundAudioPlaying = false; }
public void Handle(AudioBackgroundPause message) { this.log.Info("Pause audio BG"); if (this.currentBgChannel.HasValue) { var chn = this.currentBgChannel.Value; chn.Pause = true; } }
public void Handle(AudioBackgroundPause message) { this.main.Handle(message); }