Table of Contents

Class RequestOptions

Namespace
Auth0.ManagementApi
Assembly
Auth0.ManagementApi.dll
[Serializable]
public class RequestOptions
Inheritance
RequestOptions
Inherited Members
Extension Methods

Properties

AdditionalBodyProperties

Additional body properties sent with the request. This is only applied to JSON requests.

public object? AdditionalBodyProperties { get; set; }

Property Value

object

AdditionalHeaders

Additional headers to be sent with the request. Headers previously set with matching keys will be overwritten.

public IEnumerable<KeyValuePair<string, string?>> AdditionalHeaders { get; set; }

Property Value

IEnumerable<KeyValuePair<string, string>>

AdditionalQueryParameters

Additional query parameters sent with the request.

public IEnumerable<KeyValuePair<string, string>> AdditionalQueryParameters { get; set; }

Property Value

IEnumerable<KeyValuePair<string, string>>

BaseUrl

The Base URL for the API.

public string? BaseUrl { get; set; }

Property Value

string

HttpClient

The http client used to make requests.

public HttpClient? HttpClient { get; set; }

Property Value

HttpClient

MaxRetries

The max number of retries to attempt.

public int? MaxRetries { get; set; }

Property Value

int?

Timeout

The timeout for the request.

public TimeSpan? Timeout { get; set; }

Property Value

TimeSpan?