Esempio n. 1
0
 /// <summary>
 /// Asynchronously request a <see cref="AmlResult"/>  using an individual's name and address.
 /// </summary>
 /// <param name="amlProfile">An individual's name and address.</param>
 /// <returns>The result of the AML check in the form of a <see cref="AmlResult"/>. </returns>
 public async Task <AmlResult> PerformAmlCheckAsync(IAmlProfile amlProfile)
 {
     return(await _yotiClientEngine.PerformAmlCheckAsync(_sdkId, _keyPair, _defaultApiUrl, amlProfile));
 }
Esempio n. 2
0
 /// <summary>
 /// Asynchronously request a <see cref="AmlResult"/> using an individual's name and address.
 /// </summary>
 /// <param name="amlProfile">An individual's name and address.</param>
 /// <returns>The result of the AML check in the form of a <see cref="AmlResult"/>.</returns>
 public async Task <AmlResult> PerformAmlCheckAsync(IAmlProfile amlProfile)
 {
     return(await _yotiClientEngine.PerformAmlCheckAsync(_sdkId, _keyPair, ApiUri, amlProfile).ConfigureAwait(false));
 }