Share via


IVsDataExplorerNodeSelection.Item[] Property

Definition

Overloads

Item[Int32]

Gets the node specified by its numerical identifier from the group of selected nodes in Server Explorer.

Item[String]

Gets the node specified by its full name from the group of selected nodes in Server Explorer.

Item[Int32]

Gets the node specified by its numerical identifier from the group of selected nodes in Server Explorer.

public:
 property Microsoft::VisualStudio::Data::Services::IVsDataExplorerNode ^ default[int] { Microsoft::VisualStudio::Data::Services::IVsDataExplorerNode ^ get(int itemId); };
public Microsoft.VisualStudio.Data.Services.IVsDataExplorerNode this[int itemId] { get; }
member this.Item(int) : Microsoft.VisualStudio.Data.Services.IVsDataExplorerNode
Default Public ReadOnly Property Item(itemId As Integer) As IVsDataExplorerNode

Parameters

itemId
Int32

A numerical value identifying the node to retrieve.

Property Value

An IVsDataExplorerNode object representing the specified node, or null if not found.

Applies to

Item[String]

Gets the node specified by its full name from the group of selected nodes in Server Explorer.

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

Parameters

fullName
String

The full name of the node to retrieve.

Property Value

An IVsDataExplorerNode object representing the specified node, or null if not found.

Applies to