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