UniqueBlankNodesHandler Class |
Namespace: VDS.RDF.Parsing.Handlers
The UniqueBlankNodesHandler type exposes the following members.
Name | Description | |
---|---|---|
![]() | UniqueBlankNodesHandler |
Creates a new Unique Blank Nodes handler.
|
Name | Description | |
---|---|---|
![]() | AcceptsAll |
Gets whether the inner handler accepts all.
(Overrides BaseRdfHandler.AcceptsAll.) |
![]() | InnerHandlers |
Gets the inner handler.
|
![]() | NodeFactory |
Gets/Sets the in-use Node Factory.
(Inherited from BaseHandler.) |
Name | Description | |
---|---|---|
![]() | CreateBlankNode() |
Creates a Blank Node.
(Inherited from BaseHandler.) |
![]() | CreateBlankNode(String) |
Creates a Blank Node.
(Overrides BaseHandler.CreateBlankNode(String).) |
![]() | CreateGraphLiteralNode() |
Creates a Graph Literal Node.
(Inherited from BaseHandler.) |
![]() | CreateGraphLiteralNode(IGraph) |
Creates a Graph Literal Node with the given sub-graph.
(Inherited from BaseHandler.) |
![]() | CreateLiteralNode(String) |
Creates a Literal Node.
(Inherited from BaseHandler.) |
![]() | CreateLiteralNode(String, String) |
Creates a Literal Node with the given Language.
(Inherited from BaseHandler.) |
![]() | CreateLiteralNode(String, Uri) |
Creates a Literal Node with the given Datatype.
(Inherited from BaseHandler.) |
![]() | CreateUriNode |
Creates a URI Node.
(Inherited from BaseHandler.) |
![]() | CreateVariableNode |
Creates a Variable Node.
(Inherited from BaseHandler.) |
![]() | EndRdf |
Ends the Handling of RDF.
(Inherited from BaseRdfHandler.) |
![]() | EndRdfInternal |
Ends handling RDF.
(Overrides BaseRdfHandler.EndRdfInternal(Boolean).) |
![]() | Equals | Determines whether the specified object is equal to the current object. (Inherited from Object.) |
![]() | Finalize | Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. (Inherited from Object.) |
![]() | GetHashCode | Serves as the default hash function. (Inherited from Object.) |
![]() | GetNextBlankNodeID |
Gets the next available Blank Node ID.
(Inherited from BaseHandler.) |
![]() | GetType | Gets the Type of the current instance. (Inherited from Object.) |
![]() | HandleBaseUri |
Handles Base URI declarations.
(Inherited from BaseRdfHandler.) |
![]() | HandleBaseUriInternal |
Handles a Base URI declaration.
(Overrides BaseRdfHandler.HandleBaseUriInternal(Uri).) |
![]() | HandleNamespace |
Handles Namespace declarations.
(Inherited from BaseRdfHandler.) |
![]() | HandleNamespaceInternal |
Handles a Namespace declaration.
(Overrides BaseRdfHandler.HandleNamespaceInternal(String, Uri).) |
![]() | HandleTriple |
Handles Triples.
(Inherited from BaseRdfHandler.) |
![]() | HandleTripleInternal |
Handles a Triple.
(Overrides BaseRdfHandler.HandleTripleInternal(Triple).) |
![]() | MemberwiseClone | Creates a shallow copy of the current Object. (Inherited from Object.) |
![]() | StartRdf |
Starts the Handling of RDF.
(Inherited from BaseRdfHandler.) |
![]() | StartRdfInternal |
Starts handling RDF.
(Overrides BaseRdfHandler.StartRdfInternal().) |
![]() | ToString | Returns a string that represents the current object. (Inherited from Object.) |
Name | Description | |
---|---|---|
![]() | Apply(IGraph) | Overloaded.
Applies the triples of a Graph to an RDF Handler.
(Defined by HandlerExtensions.) |
![]() | Apply(IEnumerable<Triple>) | Overloaded.
Applies the triples to an RDF Handler.
(Defined by HandlerExtensions.) |
In most parsing scenarios this handler is not suitable for usage as it may unintentionally modify the RDF data being parsed, in non-parsing scenarios where this handler is instead being used as a means to generate RDF data from some non-RDF source it may prove very useful.
This handler essentially works by redirecting all calls to the argument taking form of CreateBlankNode() with the non-argument form which should always generate a new blank node thus guaranteeing the uniqueness of nodes.