ReportRunnerGetReportByName Method

Note: This API is now obsolete.
Retrieve a NetFORUM report, as defined in the configuration file, using the passed parameters.

Definition

Namespace: Ignition.Reporting
Assembly: CatalystFire.Ignition (in CatalystFire.Ignition.dll) Version: 12.0.3454
C#
[ObsoleteAttribute("Ignition no longer supports pulling report information from app/web.config. Use the version that takes an ID instead.")]
public ReportResult GetReportByName(
	string reportName,
	Object parameters,
	NetForumReportFormat format = NetForumReportFormat.Pdf
)

Parameters

reportName  String
The name of the report as defined in the configuration as "Reports.[reportName]"
parameters  Object
Anonymous object containing the parameters to pass to the report
format  NetForumReportFormat  (Optional)
File format to use for the returned report

Return Value

ReportResult
A ReportShim which contains report metadata as well as the actual report

See Also