示例#1
0
        /// <summary>
        /// Tests the express where-clause specified in param 'clause'
        /// </summary>
        /// <param name="clause">The express clause to test</param>
        /// <returns>true if the clause is satisfied.</returns>
        public bool ValidateClause(IfcRailingClause clause)
        {
            var retVal = false;

            try
            {
                switch (clause)
                {
                case IfcRailingClause.WR61:
                    retVal = !(Functions.EXISTS(PredefinedType)) || (PredefinedType != IfcRailingTypeEnum.USERDEFINED) || ((PredefinedType == IfcRailingTypeEnum.USERDEFINED) && Functions.EXISTS(this /* as IfcObject*/.ObjectType));
                    break;
                }
            } catch (Exception ex) {
                var log = Validation.ValidationLogging.CreateLogger <Xbim.Ifc2x3.SharedBldgElements.IfcRailing>();
                log?.LogError(string.Format("Exception thrown evaluating where-clause 'IfcRailing.{0}' for #{1}.", clause, EntityLabel), ex);
            }
            return(retVal);
        }
示例#2
0
        /// <summary>
        /// Tests the express where-clause specified in param 'clause'
        /// </summary>
        /// <param name="clause">The express clause to test</param>
        /// <returns>true if the clause is satisfied.</returns>
        public bool ValidateClause(IfcRailingClause clause)
        {
            var retVal = false;

            try
            {
                switch (clause)
                {
                case IfcRailingClause.CorrectPredefinedType:
                    retVal = !(Functions.EXISTS(PredefinedType)) || (PredefinedType != IfcRailingTypeEnum.USERDEFINED) || ((PredefinedType == IfcRailingTypeEnum.USERDEFINED) && Functions.EXISTS(this /* as IfcObject*/.ObjectType));
                    break;

                case IfcRailingClause.CorrectTypeAssigned:
                    retVal = (Functions.SIZEOF(IsTypedBy) == 0) || (Functions.TYPEOF(this /* as IfcObject*/.IsTypedBy.ItemAt(0).RelatingType).Contains("IFC4.IFCRAILINGTYPE"));
                    break;
                }
            } catch (Exception ex) {
                var log = Validation.ValidationLogging.CreateLogger <Xbim.Ifc4.SharedBldgElements.IfcRailing>();
                log?.LogError(string.Format("Exception thrown evaluating where-clause 'IfcRailing.{0}' for #{1}.", clause, EntityLabel), ex);
            }
            return(retVal);
        }