OleDbParameterCollection.Remove Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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
- Source:
- OleDbParameterCollection.cs
Removes the OleDbParameter from the OleDbParameterCollection.
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)
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.