GraphLinkCollection.GetFiltered(Func<GraphLink,Boolean>) 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.
Returns all nodes in the graph that match according to the given filter
public:
System::Collections::Generic::IEnumerable<Microsoft::VisualStudio::GraphModel::GraphLink ^> ^ GetFiltered(Func<Microsoft::VisualStudio::GraphModel::GraphLink ^, bool> ^ filter);
[System.Runtime.CompilerServices.IteratorStateMachine(typeof(Microsoft.VisualStudio.GraphModel.GraphLinkCollection+<GetFiltered>d__49))]
public System.Collections.Generic.IEnumerable<Microsoft.VisualStudio.GraphModel.GraphLink> GetFiltered (Func<Microsoft.VisualStudio.GraphModel.GraphLink,bool> filter);
[<System.Runtime.CompilerServices.IteratorStateMachine(typeof(Microsoft.VisualStudio.GraphModel.GraphLinkCollection+<GetFiltered>d__49))>]
member this.GetFiltered : Func<Microsoft.VisualStudio.GraphModel.GraphLink, bool> -> seq<Microsoft.VisualStudio.GraphModel.GraphLink>
Public Iterator Function GetFiltered (filter As Func(Of GraphLink, Boolean)) As IEnumerable(Of GraphLink)
Parameters
Returns
The Links chosen by the filter
- Attributes