Click or drag to resize

IWrappingRdfHandler Interface

Interface for Handlers which wrap other Handlers.

Namespace:  VDS.RDF
Assembly:  dotNetRDF (in dotNetRDF.dll) Version:
Syntax
public interface IWrappingRdfHandler : IRdfHandler, 
	INodeFactory

The IWrappingRdfHandler type exposes the following members.

Properties
  NameDescription
Public propertyAcceptsAll
Gets whether the Handler will always handle all data (i.e. won't terminate parsing early).
(Inherited from IRdfHandler.)
Public propertyInnerHandlers
Gets the Inner Handlers used by this Handler.
Top
Methods
  NameDescription
Public methodCreateBlankNode
Creates a Blank Node with a new automatically generated ID.
(Inherited from INodeFactory.)
Public methodCreateBlankNode(String)
Creates a Blank Node with the given Node ID.
(Inherited from INodeFactory.)
Public methodCreateGraphLiteralNode
Creates a Graph Literal Node which represents the empty Subgraph.
(Inherited from INodeFactory.)
Public methodCreateGraphLiteralNode(IGraph)
Creates a Graph Literal Node which represents the given Subgraph.
(Inherited from INodeFactory.)
Public methodCreateLiteralNode(String)
Creates a Literal Node with the given Value.
(Inherited from INodeFactory.)
Public methodCreateLiteralNode(String, String)
Creates a Literal Node with the given Value and Language.
(Inherited from INodeFactory.)
Public methodCreateLiteralNode(String, Uri)
Creates a Literal Node with the given Value and Data Type.
(Inherited from INodeFactory.)
Public methodCreateUriNode
Creates a URI Node for the given URI.
(Inherited from INodeFactory.)
Public methodCreateVariableNode
Creates a Variable Node for the given Variable Name.
(Inherited from INodeFactory.)
Public methodEndRdf
End the Handling of RDF.
(Inherited from IRdfHandler.)
Public methodGetNextBlankNodeID
Creates a new unused Blank Node ID and returns it.
(Inherited from INodeFactory.)
Public methodHandleBaseUri
Handles a Base URI Definition.
(Inherited from IRdfHandler.)
Public methodHandleNamespace
Handles a Namespace Definition.
(Inherited from IRdfHandler.)
Public methodHandleTriple
Handles a Triple.
(Inherited from IRdfHandler.)
Public methodStartRdf
Start the Handling of RDF.
(Inherited from IRdfHandler.)
Top
Extension Methods
  NameDescription
Public Extension MethodApply(IGraph)Overloaded.
Applies the triples of a Graph to an RDF Handler.
(Defined by HandlerExtensions.)
Public Extension MethodApply(IEnumerableTriple)Overloaded.
Applies the triples to an RDF Handler.
(Defined by HandlerExtensions.)
Top
See Also