Class Client.InvokeFunctionOptions
Options that can be supplied to a function invocation.
Note: If Headers.Authorization is set, it can be later overriden if a token is supplied in the method call.
public class Client.InvokeFunctionOptions
- Inheritance
-
Client.InvokeFunctionOptions
- Inherited Members
Properties
Body
Body of the Request
[JsonProperty("body")]
public Dictionary<string, object> Body { get; set; }
Property Value
Headers
Headers to be included on the request.
public Dictionary<string, string> Headers { get; set; }
Property Value
HttpTimeout
Timout value for HttpClient Requests, defaults to 100s. https://learn.microsoft.com/en-us/dotnet/api/system.net.http.httpclient.timeout?view=net-8.0#remarks
public TimeSpan HttpTimeout { get; set; }