ConnectionStringSettingsCollection::Item Property (Int32)

 

Gets or sets the connection string at the specified index in the collection.

Namespace:   System.Configuration
Assembly:  System.Configuration (in System.Configuration.dll)

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

Parameters

index
Type: System::Int32

The index of a ConnectionStringSettings object in the collection.

Property Value

Type: System.Configuration::ConnectionStringSettings^

The ConnectionStringSettings object at the specified index.

In C#, this property is the indexer for the ConnectionStringSettingsCollection class.

The following example shows how to access a ConnectionStringSettings object at a given index in a ConnectionStringSettingsCollection collection.

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

.NET Framework
Available since 2.0
Return to top
Show: