Table of Contents

Class ReportParameter

Namespace
HP.LFT.Report
Assembly
HP.LFT.Report.dll

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

name string

the name of the ReportParameter.

value object

the value of the ReportParameter.

Properties

Name

The name of the parameter.

public string Name { get; set; }

Property Value

string

Value

The value of the parameter that will be displayed into report.

public object Value { get; set; }

Property Value

object