Changed 'SpotifyAPIExample' to 'SpotifyLocalAPIExample'

This commit is contained in:
Johnny @PC 2014-08-05 18:52:35 +02:00
parent 256b1145fe
commit 763c095818
2 changed files with 8 additions and 0 deletions

View File

@ -62,6 +62,14 @@ namespace SpotifyAPI.SpotifyLocalAPI
rh.SendPlayRequest(uri); rh.SendPlayRequest(uri);
} }
/// <summary> /// <summary>
/// Adds a Spotify URI to the Queue
/// </summary>
/// <param name="uri">The Spotify URI. Can be checked with <seealso cref="SpotifyLocalAPIClass.IsValidSpotifyURI"/></param>
public void AddToQueue(String uri)
{
rh.SendQueueRequest(uri);
}
/// <summary>
/// Checks if the current "Track" is an Advert /// Checks if the current "Track" is an Advert
/// </summary> /// </summary>
/// <returns>True if it's an Advert, false if not</returns> /// <returns>True if it's an Advert, false if not</returns>