Class NullHandler
A RDF Handler that ignores everything it handles.
Inherited Members
Namespace: VDS.RDF.Parsing.Handlers
Assembly: dotNetRdf.dll
Syntax
public class NullHandler : BaseRdfHandler, ICommentRdfHandler, IRdfHandler, INodeFactory
Remarks
Useful if you simply want to parse some RDF to see if it parses and don't care about the actual data being parsed.
Constructors
| Edit this page View SourceNullHandler()
Creates a new Null Handler.
Declaration
public NullHandler()
Properties
| Edit this page View SourceAcceptsAll
Indicates that the Handler accepts all Triples.
Declaration
public override bool AcceptsAll { get; }
Property Value
Type | Description |
---|---|
bool |
Overrides
Methods
| Edit this page View SourceHandleQuadInternal(Triple, IRefNode)
Handles a quad by doing nothing.
Declaration
protected override bool HandleQuadInternal(Triple t, IRefNode graph)
Parameters
Type | Name | Description |
---|---|---|
Triple | t | Triple. |
IRefNode | graph | The name of the graph containing the triple. |
Returns
Type | Description |
---|---|
bool |
Overrides
| Edit this page View SourceHandleTripleInternal(Triple)
Handles a Triple by doing nothing.
Declaration
protected override bool HandleTripleInternal(Triple t)
Parameters
Type | Name | Description |
---|---|---|
Triple | t | Triple. |
Returns
Type | Description |
---|---|
bool |