Skip to content

Instantly share code, notes, and snippets.

@jamesaxl
Created January 3, 2015 13:51
Show Gist options
  • Save jamesaxl/992e387941df5c0c483c to your computer and use it in GitHub Desktop.
Save jamesaxl/992e387941df5c0c483c to your computer and use it in GitHub Desktop.
#if SOUP_SHARP
protected Soup.Session Session { get; set;}
#else
protected System.Net.WebClient Session { get; set;}
#endif
public PasteBin(){
#if SOUP_SHARP
Session = new Soup.Session ();
#else
Session = new System.Net.WebClient();
#endif
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment