DataColumnMappingCollection::Remove Method (Object^)

 

Removes the Object that is a DataColumnMapping from the collection.

Namespace:   System.Data.Common
Assembly:  System.Data (in System.Data.dll)

public:
virtual void Remove(
	Object^ value
) sealed

Parameters

value
Type: System::Object^

The Object that is the DataColumnMapping to remove.

Exception Condition
InvalidCastException

The object specified was not a DataColumnMapping object.

ArgumentException

The object specified is not in the collection.

The following example searches for a DataColumnMapping within the collection. If the mapping exists in the collection, it is removed. If the mapping does not exist within the collection, it is added to the collection and its index is displayed. The example assumes that a DataColumnMappingCollection collection and a DataColumnMapping object have been created.

No code example is currently available or this language may not be supported.

.NET Framework
Available since 1.1
Return to top
Show: