Item(Int32) property

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

Syntax
Visual Basic

Public Property Item ( _
   ByVal index As Integer _
) As ULParameter
C#

public ULParameter this [ 
   int index
]  { get; set; }
Parameters
  • index   The zero-based index of the parameter to retrieve. The value must be in the range [0,ULParameterCollection.Count-1]. The first parameter in the collection has an index value of zero.

Property value

The ULParameter at the specified index.

Remarks

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

See also