示例#1
0
 public async Task SetGoogleUserProfileAsync(string accessToken)
 {
     try {
         GoogleProfile = await _googleServices.GetGoogleUserProfileAsync(accessToken);
     } catch (Exception e) {
         Console.WriteLine(e);
     }
 }
示例#2
0
 public async Task SetGoogleUserProfileAsync(string accessToken)
 {
     try
     {
         GoogleProfile = await _googleServices.GetGoogleUserProfileAsync(accessToken);
     }
     catch (Exception e)
     {
         Crashes.TrackError(e);
     }
 }