IScPlaylistPlayerControl

<< Klicken Sie hier um das Inhaltsverzeichnis anzuzeigen >>

Navigation:  Anleitungen > EmberPlusTcp Plugin konfigurieren >

IScPlaylistPlayerControl

using System;

 

namespace Sohard.Dabis.StudioController.Contracts.Scripting

{

  public interface IScPlaylistPlayerControl

   {

      /// <summary>

      /// Wird ausgelöst wenn ein Playlistelement OnAir gestartet wird.

      /// </summary>

      event EventHandler<PlayelementActionEventArgs> PlaylistelementStarted;

    /// <summary>

      /// Wird ausgelöst wenn ein OnAir laufendes Playlistelement gestoppt wird.

      /// </summary>

      event EventHandler<PlayelementActionEventArgs> PlaylistelementStopped;

   }

}