Click or drag to resize
ReportHelperGetReportParameters Method
Returns data row with report parameters from the given parameters string.

Namespace: CMS.Reporting
Assembly: CMS.Reporting (in CMS.Reporting.dll) Version: 8.2.23
Syntax
C#
public static DataRow GetReportParameters(
	ReportInfo report,
	string parametersString,
	string replacement,
	CultureInfo stringCulture,
	CultureInfo rowCulture
)

Parameters

report
Type: CMS.ReportingReportInfo
Report data
parametersString
Type: SystemString
String of report parameters from which the data row should be created. It is in format [param1 name];[param1 value];[param2 name];[param2 value];....[paramN name];[paramN value].
replacement
Type: SystemString
Semicolon replacement in the parameter value
stringCulture
Type: System.GlobalizationCultureInfo
Culture of the parameters in the input string
rowCulture
Type: System.GlobalizationCultureInfo
Culture of the the parameters in the output data row

Return Value

Type: DataRow
See Also