Skip to main content
A newer version of this page is available. .

Parameter(String, Type, Object) Constructor

Initializes a new instance of the Parameter class.

Namespace: DevExpress.DataAccess.ObjectBinding

Assembly: DevExpress.DataAccess.v18.2.dll

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