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