ServiceDataSource
Definition
Namespace:Telerik.Reporting
Assembly:Telerik.Reporting.dll
Syntax:
public abstract class ServiceDataSource : DataSource, IDataSource
Inheritance: objectMarshalByRefObjectComponentDataSourceServiceDataSource
Derived Classes:
Implements:
Inherited Members
Constructors
public ServiceDataSource()
Properties
DataEncoding
Encoding
Gets or sets the data encoding. Default is UTF-8.
[TypeConverter(typeof(EncodingConverter))]
public Encoding DataEncoding { get; set; }
DataSelector
string
Gets or sets the data selector expression which will be used to query and filter the data returned from the web service.
public string DataSelector { get; set; }
Gets or sets a value indicating whether to treats any response errors as if no data is returned from the web service.
public bool IgnoreResponseErrors { get; set; }
Gets or sets the timespan in seconds to wait before the request times out. Default is 100 seconds. Set the timeout to 0 to configure an infinite timeout.
public int RequestTimeout { get; set; }
ServiceUrl
string
Gets or sets the URL of the request which is going to retrieve the data. Required if WebServiceDataSource.Source is not set.
public string ServiceUrl { get; set; }
Source
object
Gets or sets the local source of the data. Can be the data string itself or a URI where the data is located. Required if WebServiceDataSource.ServiceUrl is not set.
public object Source { get; set; }
Methods
protected static bool AuthenticationEquals(WebServiceAuthentication a1, WebServiceAuthentication a2)
bool