Class RawResponse
- Namespace
- Auth0.ManagementApi.Core
- Assembly
- Auth0.ManagementApi.dll
Contains HTTP response metadata including status code, URL, and headers.
public record RawResponse : IEquatable<RawResponse>
- Inheritance
-
RawResponse
- Implements
- Inherited Members
- Extension Methods
Properties
Headers
The HTTP response headers.
public required ResponseHeaders Headers { get; init; }
Property Value
StatusCode
The HTTP status code of the response.
public required HttpStatusCode StatusCode { get; init; }
Property Value
Url
The request URL that generated this response.
public required Uri Url { get; init; }