Table of Contents

Class RawResponse

Namespace
Auth0.ManagementApi
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

ResponseHeaders

StatusCode

The HTTP status code of the response.

public required HttpStatusCode StatusCode { get; init; }

Property Value

HttpStatusCode

Url

The request URL that generated this response.

public required Uri Url { get; init; }

Property Value

Uri