Exemplo n.º 1
0
 /// <inheritdoc/>
 public IMediaPlayerExecuteAsync Speak(string message)
 {
     _currentAction = new FluentAction(FluentActionType.Speak);
     _currentAction.MessageToSpeak = message;
     return(this);
 }
Exemplo n.º 2
0
 /// <inheritdoc/>
 public IMediaPlayerExecuteAsync Stop()
 {
     _currentAction = new FluentAction(FluentActionType.Stop);
     return(this);
 }
Exemplo n.º 3
0
 /// <inheritdoc/>
 public IMediaPlayerExecuteAsync PlayPause()
 {
     _currentAction = new FluentAction(FluentActionType.PlayPause);
     return(this);
 }