Table of Contents

Class ClientOptions

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

Constructors

ClientOptions()

public ClientOptions()

Properties

AdditionalHeaders

Additional headers to be sent with HTTP requests. Headers with matching keys will be overwritten by headers set on the request.

public IEnumerable<KeyValuePair<string, string?>> AdditionalHeaders { 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