Exemplo n.º 1
0
 public Verify CreateVerification(VerifyOptions options, RequestOptions requestOptions = null)
 {
     return(this._authenticationService.Create(options, requestOptions));
 }
Exemplo n.º 2
0
 public Verify Create(VerifyOptions options, RequestOptions requestOptions = null)
 {
     return(this.CreateEntity(options, requestOptions));
 }
Exemplo n.º 3
0
 public async Task <Verify> CreateVerificationAsync(VerifyOptions options, RequestOptions requestOptions = null, CancellationToken ct = default)
 {
     return(await this._authenticationService.CreateAsync(options, requestOptions, ct));
 }
Exemplo n.º 4
0
 public async Task <Verify> CreateAsync(VerifyOptions options, RequestOptions requestOptions = null, CancellationToken ct = default)
 {
     return(await this.CreateEntityAsync(options, requestOptions, ct));
 }