Class RequestOptions
Defines members of the request option for remote data handling.
Inheritance
System.Object
RequestOptions
Namespace: Syncfusion.Blazor.Data
Assembly: Syncfusion.Blazor.dll
Syntax
public class RequestOptions : Object
Constructors
RequestOptions()
Declaration
public RequestOptions()
Properties
BaseUrl
Specifies the application base url.
Declaration
public string BaseUrl { get; set; }
Property Value
Type |
---|
System.String |
ContentType
Specifies the content type. By default, application/json is used.
Declaration
public string ContentType { get; set; }
Property Value
Type |
---|
System.String |
Data
Specifies the data to be posted.
Declaration
public object Data { get; set; }
Property Value
Type |
---|
System.Object |
Queries
Specifies the source query value.
Declaration
public Query Queries { get; set; }
Property Value
Type |
---|
Query |
RequestMethod
Specifies the Http request method.
Declaration
public HttpMethod RequestMethod { get; set; }
Property Value
Type |
---|
System.Net.Http.HttpMethod |
Url
Specifies the service url.
Declaration
public string Url { get; set; }
Property Value
Type |
---|
System.String |