예제 #1
0
 /// <summary>
 /// Asynchronously request a <see cref="ActivityDetails"/>  using the encrypted token provided by yoti during the login process.
 /// </summary>
 /// <param name="encryptedToken">The encrypted returned by Yoti after successfully authenticating.</param>
 /// <returns>The account details of the logged in user as a <see cref="ActivityDetails"/>. </returns>
 public async Task <ActivityDetails> GetActivityDetailsAsync(string encryptedToken)
 {
     return(await _yotiClientEngine.GetActivityDetailsAsync(encryptedToken, _sdkId, _keyPair, _defaultApiUrl));
 }
예제 #2
0
 /// <summary>
 /// Asynchronously request a <see cref="ActivityDetails"/> using the encrypted token provided
 /// by yoti during the login process.
 /// </summary>
 /// <param name="encryptedToken">The encrypted returned by Yoti after successfully authenticating.</param>
 /// <returns>The account details of the logged in user as a <see cref="ActivityDetails"/>.</returns>
 public async Task <ActivityDetails> GetActivityDetailsAsync(string encryptedToken)
 {
     return(await _yotiClientEngine.GetActivityDetailsAsync(encryptedToken, _sdkId, _keyPair, ApiUri).ConfigureAwait(false));
 }