public string EndLastFmAuth() { lastFmSession = auth.GetSession(); scrobbler = new Lpfm.LastFmScrobbler.QueuingScrobbler(LASTFM_KEY, LASTFM_SECRET, lastFmSession); return(lastFmSession); }
public LANPlayerCore(string lastfm_session) { Init(); lastFmSession = lastfm_session; try { scrobbler = new Lpfm.LastFmScrobbler.QueuingScrobbler(LASTFM_KEY, LASTFM_SECRET, lastfm_session); } catch { lastFmSession = null; } }
public void RemoveLastFmAuth() { scrobbler = null; lastFmSession = null; }
public string EndLastFmAuth() { lastFmSession = auth.GetSession(); scrobbler = new Lpfm.LastFmScrobbler.QueuingScrobbler(LASTFM_KEY, LASTFM_SECRET, lastFmSession); return lastFmSession; }