ConnectionManagerItems.Item[] Property   
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.
Gets the connection manager objects.
Overloads
| Item[Int32] | 
						 Gets the connection manager object with specified index.  | 
        	
| Item[String] | 
						 Gets the connection manager object with specified stream name.  | 
        	
Item[Int32]
Gets the connection manager object with specified index.
public:
 property Microsoft::SqlServer::Dts::Runtime::ConnectionManagerItem ^ default[int] { Microsoft::SqlServer::Dts::Runtime::ConnectionManagerItem ^ get(int index); };
	public Microsoft.SqlServer.Dts.Runtime.ConnectionManagerItem this[int index] { get; }
	member this.Item(int) : Microsoft.SqlServer.Dts.Runtime.ConnectionManagerItem
	Default Public ReadOnly Property Item(index As Integer) As ConnectionManagerItem
	Parameters
- index
 - Int32
 
The index.
Property Value
The connection manager object with specified index.
Applies to
Item[String]
Gets the connection manager object with specified stream name.
public:
 property Microsoft::SqlServer::Dts::Runtime::ConnectionManagerItem ^ default[System::String ^] { Microsoft::SqlServer::Dts::Runtime::ConnectionManagerItem ^ get(System::String ^ streamName); };
	public Microsoft.SqlServer.Dts.Runtime.ConnectionManagerItem this[string streamName] { get; }
	member this.Item(string) : Microsoft.SqlServer.Dts.Runtime.ConnectionManagerItem
	Default Public ReadOnly Property Item(streamName As String) As ConnectionManagerItem
	Parameters
- streamName
 - String
 
The stream name.
Property Value
The connection manager object with specified stream name.