Reporting

Represents a report source that loads a report document from a URI.

Namespace: Telerik.Reporting
Assembly: Telerik.Reporting (in Telerik.Reporting.dll)

Syntax

C#
public class UriReportSource : ReportSource
Visual Basic
Public Class UriReportSource _
	Inherits ReportSource

Examples

The following example demonstrates how to create a UriReportSource:
CopyC#
Telerik.Reporting.UriReportSource uriReportSource = 
    new Telerik.Reporting.UriReportSource();

// Specifying an URL or a file path
uriReportSource.Uri = "SampleReport.trdx";

// Adding the initial parameter values
uriReportSource.Parameters.Add(new Telerik.Reporting.Parameter("OrderNumber", "SO43659"));
CopyVB.NET
Dim uriReportSource As New Telerik.Reporting.UriReportSource()

' Specifying an URL or a file path
uriReportSource.Uri = "SampleReport.trdx"

' Adding the initial parameter values
uriReportSource.Parameters.Add(New Telerik.Reporting.Parameter("OrderNumber", "SO43659"))

Inheritance Hierarchy

System..::..Object
  Telerik.Reporting..::..ReportSource
    Telerik.Reporting..::..UriReportSource

Version Information

Supported in: 1.0.1

See Also