public static TinderSession FromTombstoneData(TombstoneData data) { Client.AuthToken = data.AuthToken; _currentSession = new TinderSession(data.FBSession, data.Location); _currentSession._currentProfile = data.CurrentProfile; _currentSession._currentUser = data.CurrentUser; _currentSession._globalInfo = data.CurrentGlobals; _currentSession._lastActivity = data.LastActivity; //_currentSession._matches = new MatchesViewModel(data.Matches); _currentSession._recommendations = new Stack <UserResult>(data.Recommendations); _currentSession.StartUpdatesTimer(); //(Application.Current as TinderApp.Library.Controls.IApp).RootFrameInstance.LoggedIn(); return(_currentSession); }
public void Logout() { //_updateTimer.Stop(); _currentSession = null; }
public static TinderSession CreateNewSession(FacebookSessionInfo fbSession, Position location) { _currentSession = new TinderSession(fbSession, location); return(_currentSession); }