HttpResponseRecord
PackageAxial.HttpClient
The complete response transcript for one HTTP exchange.
Fields
| Name | Type | Description |
|---|---|---|
| StatusCode | StatusCode | The numeric response status code. |
| ReasonPhrase | ReasonPhrase | The reason phrase supplied by the server, or an empty string. |
| Headers | Headers | Response and content headers, in arrival order. |
| Body | Body | The exact response body bytes. |
| Text | Text | The response body decoded with the response charset (UTF-8 when unspecified). |
| Request | Request | The redacted request line, such as <c>GET https://api.example.com/users/***</c>. |
| StartedAt | StartedAt | When the request started. |
| Duration | Duration | Total exchange duration including body download. |

