GraphLinkCollection.GetOrCreate Method
Include Protected Members
Include Inherited Members
This member is overloaded. For complete information about this member, including syntax, usage, and examples, click a name in the overload list.
Overload List
Name | Description | |
---|---|---|
GetOrCreate(String, GraphNodeId) | ||
GetOrCreate(String, String) | Attempts to get the link with the specified source, target. If not found, a new link will be created. It also creates the source and target Node if those are not already defined (and these are created with no category). | |
GetOrCreate(GraphNode, GraphNode) | Gets the link from the specified source to the specified target node. If not found, a new link will be created. | |
GetOrCreate(GraphNodeId, GraphNodeId) | Attempts to get the link with the specified source, target. If not found, a new link will be created. It also creates the source and target Node if those are not already defined (and these are created with no category). | |
GetOrCreate(GraphNodeId, String) | ||
GetOrCreate(String, String, Int32) | Attempts to get the link with the specified source, target and multilink index If not found, a new link will be created. | |
GetOrCreate(GraphNodeId, GraphNodeId, Int32) | Attempts to get the link with the specified source, target and multi-link index. If not found, a new link will be created. It also creates the source and target Node if those are not already defined (and these are created with no category). | |
GetOrCreate(String, String, String, GraphCategory) | Attempts to get the link with the specified source, target. If not found, a new link will be created. It also adds the specified category if it is not already defined. It also creates the source and target Node if those are not already defined (and these are created with no category). | |
GetOrCreate(GraphNode, GraphNode, String, GraphCategory) | Gets the link from the specified source to the specified target node. If not found, a new link will be created. | |
GetOrCreate(GraphNodeId, GraphNodeId, String, GraphCategory) | Attempts to get the link with the specified source, target. If not found, a new link will be created. It also adds the specified category if it is not already defined. It also creates the source and target Node if those are not already defined (and these are created with no category). |
Top