GraphNodeId.GetArray Method

Definition

Overloads

GetArray(GraphNodeIdName, GraphNodeId[])

Constructs a partial GraphNodeId based on the given array name and identifiers

GetArray(GraphNodeIdName, Object)

Get a GraphNodeId based on the name and value. Does a lookup against a Dictionary to minimize the number of GraphNodeIds around.

GetArray(GraphNodeIdName, GraphNodeId[])

Constructs a partial GraphNodeId based on the given array name and identifiers

public:
 static Microsoft::VisualStudio::GraphModel::GraphNodeId ^ GetArray(Microsoft::VisualStudio::GraphModel::GraphNodeIdName ^ arrayName, ... cli::array <Microsoft::VisualStudio::GraphModel::GraphNodeId ^> ^ identifiers);
public static Microsoft.VisualStudio.GraphModel.GraphNodeId GetArray (Microsoft.VisualStudio.GraphModel.GraphNodeIdName arrayName, params Microsoft.VisualStudio.GraphModel.GraphNodeId[] identifiers);
static member GetArray : Microsoft.VisualStudio.GraphModel.GraphNodeIdName * Microsoft.VisualStudio.GraphModel.GraphNodeId[] -> Microsoft.VisualStudio.GraphModel.GraphNodeId
Public Shared Function GetArray (arrayName As GraphNodeIdName, ParamArray identifiers As GraphNodeId()) As GraphNodeId

Parameters

arrayName
GraphNodeIdName

The name of the array to search

identifiers
GraphNodeId[]

The identifiers to seach for

Returns

The partial GraphNodeId for the arrayName and identifiers passed in

Applies to

GetArray(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 ^ GetArray(Microsoft::VisualStudio::GraphModel::GraphNodeIdName ^ name, System::Object ^ value);
public static Microsoft.VisualStudio.GraphModel.GraphNodeId GetArray (Microsoft.VisualStudio.GraphModel.GraphNodeIdName name, object value);
static member GetArray : Microsoft.VisualStudio.GraphModel.GraphNodeIdName * obj -> Microsoft.VisualStudio.GraphModel.GraphNodeId
Public Shared Function GetArray (name As GraphNodeIdName, value As Object) As GraphNodeId

Parameters

name
GraphNodeIdName

The name to search for

value
Object

The value to search for

Returns

The GraphNodeId for based on the name and value

Applies to