Returns the ULParameter with the specified name.
Public Shadows Property Item( ByVal parameterName As String ) As ULParameter
public new ULParameter this[string parameterName] {get;set;}
parameterName The name of the parameter to retrieve.
The ULParameter with the specified name.
IndexOutOfRangeException There is no parameter with the specified name.
ArgumentNullException You cannot set a parameter using a null (Nothing in Visual Basic) parameter name.
In C#, this property is the indexer for the ULParameterCollection class.
This is the strongly-typed version of DbParameterCollection.this[string].