Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

OleDbParameterCollection::Item Property (Int32)

 

Gets or sets the OleDbParameter at the specified index.

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

public:
[BrowsableAttribute(false)]
property OleDbParameter^ default[
	int index
] {
	OleDbParameter^ get(int index);
	void set(int index, OleDbParameter^ value);
}

Parameters

index
Type: System::Int32

The zero-based index of the parameter to retrieve.

Property Value

Type: System.Data.OleDb::OleDbParameter^

The OleDbParameter at the specified index.

Exception Condition
IndexOutOfRangeException

The index specified does not exist.

The following example creates an OleDbParameterCollection, adds instances of OleDbParameter to the collection, displays the names of its OleDbParameter objects, and then clears the collection.

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

.NET Framework
Available since 1.1
Return to top
Show:
© 2017 Microsoft