Spotify.NET/SpotifyAPI.Web/Clients/Interfaces/IUserProfileClient.cs

33 lines
1.5 KiB
C#
Raw Normal View History

using System.Threading;
2020-05-01 19:05:28 +01:00
using System.Threading.Tasks;
namespace SpotifyAPI.Web
{
2020-05-13 17:25:42 +01:00
/// <summary>
/// Endpoints for retrieving information about a users profile.
/// </summary>
/// <remarks>https://developer.spotify.com/documentation/web-api/reference-beta/#category-user-profile</remarks>
2020-05-01 19:05:28 +01:00
public interface IUserProfileClient
{
/// <summary>
2020-05-13 17:25:42 +01:00
/// Get detailed profile information about the current user (including the current users username).
2020-05-01 19:05:28 +01:00
/// </summary>
/// <param name="cancel">The cancellation-token to allow to cancel the request.</param>
/// <remarks>
/// https://developer.spotify.com/documentation/web-api/reference-beta/#endpoint-get-current-users-profile
/// </remarks>
2020-05-01 19:05:28 +01:00
/// <exception cref="APIUnauthorizedException">Thrown if the client is not authenticated.</exception>
Task<PrivateUser> Current(CancellationToken cancel = default);
2020-05-01 19:05:28 +01:00
/// <summary>
2020-05-13 17:25:42 +01:00
/// Get public profile information about a Spotify user.
2020-05-01 19:05:28 +01:00
/// </summary>
/// <param name="userId">The user id.</param>
/// <param name="cancel">The cancellation-token to allow to cancel the request.</param>
2020-05-13 17:25:42 +01:00
/// <remarks>https://developer.spotify.com/documentation/web-api/reference-beta/#endpoint-get-users-profile</remarks>
2020-05-01 19:05:28 +01:00
/// <exception cref="APIUnauthorizedException">Thrown if the client is not authenticated.</exception>
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Naming", "CA1716")]
Task<PublicUser> Get(string userId, CancellationToken cancel = default);
2020-05-01 19:05:28 +01:00
}
}