Class UriReportSource
Represents a report source that loads a report document from a URI. The URI must point to a physical TRDX, TRDP or TRBP file.
Inherited Members
Namespace: Telerik.Reporting
Assembly: Telerik.Reporting.dll
Syntax
public class UriReportSource : ReportSource, IExpressionContainer, ICloneable
Examples
The following example demonstrates how to create a UriReportSource:
var uriReportSource = new Telerik.Reporting.UriReportSource();
// Specifying an URL or a file path
uriReportSource.Uri = "SampleReport.trdp";
// Adding the initial parameter values
uriReportSource.Parameters.Add(new Telerik.Reporting.Parameter("OrderNumber", "SO43659"));
Dim uriReportSource As New Telerik.Reporting.UriReportSource()
' Specifying an URL or a file path
uriReportSource.Uri = "SampleReport.trdp"
' Adding the initial parameter values
uriReportSource.Parameters.Add(New Telerik.Reporting.Parameter("OrderNumber", "SO43659"))
Constructors
UriReportSource()
Properties
Uri
Gets or sets the URI to load the report document from.
Declaration
public string Uri { get; set; }
Property Value
System.String
|
Remarks
A URI.
This property can accept an expression when the report source is used in a SubReport item or a NavigateToReportAction action.
Methods
Equals(Object)
Declaration
public override bool Equals(object obj)
Parameters
System.Object
obj
|
Returns
System.Boolean
|
Overrides
GetHashCode()
Declaration
public override int GetHashCode()
Returns
System.Int32
|
Overrides
ToString()
Declaration
public override string ToString()
Returns
System.String
|