IF.Lastfm/IF.Lastfm.Core/Api/IAuth.cs

23 lines
793 B
C#
Raw Normal View History

2013-06-08 18:49:21 +01:00
using System.Threading.Tasks;
using IF.Lastfm.Core.Api.Helpers;
using IF.Lastfm.Core.Objects;
2013-06-08 18:49:21 +01:00
namespace IF.Lastfm.Core.Api
{
public interface IAuth
{
bool HasAuthenticated { get; }
2013-06-08 18:49:21 +01:00
string ApiKey { get; }
UserSession User { get; }
2013-06-08 18:49:21 +01:00
/// <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);
2013-06-08 18:49:21 +01:00
}
}