PivotDataSourceTransportReadSettingsTagHelper
Example
Razor
<read/>
Attributes
Attribute | Type | Description |
---|---|---|
cache | Boolean | If set to false, the request result will not be cached by the browser. Setting cache to false will only work correctly with HEAD and GET requests. It works by appending "_={timestamp}" to the GET parameters. By default, "jsonp" requests are not cached.Refer to the jQuery.ajax documentation for further information. |
content-type | String | The content-type HTTP header sent to the server. The default is "application/x-www-form-urlencoded". Use "application/json" if the content is JSON. Refer to the jQuery.ajax documentation for further information. |
data | String | The type of result expected from the server. Commonly used values are "json" and "jsonp".Refer to the jQuery.ajax documentation for further information. |
datatype | String | The type of result expected from the server. Commonly used values are "json" and "jsonp".Refer to the jQuery.ajax documentation for further information. |
headers | IDictionary<String,String> | Specifies the HTTP headers of the request. |
type | String | The type of request to make ("POST", "GET", "PUT" or "DELETE"). The default request is "GET".Refer to the jQuery.ajax documentation for further information. |
url | String | The URL to which the request is sent.If set to function, the data source will invoke it and use the result as the URL. |