Class ReportParameter
Represents the parameter data used in the context of an SDK operation. This data is displayed to report.
public class ReportParameter
- Inheritance
-
ReportParameter
- Derived
- Inherited Members
Constructors
ReportParameter()
Create a new instance of the ReportParameter class.
public ReportParameter()
ReportParameter(string, object)
Creates a new instance of ReportParameter.
public ReportParameter(string name, object value)
Parameters
namestringthe name of the ReportParameter.
valueobjectthe value of the ReportParameter.
Properties
Name
The name of the parameter.
public string Name { get; set; }
Property Value
Value
The value of the parameter that will be displayed into report.
public object Value { get; set; }