Class StripStringHandler
An RDF Handler which wraps another handler, stripping explicit xsd:string datatypes on object literals.
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
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<T><IRdfHandler> |
Methods
| Improve this Doc View SourceEndRdfInternal(bool)
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 |
---|---|---|
string | prefix | |
System.Uri | namespaceUri |
Returns
Type | Description |
---|---|
System.Boolean |
Overrides
| Improve this Doc View SourceHandleQuadInternal(Triple, IRefNode)
Handles triples by stripping explicit xsd:string datatype on object literals before delegating to inner handler.
Declaration
protected override bool HandleQuadInternal(Triple t, IRefNode graph)
Parameters
Type | Name | Description |
---|---|---|
Triple | t | |
IRefNode | graph |
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()