示例#1
0
        public void Logout()
        {
            LoggedIn = false;
            Stop();
            CurrentStation = null;
            _playlist.ClearSongs();
            _playlist.ClearHistory();
            _playlist.Current = null;
            _pandora.Logout();
            Email    = string.Empty;
            Password = string.Empty;

            LogoutEvent?.Invoke(this);
            _cqman.SendStatusUpdate(QueryStatusValue.Disconnected);
        }