Edit

Share via


OleDbParameterCollection.Remove Method

Definition

Removes the OleDbParameter object from the OleDbParameterCollection.

Overloads

Remove(OleDbParameter)

Removes the OleDbParameter from the OleDbParameterCollection.

Remove(Object)

Removes the Object object from the OleDbParameterCollection.

Remove(OleDbParameter)

Source:
OleDbParameterCollection.cs
Source:
OleDbParameterCollection.cs
Source:
OleDbParameterCollection.cs
Source:
OleDbParameterCollection.cs
public:
 void Remove(System::Data::OleDb::OleDbParameter ^ value);
public void Remove (System.Data.OleDb.OleDbParameter value);
override this.Remove : System.Data.OleDb.OleDbParameter -> unit
Public Sub Remove (value As OleDbParameter)

Parameters

value
OleDbParameter

An OleDbParameter object to remove from the collection.

Exceptions

The parameter is not a OleDbParameter.

The parameter does not exist in the collection.

See also

Applies to

Remove(Object)

Source:
OleDbParameterCollectionHelper.cs
Source:
OleDbParameterCollectionHelper.cs
Source:
OleDbParameterCollectionHelper.cs
Source:
OleDbParameterCollectionHelper.cs

Removes the Object object from the OleDbParameterCollection.

public:
 override void Remove(System::Object ^ value);
public:
 virtual void Remove(System::Object ^ value);
public override void Remove (object value);
public void Remove (object value);
override this.Remove : obj -> unit
abstract member Remove : obj -> unit
override this.Remove : obj -> unit
Public Overrides Sub Remove (value As Object)
Public Sub Remove (value As Object)

Parameters

value
Object

An Object to be removed from the OleDbParameterCollection.

Implements

See also

Applies to