ParameterName property

Specifies the name of the parameter.

Syntax
Visual Basic
Public Overrides Property ParameterName As String
C#
public override string  ParameterName { get; set; }
Property value

A string representing the name of the parameter, or an empty string ("") for unnamed parameters. Specifying a null reference (Nothing in Visual Basic) results in an empty string being used.

Remarks

In UltraLite.NET, parameter names are not used by ULCommand. All parameters are treated as positional parameters and are used by a command in the order that they were added.

See also