IVsDataExplorerConnection.FindNode Method
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.
Overloads
FindNode(Int32) |
Retrieves the connection node from Server Explorer based on its ID. |
FindNode(String) |
Retrieves the connection node from Server Explorer based on its name. |
FindNode(String, Boolean) |
Retrieves the connection node from Server Explorer based on its name. Optionally, searches unexpanded nodes that are not populated. |
FindNode(Int32)
Retrieves the connection node from Server Explorer based on its ID.
public:
Microsoft::VisualStudio::Data::Services::IVsDataExplorerNode ^ FindNode(int itemId);
public Microsoft.VisualStudio.Data.Services.IVsDataExplorerNode FindNode (int itemId);
abstract member FindNode : int -> Microsoft.VisualStudio.Data.Services.IVsDataExplorerNode
Public Function FindNode (itemId As Integer) As IVsDataExplorerNode
Parameters
- itemId
- Int32
An integer value identifying the connection node to get.
Returns
An IVsDataExplorerNode object representing the requested connection node in Server Explorer.
Applies to
FindNode(String)
Retrieves the connection node from Server Explorer based on its name.
public:
Microsoft::VisualStudio::Data::Services::IVsDataExplorerNode ^ FindNode(System::String ^ fullName);
public Microsoft.VisualStudio.Data.Services.IVsDataExplorerNode FindNode (string fullName);
abstract member FindNode : string -> Microsoft.VisualStudio.Data.Services.IVsDataExplorerNode
Public Function FindNode (fullName As String) As IVsDataExplorerNode
Parameters
- fullName
- String
The name of the requested connection node.
Returns
An IVsDataExplorerNode object representing the requested connection node in Server Explorer.
Applies to
FindNode(String, Boolean)
Retrieves the connection node from Server Explorer based on its name. Optionally, searches unexpanded nodes that are not populated.
public:
Microsoft::VisualStudio::Data::Services::IVsDataExplorerNode ^ FindNode(System::String ^ fullName, bool searchUnpopulatedChildren);
public Microsoft.VisualStudio.Data.Services.IVsDataExplorerNode FindNode (string fullName, bool searchUnpopulatedChildren);
abstract member FindNode : string * bool -> Microsoft.VisualStudio.Data.Services.IVsDataExplorerNode
Public Function FindNode (fullName As String, searchUnpopulatedChildren As Boolean) As IVsDataExplorerNode
Parameters
- fullName
- String
The name of the connection node to get.
- searchUnpopulatedChildren
- Boolean
A Boolean value indicating whether to search nodes that have never been expanded and are thus not populated.
Returns
An IVsDataExplorerNode object representing the requested connection node in Server Explorer.