Skip to content

Instantly share code, notes, and snippets.

@pavlovmilen
Created June 1, 2018 15:51
Show Gist options
  • Save pavlovmilen/7b1c1e17850f29ab87060103511ef821 to your computer and use it in GitHub Desktop.
Save pavlovmilen/7b1c1e17850f29ab87060103511ef821 to your computer and use it in GitHub Desktop.
myioshttpclient
public class MyiOSHttpClient : IMyClient
{
NSUrlSession _client;
var _delegate = new mycustomsessiondatadelegate();
using (NSUrlSessionConfiguration config = NSUrlSessionConfiguration.DefaultSessionConfiguration)
{
_client = NSUrlSession.FromConfiguration(config, _delegate, NSOperationQueue.MainQueue);
}
....
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment