Returns the ULParameter with the specified name. In C#, this property is the indexer for the ULParameterCollection class.
Visual Basic
Public Property Item ( _
ByVal parameterName As String _
) As ULParameter
C#
public ULParameter this [
string parameterName
] { get; set; }
parameterName The name of the parameter to retrieve.
The ULParameter with the specified name.
This is the strongly-typed version of DbParameterCollection.this[string].