Initializes a new instance of the ProcedureParameter class.

Namespace:  Mindscape.LightSpeed.Querying
Assembly:  Mindscape.LightSpeed (in Mindscape.LightSpeed.dll)
Version: 4.0.0.0 (4.0.0.0)

Syntax

C#
public ProcedureParameter(
	string name,
	Object value,
	ParameterDirection direction,
	Nullable<DbType> dataType,
	Nullable<int> size
)
Visual Basic (Declaration)
Public Sub New ( _
	name As String, _
	value As Object, _
	direction As ParameterDirection, _
	dataType As Nullable(Of DbType), _
	size As Nullable(Of Integer) _
)

Parameters

name
Type: System..::.String
The name of the parameter.
value
Type: System..::.Object
The value of the parameter.
direction
Type: System.Data..::.ParameterDirection
The parameter direction.
dataType
Type: System..::.Nullable<(Of <(DbType>)>)
The data type.
size
Type: System..::.Nullable<(Of <(Int32>)>)
The size of the data.

See Also