Click here to view and discuss this page in DocCommentXchange. In the future, you will be sent there automatically.

SQL Anywhere 11.0.1 » UltraLite - .NET Programming » UltraLite .NET 2.0 API reference » ULParameter class

 

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