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

HasBooleanDatatype() private method

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