Direction property

A value indicating whether the parameter is input-only, output-only, bidirectional, or a stored procedure return value parameter.

Syntax
Visual Basic
Public Overrides Property Direction As ParameterDirection
C#
public override ParameterDirection Direction { get; set; }
Property value

One of the System.Data.ParameterDirection values.

Remarks

In UltraLite.NET, parameters can only be used as IN parameters and all mapping information is ignored. Only the ULParameter.Value is important.

See also