Click or drag to resize

ExplainSubclassService.ExplainSubclass Method (INode, INode, GraphCallback, Object)

Gets a Graph explaining why the given Class is a subclass of the given Super Class.

Namespace:  VDS.RDF.Query.Inference.Pellet.Services
Assembly:  dotNetRDF (in dotNetRDF.dll) Version:
Syntax
public void ExplainSubclass(
	INode subclass,
	INode superclass,
	GraphCallback callback,
	Object state
)

Parameters

subclass
Type: VDS.RDF.INode
Class.
superclass
Type: VDS.RDF.INode
Super Class.
callback
Type: VDS.RDF.GraphCallback
Callback to invoke when the operation completes.
state
Type: System.Object
State to pass to the callback.
Remarks
If the operation succeeds the callback will be invoked normally, if there is an error the callback will be invoked with a instance of AsyncError passed as the state which provides access to the error message and the original state passed in.
See Also