Class RVWebResourceDataSource
Web resource data source, used to download files from HTTP URL's using GET method.
See RVRESTDataSource to use other HTTP methods or to customize parameters, headers and body to sent.
Inheritance
System.Object
RVWebResourceDataSource
Assembly: Infragistics.Reveal.DataLayer.dll
Syntax
public class RVWebResourceDataSource : RVDashboardDataSource, IDataSource
Constructors
RVWebResourceDataSource()
Declaration
public RVWebResourceDataSource()
RVWebResourceDataSource(BaseDataSource)
Declaration
public RVWebResourceDataSource(BaseDataSource modelDataSource)
Parameters
Type |
Name |
Description |
Infragistics.ReportPlus.DashboardModel.BaseDataSource |
modelDataSource |
|
Properties
ProviderKey
Declaration
protected override string ProviderKey { get; }
Property Value
Type |
Description |
System.String |
|
Overrides
Url
URL to the web resource, is expected to be a URL with HTTP or HTTPS scheme.
Declaration
public string Url { get; set; }
Property Value
Type |
Description |
System.String |
|
UseAnonymousAuthentication
Boolean flag indicating if anonymous authentication should be used for this data source or credentials must be requested
to the containing application.
Declaration
public bool UseAnonymousAuthentication { get; set; }
Property Value
Type |
Description |
System.Boolean |
|
Methods
ToModelDataSource()
Declaration
protected override BaseDataSource ToModelDataSource()
Returns
Type |
Description |
Infragistics.ReportPlus.DashboardModel.BaseDataSource |
|
Overrides