Class RequestOptions
A container for generalized request inputs. This type allows consumers to extend the request functionality by abstracting away from the default (built-in) request framework (e.g. RestSharp).
Inheritance
Namespace: Telerik.CallHome.OpenAPI.Client
Assembly: Telerik.Windows.Controls.dll
Syntax
public class RequestOptions : Object
Constructors
RequestOptions()
Properties
Cookies
Cookies to be sent along with the request.
Declaration
public List<Cookie> Cookies { get; set; }
Property Value
System.Collections.Generic.List<System.Net.Cookie>
|
Data
Any data associated with a request body.
Declaration
public object Data { get; set; }
Property Value
System.Object
|
FileParameters
File parameters to be sent along with the request.
Declaration
public Multimap<string, FileParameter> FileParameters { get; set; }
Property Value
Multimap<System.String, FileParameter>
|
FormParameters
Form parameters to be sent along with the request.
Declaration
public Dictionary<string, string> FormParameters { get; set; }
Property Value
System.Collections.Generic.Dictionary<System.String, System.String>
|
HeaderParameters
Header parameters to be applied to the request. Keys may have 1 or more values associated.
Declaration
public Multimap<string, string> HeaderParameters { get; set; }
Property Value
Multimap<System.String, System.String>
|
PathParameters
Parameters to be bound to path parts of the Request's URL
Declaration
public Dictionary<string, string> PathParameters { get; set; }
Property Value
System.Collections.Generic.Dictionary<System.String, System.String>
|
QueryParameters
Query parameters to be applied to the request. Keys may have 1 or more values associated.
Declaration
public Multimap<string, string> QueryParameters { get; set; }
Property Value
Multimap<System.String, System.String>
|