IVsaItems.Item[] Property

Definition

Overloads

Item[Int32]

Gets an item from the collection by its index value.

Item[String]

Gets an item from the collection by its name.

Item[Int32]

Gets an item from the collection by its index value.

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

Parameters

index
Int32

A 0-based index of the retrievable items.

Property Value

The item at the specified index.

Applies to

Item[String]

Gets an item from the collection by its name.

public:
 property Microsoft::Vsa::IVsaItem ^ default[System::String ^] { Microsoft::Vsa::IVsaItem ^ get(System::String ^ name); };
public Microsoft.Vsa.IVsaItem this[string name] { get; }
member this.Item(string) : Microsoft.Vsa.IVsaItem
Default Public ReadOnly Property Item(name As String) As IVsaItem

Parameters

name
String

The name of the item to retrieve from the collection.

Property Value

The item specified by name.

Applies to