Skip to content

Instantly share code, notes, and snippets.

@Mirch
Created October 11, 2018 16:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Mirch/fc43d3f9f676a5756024d8f745e206ae to your computer and use it in GitHub Desktop.
Save Mirch/fc43d3f9f676a5756024d8f745e206ae to your computer and use it in GitHub Desktop.
public class TestController : Controller
{
private HttpClient _client;
public TestController()
{
_client = new HttpClient();
_client.BaseAddress = new Uri("http://example.com/api");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment