GraphLinkCollection.GetLinksTo Method
Get all links to the specified node ID have at least one of the specified categories.
Namespace: Microsoft.VisualStudio.GraphModel
Assembly: Microsoft.VisualStudio.GraphModel (in Microsoft.VisualStudio.GraphModel.dll)
Syntax
'Declaration
Public Function GetLinksTo ( _
nodeId As String, _
ParamArray categories As GraphCategory() _
) As IEnumerable(Of GraphLink)
public IEnumerable<GraphLink> GetLinksTo(
string nodeId,
params GraphCategory[] categories
)
public:
IEnumerable<GraphLink^>^ GetLinksTo(
String^ nodeId,
... array<GraphCategory^>^ categories
)
member GetLinksTo :
nodeId:string *
categories:GraphCategory[] -> IEnumerable<GraphLink>
public function GetLinksTo(
nodeId : String,
... categories : GraphCategory[]
) : IEnumerable<GraphLink>
Parameters
nodeId
Type: Stringnode to find links to
categories
Type: array<Microsoft.VisualStudio.GraphModel.GraphCategory[]0 or more categories used to filter the result set. If no categories provided then all links to the node are returned.
Return Value
Type: IEnumerable<GraphLink>
links to the node that match the categories
.NET Framework Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.