public static bool IsPaused(this Cue cue) { return(cue.HasState(CueState.Paused)); }
public static bool IsStopped(this Cue cue) { return(cue.HasState(CueState.Stopped)); }
public static bool IsPlaying(this Cue cue) { return(cue.HasState(CueState.Playing)); }