Пример #1
0
 public VerifyCode Post(string phone, VerifyCodeOptions options, RequestOptions requestOptions = null)
 {
     return(this.CreateEntity(phone, this.PostPath, options, requestOptions));
 }
Пример #2
0
 public VerifyCode SubmitVerificationCode(string phone, VerifyCodeOptions options, RequestOptions requestOptions = null)
 {
     return(this._codeService.Post(phone, options, requestOptions));
 }
Пример #3
0
 public async Task <VerifyCode> PostAsync(string phone, VerifyCodeOptions options, RequestOptions requestOptions = null, CancellationToken ct = default)
 {
     return(await this.CreateEntityAsync(phone, this.PostPath, options, requestOptions, ct));
 }
Пример #4
0
 public async Task <VerifyCode> SubmiVerificationCodeAsync(string phone, VerifyCodeOptions options, RequestOptions requestOptions = null, CancellationToken ct = default)
 {
     return(await this._codeService.PostAsync(phone, options, requestOptions, ct));
 }