public IWebApiClient SetBasicAuthentication() { this.authentication = EnumAuthentication.Basic; return(this); }
public IWebApiClient SetBearerAuthentication(string authToken) { this.authToken = authToken; this.authentication = EnumAuthentication.Bearer; return(this); }