ClusterServiceClusterRaw Method (Int32, String, GraphCallback, Object) |
Gets the raw Cluster Graph for the Knowledge Base.
Namespace:
VDS.RDF.Query.Inference.Pellet.Services
Assembly:
dotNetRDF (in dotNetRDF.dll) Version:
Syntax public void ClusterRaw(
int number,
string type,
GraphCallback callback,
Object state
)
Public Sub ClusterRaw (
number As Integer,
type As String,
callback As GraphCallback,
state As Object
)
Parameters
- number
- Type: SystemInt32
Number of Clusters. - type
- Type: SystemString
QName of a Type to Cluster around. - callback
- Type: VDS.RDFGraphCallback
Callback to be invoked when the operation completes. - state
- Type: SystemObject
State to be passed 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