private void OnPlaybackReady(object sender, LaunchDlnaReadyForPlaybackEventArgs e)
		{
			Write(@"Download is ready for playback.");
			DownloadInfo.Download.IsReadyForPlayback = true;
			if (e.State == null)
			{
				Write(@"Download is ready for playback, but state info is null.", NotificationLevel.Warning);
			}
			OnSaveProgress();
		}
예제 #2
0
		private static void OnPlaybackReady(object sender, LaunchDlnaReadyForPlaybackEventArgs e)
		{
			//Write(@"Download is ready for playback.", ConsoleColor.Green);
		}
예제 #3
0
		private void OnStartPlayback(object sender, LaunchDlnaReadyForPlaybackEventArgs e)
		{
			throw new NotImplementedException();
		}