OleDbParameterCollection.RemoveAt Method

Definition

Removes the OleDbParameter object from the OleDbParameterCollection at the specified index.

Overloads

RemoveAt(Int32)

Removes the OleDbParameter from the OleDbParameterCollection at the specified index.

RemoveAt(String)

Removes the OleDbParameter from the OleDbParameterCollection at the specified parameter name.

RemoveAt(Int32)

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

Removes the OleDbParameter from the OleDbParameterCollection at the specified index.

public:
 override void RemoveAt(int index);
public:
 virtual void RemoveAt(int index);
public override void RemoveAt (int index);
public void RemoveAt (int index);
override this.RemoveAt : int -> unit
abstract member RemoveAt : int -> unit
override this.RemoveAt : int -> unit
Public Overrides Sub RemoveAt (index As Integer)
Public Sub RemoveAt (index As Integer)

Parameters

index
Int32

The zero-based index of the OleDbParameter object to remove.

Implements

See also

Applies to

RemoveAt(String)

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

Removes the OleDbParameter from the OleDbParameterCollection at the specified parameter name.

public:
 override void RemoveAt(System::String ^ parameterName);
public:
 virtual void RemoveAt(System::String ^ parameterName);
public override void RemoveAt (string parameterName);
public void RemoveAt (string parameterName);
override this.RemoveAt : string -> unit
abstract member RemoveAt : string -> unit
override this.RemoveAt : string -> unit
Public Overrides Sub RemoveAt (parameterName As String)
Public Sub RemoveAt (parameterName As String)

Parameters

parameterName
String

The name of the OleDbParameter object to remove.

Implements

See also

Applies to