Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Get all links from the specified node id that 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 GetLinksFrom ( _
nodeId As String, _
ParamArray categories As GraphCategory() _
) As IEnumerable(Of GraphLink)
public IEnumerable<GraphLink> GetLinksFrom(
string nodeId,
params GraphCategory[] categories
)
public:
IEnumerable<GraphLink^>^ GetLinksFrom(
String^ nodeId,
... array<GraphCategory^>^ categories
)
member GetLinksFrom :
nodeId:string *
categories:GraphCategory[] -> IEnumerable<GraphLink>
public function GetLinksFrom(
nodeId : String,
... categories : GraphCategory[]
) : IEnumerable<GraphLink>
Parameters
- nodeId
Type: System.String
node to find links fromo
- 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: System.Collections.Generic.IEnumerable<GraphLink>
links from 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.