Telerik Reporting

Renders a report and returns the generated document.

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

Syntax

C#
RenderingResult Render(
	string format,
	string report,
	NameValueDictionary deviceInfo,
	NameValueDictionary parameters
)
Visual Basic (Declaration)
Function Render ( _
	format As String, _
	report As String, _
	deviceInfo As NameValueDictionary, _
	parameters As NameValueDictionary _
) As RenderingResult

Parameters

format
Type: System..::.String
The render format.
report
Type: System..::.String
The AssemblyQualifiedName of the report type to render.
deviceInfo
Type: Telerik.Reporting.Service..::.NameValueDictionary
A NameValueDictionary with setting for the current render format.
parameters
Type: Telerik.Reporting.Service..::.NameValueDictionary
A NameValueDictionary with values for the report parameters.

Return Value

A RenderingResult that contains the generated document bytes and info.

See Also