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

SQL Anywhere 11.0.0 » UltraLite - .NET Programming » UltraLite .NET 2.0 API Reference » ULParameterCollection class » Item properties

 

Item(String) property

Returns the ULParameter with the specified name. In C#, this property is the indexer for the ULParameterCollection class.

Syntax
Visual Basic

Public Property Item ( _
   ByVal parameterName As String _
) As ULParameter
C#

public ULParameter this [ 
   string  parameterName
]  { get; set; }
Parameters
  • parameterName   The name of the parameter to retrieve.

Property value

The ULParameter with the specified name.

Remarks

This is the strongly-typed version of DbParameterCollection.this[string].

See also