Enum
IdentifierType

Specifies the identifier type options used in the HTML5 WebForms ReportViewer ReportSource configuration. Used to determine how report identifiers are interpreted and resolved when loading reports in the HTML5 viewer.

Definition

Namespace:Telerik.ReportViewer.Html5.WebForms

Assembly:Telerik.ReportViewer.Html5.WebForms.dll

Syntax:

cs-api-definition
public enum IdentifierType

Fields

CustomReportSource

Indicates that the identifier represents a custom report source requiring user-implemented resolution logic.

Declaration

cs-api-definition
CustomReportSource = 2

Field Value

IdentifierType

Remarks

Used when the identifier follows a custom format that requires application-specific resolution logic to locate and load the report.

TypeReportSource

Indicates that the identifier represents a report type for creating TypeReportSource instances.

Declaration

cs-api-definition
TypeReportSource = 0

Field Value

IdentifierType

Remarks

Used when the identifier is a fully qualified type name that references a report class for strongly-typed report loading.

UriReportSource

Indicates that the identifier represents a URI pointing to a .trdp/.trdx report file for creating UriReportSource instances.

Declaration

cs-api-definition
UriReportSource = 1

Field Value

IdentifierType

Remarks

Used when the identifier is a file path or URI that points to a report definition file stored on disk or accessible via URL.