GraphNodeId.GetNested 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
GetNested(GraphNodeId[]) |
Get a nested GraphNodeId based on the given identifiers. Does a lookup against a Dictionary to minimize the number of GraphNodeIds around. |
GetNested(GraphNodeIdName, Object) |
Get a GraphNodeId based on the name and value. Does a lookup against a Dictionary to minimize the number of GraphNodeIds around. |
GetNested(GraphNodeId[])
Get a nested GraphNodeId based on the given identifiers. Does a lookup against a Dictionary to minimize the number of GraphNodeIds around.
public:
static Microsoft::VisualStudio::GraphModel::GraphNodeId ^ GetNested(... cli::array <Microsoft::VisualStudio::GraphModel::GraphNodeId ^> ^ identifiers);
public static Microsoft.VisualStudio.GraphModel.GraphNodeId GetNested (params Microsoft.VisualStudio.GraphModel.GraphNodeId[] identifiers);
static member GetNested : Microsoft.VisualStudio.GraphModel.GraphNodeId[] -> Microsoft.VisualStudio.GraphModel.GraphNodeId
Public Shared Function GetNested (ParamArray identifiers As GraphNodeId()) As GraphNodeId
Parameters
- identifiers
- GraphNodeId[]
Returns
The partial GraphNodeId nested in this one
Applies to
GetNested(GraphNodeIdName, Object)
Get a GraphNodeId based on the name and value. Does a lookup against a Dictionary to minimize the number of GraphNodeIds around.
public:
static Microsoft::VisualStudio::GraphModel::GraphNodeId ^ GetNested(Microsoft::VisualStudio::GraphModel::GraphNodeIdName ^ name, System::Object ^ value);
public static Microsoft.VisualStudio.GraphModel.GraphNodeId GetNested (Microsoft.VisualStudio.GraphModel.GraphNodeIdName name, object value);
static member GetNested : Microsoft.VisualStudio.GraphModel.GraphNodeIdName * obj -> Microsoft.VisualStudio.GraphModel.GraphNodeId
Public Shared Function GetNested (name As GraphNodeIdName, value As Object) As GraphNodeId
Parameters
- name
- GraphNodeIdName
The name of the value to search for
- value
- Object
The value to search for
Returns
The partial GraphNodeId based on the name and value