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, 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
| Improve this Doc View SourceNullHandler()
Creates a new Null Handler.
Declaration
public NullHandler()
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.
Properties
| Improve this Doc View SourceAcceptsAll
Indicates that the Handler accepts all Triples.
Declaration
public override bool AcceptsAll { get; }
Property Value
Type | Description |
---|---|
System.Boolean |
Overrides
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.
Methods
| Improve this Doc 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 |
---|---|
System.Boolean |
Overrides
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.
HandleTripleInternal(Triple)
Handles a Triple by doing nothing.
Declaration
protected override bool HandleTripleInternal(Triple t)
Parameters
Type | Name | Description |
---|---|---|
Triple | t | Triple. |
Returns
Type | Description |
---|---|
System.Boolean |
Overrides
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.