RDFSharp.Model.RDFTypedLiteral.HasBooleanDatatype C# (CSharp) 메소드

HasBooleanDatatype() 개인적인 메소드

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