Exemple #1
0
 public void RemoveTwoFactorAuthToken(TwoFactorAuthToken item)
 {
     TwoFactorAuthTokenCollection.Remove((TwoFactorAuthToken)item);
 }
Exemple #2
0
 public void AddTwoFactorAuthToken(TwoFactorAuthToken item)
 {
     TwoFactorAuthTokenCollection.Add(new TwoFactorAuthToken {
         Token = item.Token, Issued = item.Issued, UserId = this.ID
     });
 }