Class MultisetHandler
A SPARQL Results Handler which loads directly into a Multiset.
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: VDS.RDF.Parsing.Handlers
Assembly: dotNetRdf.dll
Syntax
public class MultisetHandler : BaseResultsHandler, ISparqlResultsHandler, INodeFactory
Remarks
Primarily intended for internal usage for future optimisation of some SPARQL evaluation.
Constructors
| Improve this Doc View SourceMultisetHandler(Multiset)
Creates a new Multiset Handler.
Declaration
public MultisetHandler(Multiset mset)
Parameters
Type | Name | Description |
---|---|---|
Multiset | mset | Multiset. |
Remarks
Primarily intended for internal usage for future optimisation of some SPARQL evaluation.
Methods
| Improve this Doc View SourceHandleBooleanResultInternal(bool)
Handles a Boolean Result by doing nothing.
Declaration
protected override void HandleBooleanResultInternal(bool result)
Parameters
Type | Name | Description |
---|---|---|
System.Boolean | result | Boolean Result. |
Overrides
Remarks
Primarily intended for internal usage for future optimisation of some SPARQL evaluation.
HandleResultInternal(ISparqlResult)
Handles a Result by adding it to the Multiset.
Declaration
protected override bool HandleResultInternal(ISparqlResult result)
Parameters
Type | Name | Description |
---|---|---|
ISparqlResult | result | Result. |
Returns
Type | Description |
---|---|
System.Boolean |
Overrides
Remarks
Primarily intended for internal usage for future optimisation of some SPARQL evaluation.
HandleVariableInternal(string)
Handles a Variable by adding it to the Multiset.
Declaration
protected override bool HandleVariableInternal(string var)
Parameters
Type | Name | Description |
---|---|---|
string | var | Variable. |
Returns
Type | Description |
---|---|
System.Boolean |
Overrides
Remarks
Primarily intended for internal usage for future optimisation of some SPARQL evaluation.