IVsDataObjectCollection.Item[] Property

Definition

Overloads

Item[Object[]]

Gets from the collection, the data object that matches the specified identifier.

Item[String]

Gets from the collection the data object that matches the specified identifier.

Item[Object[]]

Gets from the collection, the data object that matches the specified identifier.

public:
 property Microsoft::VisualStudio::Data::Services::IVsDataObject ^ default[cli::array <System::Object ^> ^] { Microsoft::VisualStudio::Data::Services::IVsDataObject ^ get(cli::array <System::Object ^> ^ identifier); };
public Microsoft.VisualStudio.Data.Services.IVsDataObject this[object[] identifier] { get; }
member this.Item(obj[]) : Microsoft.VisualStudio.Data.Services.IVsDataObject
Default Public ReadOnly Property Item(identifier As Object()) As IVsDataObject

Parameters

identifier
Object[]

An array containing the identifier parts that uniquely identify the data object requested.

Property Value

An IVsDataObject object corresponding to the specified identifier.

Applies to

Item[String]

Gets from the collection the data object that matches the specified identifier.

public:
 property Microsoft::VisualStudio::Data::Services::IVsDataObject ^ default[System::String ^] { Microsoft::VisualStudio::Data::Services::IVsDataObject ^ get(System::String ^ identifier); };
public Microsoft.VisualStudio.Data.Services.IVsDataObject this[string identifier] { get; }
member this.Item(string) : Microsoft.VisualStudio.Data.Services.IVsDataObject
Default Public ReadOnly Property Item(identifier As String) As IVsDataObject

Parameters

identifier
String

A string containing the identifier parts that uniquely identify the data object requested, separated by a delimiter character.

Property Value

An IVsDataObject object corresponding to the specified identifier.

Applies to