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
BaseUrl
The Base URL for the API.
public string BaseUrl { get; set; }
Property Value
HttpClient
The http client used to make requests.
public HttpClient HttpClient { get; set; }
Property Value
MaxRetries
The max number of retries to attempt.
public int MaxRetries { get; set; }
Property Value
Timeout
The timeout for the request.
public TimeSpan Timeout { get; set; }