Exemplo n.º 1
0
        public string EndLastFmAuth()
        {
            lastFmSession = auth.GetSession();
            scrobbler     = new Lpfm.LastFmScrobbler.QueuingScrobbler(LASTFM_KEY, LASTFM_SECRET, lastFmSession);

            return(lastFmSession);
        }
Exemplo n.º 2
0
 public LANPlayerCore(string lastfm_session)
 {
     Init();
     lastFmSession = lastfm_session;
     try
     {
         scrobbler = new Lpfm.LastFmScrobbler.QueuingScrobbler(LASTFM_KEY, LASTFM_SECRET, lastfm_session);
     }
     catch
     {
         lastFmSession = null;
     }
 }
Exemplo n.º 3
0
 public LANPlayerCore(string lastfm_session)
 {
     Init();
     lastFmSession = lastfm_session;
     try
     {
         scrobbler = new Lpfm.LastFmScrobbler.QueuingScrobbler(LASTFM_KEY, LASTFM_SECRET, lastfm_session);
     }
     catch
     {
         lastFmSession = null;
     }
 }
Exemplo n.º 4
0
 public void RemoveLastFmAuth()
 {
     scrobbler = null;
     lastFmSession = null;
 }
Exemplo n.º 5
0
        public string EndLastFmAuth()
        {
            lastFmSession = auth.GetSession();
            scrobbler = new Lpfm.LastFmScrobbler.QueuingScrobbler(LASTFM_KEY, LASTFM_SECRET, lastFmSession);

            return lastFmSession;
        }
Exemplo n.º 6
0
 public void RemoveLastFmAuth()
 {
     scrobbler     = null;
     lastFmSession = null;
 }