Click or drag to resize

UnionGraphRetract Method (IEnumerableTriple)

Retracts some Triples from the Graph.

Namespace:  VDS.RDF
Assembly:  dotNetRDF (in dotNetRDF.dll) Version:
Syntax
public override bool Retract(
	IEnumerable<Triple> ts
)

Parameters

ts
Type: System.Collections.GenericIEnumerableTriple
Triples.

Return Value

Type: Boolean

[Missing <returns> documentation for "M:VDS.RDF.UnionGraph.Retract(System.Collections.Generic.IEnumerable{VDS.RDF.Triple})"]

Implements

IGraphRetract(IEnumerableTriple)
Remarks
Assert and Retract operations are directed to the Default Graph of the Union. We have to override the method to do this as although the UnionTripleCollection will direct asserts/retracts to Triple Collection of the default Graph we cannot guarantee that the Graph will be able to carry out any assertion/retraction logic (e.g. persistence) it might have implemented if the Assert/Retract bypasses the Assert/Retract method of the Default Graph.
See Also