RDFSharp.Model.RDFTypedLiteral.HasTimespanDatatype C# (CSharp) Method

HasTimespanDatatype() private method

Checks if the datatype of this typed literal is compatible with timespan
private HasTimespanDatatype ( ) : System.Boolean
return System.Boolean
        internal Boolean HasTimespanDatatype()
        {
            return (this.Datatype.Equals(RDFModelEnums.RDFDatatypes.XSD_DURATION));
        }