Beispiel #1
0
 public bool IsPhoneRegistered(TLClient client, string phone)
 {
     try
     {
         var r = Task.Run(() => client.IsPhoneRegisteredAsync(phone));
         r.Wait();
         return(r.Result);
     }
     catch (Exception ex)
     {
         throw;
     }
 }