ParameterValueCollection.Remove Method |
Removes the first occurrence of a specific object from the parameter value collection.
Namespace:
Dundas.BI.Data.Parameters
Assembly:
Dundas.BI.Core (in Dundas.BI.Core.dll) Version: 2.0.0.0 (25.1.0.1000)
Syntaxpublic bool Remove(
ParameterValue item
)
Public Function Remove (
item As ParameterValue
) As Boolean
public:
virtual bool Remove(
ParameterValue^ item
) sealed
abstract Remove :
item : ParameterValue -> bool
override Remove :
item : ParameterValue -> bool
Parameters
- item
- Type: Dundas.BI.Data.Parameters.ParameterValue
The object to remove from the parameter value collection.
Return Value
Type:
Booleantrue if
item was successfully removed from the parameter value collection; otherwise,
false.
This method also returns
false if
item is not found in the original parameter value collection.
Implements
ICollection<T>.Remove(T)
Exceptions
See Also