Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save programmation/26cfb171f06351bc0ccd88b01092bebf to your computer and use it in GitHub Desktop.
Save programmation/26cfb171f06351bc0ccd88b01092bebf to your computer and use it in GitHub Desktop.
var response = await GetAsync (requestUri, token);
var responseType = response.Content?.Headers?.ContentType?.MediaType;
this.Debug (String.Format ("Response {0} ({1}) -> {2}", (int)response.StatusCode, response.StatusCode.ToString (), responseType));
var responseText = await response.Content.ReadAsStringAsync ();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment