-
Notifications
You must be signed in to change notification settings - Fork 151
Home
Alexander Legotin edited this page Dec 5, 2016
·
7 revisions
Frequently Asked Questions: F.A.Q.
var api = new InstaApiBuilder()
.UseLogger(new SomeLogger())
.UseHttpClient(new SomeHttpClient())
.SetUser(new UserCredentials(...You user...))
.Build();
var httpHndler = new HttpClientHandler();
httpHndler.Proxy = new MyProxy();
var result = new InstaApiBuilder()
.UseHttpClientHandler(httpHndler)
.Build();
Where MyProxy - some implementation of IWebProxy, WebProxy, for example.