Class StripStringHandler
An RDF Handler which wraps another handler, stripping explicit xsd:string datatypes on object literals.
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: VDS.RDF.Parsing.Handlers
Assembly: dotNetRDF.dll
Syntax
public class StripStringHandler : BaseRdfHandler, IWrappingRdfHandler, IRdfHandler, INodeFactory
Constructors
| Improve this Doc View SourceStripStringHandler(IRdfHandler)
Creates a new StripStringHandler.
Declaration
public StripStringHandler(IRdfHandler handler)
Parameters
Type | Name | Description |
---|---|---|
IRdfHandler | handler | Inner handler to use. |
Properties
| Improve this Doc View SourceAcceptsAll
Gets whether inner handler accepts all triples.
Declaration
public override bool AcceptsAll { get; }
Property Value
Type | Description |
---|---|
System.Boolean |
Overrides
| Improve this Doc View SourceInnerHandlers
Gets the handler wrapped by this handler.
Declaration
public IEnumerable<IRdfHandler> InnerHandlers { get; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IEnumerable<IRdfHandler> |
Methods
| Improve this Doc View SourceEndRdfInternal(Boolean)
Ends inner handler.
Declaration
protected override void EndRdfInternal(bool ok)
Parameters
Type | Name | Description |
---|---|---|
System.Boolean | ok |
Overrides
| Improve this Doc View SourceHandleBaseUriInternal(Uri)
Delegates base Uri handling to inner handler.
Declaration
protected override bool HandleBaseUriInternal(Uri baseUri)
Parameters
Type | Name | Description |
---|---|---|
System.Uri | baseUri |
Returns
Type | Description |
---|---|
System.Boolean |
Overrides
| Improve this Doc View SourceHandleNamespaceInternal(String, Uri)
Delegates namespace handling to inner handler.
Declaration
protected override bool HandleNamespaceInternal(string prefix, Uri namespaceUri)
Parameters
Type | Name | Description |
---|---|---|
System.String | prefix | |
System.Uri | namespaceUri |
Returns
Type | Description |
---|---|
System.Boolean |
Overrides
| Improve this Doc View SourceHandleTripleInternal(Triple)
Handles triples by stripping explicit xsd:string datatype on object literals before delegating to inner handler.
Declaration
protected override bool HandleTripleInternal(Triple t)
Parameters
Type | Name | Description |
---|---|---|
Triple | t |
Returns
Type | Description |
---|---|
System.Boolean |
Overrides
| Improve this Doc View SourceStartRdfInternal()
Starts inner handler.
Declaration
protected override void StartRdfInternal()