Class AnyHandler
A RDF Handler which just determines whether any Triples are present terminating parsing as soon as the first triple is received.
Inherited Members
Namespace: VDS.RDF.Parsing.Handlers
Assembly: dotNetRdf.dll
Syntax
public class AnyHandler : BaseRdfHandler, ICommentRdfHandler, IRdfHandler, INodeFactory
Constructors
| Edit this page View SourceAnyHandler()
Creates a new Any Handler.
Declaration
public AnyHandler()
Properties
| Edit this page View SourceAcceptsAll
Gets that this handler does not accept all triples since it stops as soon as it sees the first triple.
Declaration
public override bool AcceptsAll { get; }
Property Value
Type | Description |
---|---|
bool |
Overrides
| Edit this page View SourceAny
Gets whether any Triples have been parsed.
Declaration
public bool Any { get; }
Property Value
Type | Description |
---|---|
bool |
Methods
| Edit this page View SourceHandleBaseUriInternal(Uri)
Handles Base URIs by ignoring them.
Declaration
protected override bool HandleBaseUriInternal(Uri baseUri)
Parameters
Type | Name | Description |
---|---|---|
Uri | baseUri | Base URI. |
Returns
Type | Description |
---|---|
bool |
Overrides
| Edit this page View SourceHandleCommentInternal(string)
Handles Comments by ignoring them.
Declaration
protected override bool HandleCommentInternal(string text)
Parameters
Type | Name | Description |
---|---|---|
string | text | Comment text. |
Returns
Type | Description |
---|---|
bool |
Overrides
| Edit this page View SourceHandleNamespaceInternal(string, Uri)
Handles Namespaces by ignoring them.
Declaration
protected override bool HandleNamespaceInternal(string prefix, Uri namespaceUri)
Parameters
Type | Name | Description |
---|---|---|
string | prefix | Prefix. |
Uri | namespaceUri | Namespace URI. |
Returns
Type | Description |
---|---|
bool |
Overrides
| Edit this page View SourceHandleQuadInternal(Triple, IRefNode)
Handles Triples by setting the Any flag and terminating parsing.
Declaration
protected override bool HandleQuadInternal(Triple t, IRefNode graph)
Parameters
Type | Name | Description |
---|---|---|
Triple | t | Triple. |
IRefNode | graph | The graph containing the triple. |
Returns
Type | Description |
---|---|
bool |
Overrides
| Edit this page View SourceHandleTripleInternal(Triple)
Handles Triples by setting the Any flag and terminating parsing.
Declaration
protected override bool HandleTripleInternal(Triple t)
Parameters
Type | Name | Description |
---|---|---|
Triple | t | Triple. |
Returns
Type | Description |
---|---|
bool |
Overrides
| Edit this page View SourceStartRdfInternal()
Starts handling RDF by resetting the Any flag to false.
Declaration
protected override void StartRdfInternal()