ExtensionsWithObject Method |
Gets the Subset of Triples from an existing Enumerable that have a given Object.
Namespace:
VDS.RDF
Assembly:
dotNetRDF (in dotNetRDF.dll) Version:
Syntax public static IEnumerable<Triple> WithObject(
this IEnumerable<Triple> ts,
INode obj
)
<ExtensionAttribute>
Public Shared Function WithObject (
ts As IEnumerable(Of Triple),
obj As INode
) As IEnumerable(Of Triple)
Parameters
- ts
- Type: System.Collections.GenericIEnumerableTriple
Enumerable of Triples. - obj
- Type: VDS.RDFINode
Object to match.
Return Value
Type:
IEnumerableTriple[Missing <returns> documentation for "M:VDS.RDF.Extensions.WithObject(System.Collections.Generic.IEnumerable{VDS.RDF.Triple},VDS.RDF.INode)"]
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type
IEnumerableTriple. 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