Skip to main content

Parameter(String, Type, Object) Constructor

Initializes a new instance of the Parameter class.

Namespace: DevExpress.DataAccess.ObjectBinding

Assembly: DevExpress.DataAccess.v23.2.dll

NuGet Packages: DevExpress.DataAccess, DevExpress.Win.PivotGrid, DevExpress.Win.TreeMap

Declaration

public Parameter(
    string name,
    Type type,
    object value
)

Parameters

Name Type Description
name String

A String that specifies a parameter name. This value is assigned to the Parameter.Name property.

type Type

A Type that specifies a parameter type. This value is assigned to the Parameter.Type property.

value Object

A parameter value. This value is assigned to the Parameter.Value property.

See Also