IF.Lastfm/IF.Lastfm.Core/Api/IAuth.cs
Rikki Tooley 03fa6f74e9 Changed error handling, stubbed most of albumapi
Methods now return LastResponse or ListResponse (confusing? hmm) instead
of throwing exceptions.
2013-06-14 13:11:42 +01:00

23 lines
793 B
C#

using System.Threading.Tasks;
using IF.Lastfm.Core.Api.Helpers;
using IF.Lastfm.Core.Objects;
namespace IF.Lastfm.Core.Api
{
public interface IAuth
{
bool HasAuthenticated { get; }
string ApiKey { get; }
UserSession User { get; }
/// <summary>
/// Gets the session token which is used as authentication for any service calls.
/// Username and password aren't stored.
/// </summary>
/// <param name="username">Username</param>
/// <param name="password">User's password</param>
/// <returns>Session token used to authenticate calls to last.fm</returns>
/// <remarks>API: Auth.getMobileSession</remarks>
Task<LastResponse> GetSessionTokenAsync(string username, string password);
}
}