PackageItems.Item[] Property

Definition

Returns a PackageItem object from the PackageItems collection.

Overloads

Item[Int32]

Returns a PackageItem object from the PackageItems collection with specified index.

Item[String]

Returns a PackageItem object from the PackageItems collection with specified stream name.

Item[Int32]

Returns a PackageItem object from the PackageItems collection with specified index.

public:
 property Microsoft::SqlServer::Dts::Runtime::PackageItem ^ default[int] { Microsoft::SqlServer::Dts::Runtime::PackageItem ^ get(int index); };
public Microsoft.SqlServer.Dts.Runtime.PackageItem this[int index] { get; }
member this.Item(int) : Microsoft.SqlServer.Dts.Runtime.PackageItem
Default Public ReadOnly Property Item(index As Integer) As PackageItem

Parameters

index
Int32

The index.

Property Value

A PackageItem object from the PackageItems collection with specified index.

Applies to

Item[String]

Returns a PackageItem object from the PackageItems collection with specified stream name.

public:
 property Microsoft::SqlServer::Dts::Runtime::PackageItem ^ default[System::String ^] { Microsoft::SqlServer::Dts::Runtime::PackageItem ^ get(System::String ^ streamName); };
public Microsoft.SqlServer.Dts.Runtime.PackageItem this[string streamName] { get; }
member this.Item(string) : Microsoft.SqlServer.Dts.Runtime.PackageItem
Default Public ReadOnly Property Item(streamName As String) As PackageItem

Parameters

streamName
String

The name of the stream.

Property Value

A PackageItem object from the PackageItems collection with specified stream name.

Applies to