Logging the XML or JSON sent by RestSharp

4.2k Views Asked by At

I'm using RestSharp to send information to a API. I would like to log the XML that I've sent to this API so I can debug later.

I would like to do something like this:

var request = new RestRequest(resourcePath, method);
request.AddBody(dto);
Logger.Log(request.Content);
var response = Client.Execute(request);

But, the actual request sent by RestSharp does not seem to be exposed.

1

There are 1 best solutions below

1
On BEST ANSWER

Everything sent in the request is available in request.Parameters.

To make getting the request body easier I created this extension method:

public static class RestSharpExtensions
{
    public static string GetBody(this IRestRequest request)
    {
        var bodyParameter = request.Parameters
            .FirstOrDefault(p => p.Type == ParameterType.RequestBody);
        return bodyParameter == null
            ? null
            : bodyParameter.Value.ToString();
    }
}