IVsDataExplorerConnection.FindDocumentNode 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
FindDocumentNode(String) |
Gets the specified connection node through the data view hierarchy. |
FindDocumentNode(String, Boolean) |
Gets the specified connection node through the data view hierarchy. Optionally, searches unexpanded nodes that are not populated. |
FindDocumentNode(String)
Gets the specified connection node through the data view hierarchy.
public:
Microsoft::VisualStudio::Data::Services::IVsDataExplorerNode ^ FindDocumentNode(System::String ^ documentMoniker);
public Microsoft.VisualStudio.Data.Services.IVsDataExplorerNode FindDocumentNode (string documentMoniker);
abstract member FindDocumentNode : string -> Microsoft.VisualStudio.Data.Services.IVsDataExplorerNode
Public Function FindDocumentNode (documentMoniker As String) As IVsDataExplorerNode
Parameters
- documentMoniker
- String
The moniker for the node to find.
Returns
An IVsDataExplorerNode object representing the requested node in Server Explorer.
Applies to
FindDocumentNode(String, Boolean)
Gets the specified connection node through the data view hierarchy. Optionally, searches unexpanded nodes that are not populated.
public:
Microsoft::VisualStudio::Data::Services::IVsDataExplorerNode ^ FindDocumentNode(System::String ^ documentMoniker, bool searchUnpopulatedChildren);
public Microsoft.VisualStudio.Data.Services.IVsDataExplorerNode FindDocumentNode (string documentMoniker, bool searchUnpopulatedChildren);
abstract member FindDocumentNode : string * bool -> Microsoft.VisualStudio.Data.Services.IVsDataExplorerNode
Public Function FindDocumentNode (documentMoniker As String, searchUnpopulatedChildren As Boolean) As IVsDataExplorerNode
Parameters
- documentMoniker
- String
The moniker for the node to find.
- 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.