I\'m trying to get content of HttpResponseMessage. It should be: {\"message\":\"Action \'\' does not exist!\",\"success\":false}, but I don\'t know, how to get
{\"message\":\"Action \'\' does not exist!\",\"success\":false}
You can use the GetStringAsync method:
GetStringAsync
var uri = new Uri("http://yoururlhere"); var response = await client.GetStringAsync(uri);