Hi, I was wondering if anyone could help me with this simple logout function. I'm still unfamiliar with using the IdentityManager. private void LogoutButton_Click(object sender, RoutedEventArgs e) { string credentials = IdentityManager.Current.Credentials.ToString(); IdentityManager.Current.RemoveCredential(credentials); }Right now it's not accepting the string as a credential, but I don't know how to convert it into a usable format.