Click or drag to resize

SparqlUpdateCommandAffectsGraph Method

Gets whether the Command will potentially affect the given Graph.

Namespace:  VDS.RDF.Update
Assembly:  dotNetRDF (in dotNetRDF.dll) Version:
Syntax
public abstract bool AffectsGraph(
	Uri graphUri
)

Parameters

graphUri
Type: SystemUri
Graph URI.

Return Value

Type: Boolean

[Missing <returns> documentation for "M:VDS.RDF.Update.SparqlUpdateCommand.AffectsGraph(System.Uri)"]

Remarks
A return value of true does not guarantee that the Graph will be affected. Some Commands (e.g. DROP ALL) affect all Graphs in the Dataset but the command itself doesn't know whether a Graph with the given URI is actually present in the dataset to which it is applied.
See Also