ExtensionsGetListNodes Method |
Gets all the Nodes which are the intermediate nodes in the list (aka the RDF collection). These represents the nodes used to link the actual items of the list together rather than the actual items of the list.
Namespace:
VDS.RDF
Assembly:
dotNetRDF (in dotNetRDF.dll) Version:
Syntax public static IEnumerable<INode> GetListNodes(
this IGraph g,
INode listRoot
)
<ExtensionAttribute>
Public Shared Function GetListNodes (
g As IGraph,
listRoot As INode
) As IEnumerable(Of INode)
Parameters
- g
- Type: VDS.RDFIGraph
Graph. - listRoot
- Type: VDS.RDFINode
Root Node for List.
Return Value
Type:
IEnumerableINodeNodes that are the intermediate nodes of the list.
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type
IGraph. When you use instance method syntax to call this method, omit the first parameter. For more information, see
Extension Methods (Visual Basic) or
Extension Methods (C# Programming Guide).
See Also