Open this page in the API Guide

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)
Syntax
public bool Remove(
	ParameterValue item
)

Parameters

item
Type: Dundas.BI.Data.Parameters.ParameterValue
The object to remove from the parameter value collection.

Return Value

Type: Boolean
true 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
ExceptionCondition
ArgumentNullExceptionitem is null.
See Also