Пример #1
0
 public async Task VerifyBeforeUpdateEmail(string newEmail)
 {
     try
     {
         await _user.VerifyBeforeUpdateEmail(newEmail).AsAsync().ConfigureAwait(false);
     }
     catch (FirebaseException e)
     {
         throw ExceptionMapper.Map(e);
     }
 }