Click or drag to resize

Extensions.WithObject 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
)

Parameters

ts
Type: System.Collections.Generic.IEnumerable<Triple>
Enumerable of Triples.
obj
Type: VDS.RDF.INode
Object to match.

Return Value

Type: IEnumerable<Triple>

[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 IEnumerable<Triple>. 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