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
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
AdditionalQueryParameters
Additional query parameters sent with the request.
public IEnumerable<KeyValuePair<string, string>> AdditionalQueryParameters { 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
- int?
Timeout
The timeout for the request.
public TimeSpan? Timeout { get; set; }