Exemplo n.º 1
0
 public IWebApiClient SetBasicAuthentication()
 {
     this.authentication = EnumAuthentication.Basic;
     return(this);
 }
Exemplo n.º 2
0
 public IWebApiClient SetBearerAuthentication(string authToken)
 {
     this.authToken      = authToken;
     this.authentication = EnumAuthentication.Bearer;
     return(this);
 }