You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The readme puts emphasis on how custom transport implementations can be provided, but we should also mention that consumers can provide their own instance of HttpClient to HttpApiTransport without reimplementing the transport layer.
var client = new HttpClient(); // my own HTTP client with a bunch of custom settings
var transport = new HttpApiTransport(client);
This may actually satisfy most custom needs related to HttpClient.
The text was updated successfully, but these errors were encountered:
The readme puts emphasis on how custom transport implementations can be provided, but we should also mention that consumers can provide their own instance of
HttpClient
toHttpApiTransport
without reimplementing the transport layer.This may actually satisfy most custom needs related to
HttpClient
.The text was updated successfully, but these errors were encountered: