VerifyCredentials() private method

private VerifyCredentials ( ) : void
return void
Esempio n. 1
0
        private void RefreshAccount(UserAccount account)
        {
            using (var t = new Twitter(account))
            {
                t.VerifyCredentials();
                account.UserId = t.UserId;
                account.Username = t.Username;
                account.ProfileImageUrl = t.ProfileImageUrl;
            }

            UserAccountsCheckedListBox.Refresh();
        }