Esempio n. 1
0
 /// <summary>
 ///     Move to a different voice channel.
 /// </summary>
 /// <param name="channel">The voice channel to connect to.</param>
 /// <exception cref="InvalidPlayerException">Thrown if not connected to a voice channel.</exception>
 /// <exception cref="InvalidAudioChannelException">Thrown if already connected to the specified voice channel.</exception>
 public async Task Move(IVoiceChannel channel)
 {
     await _player.Move(channel);
 }