For example my rest client looks something like this:
var client = new RestClient("test/oauth/token");
var request = new RestRequest(Method.POST);
request.AddHeader("content-type", "application/json");
request.AddParameter("application/json", "{\"client_id\":\test123123123\",\"client_secret\":\"fsdfsdhkfsjdhf\",\"audience\":\"https://test.auth0.com/api/v2/\",\"grant_type\":\"client_credentials\"}", ParameterType.RequestBody);
IRestResponse response = client.Execute(request);
The code above works but I wanted to convert this to HTTP client instead, just not sure how to do it