public static bool IsComplex(this OdcmParameter property)
        {
            string t = property.GetTypeString();

            return(!(t == "Integer" || t == "java.util.UUID" || t == "java.util.Calendar" ||
                     t == "byte[]" || t == "String" || "long" == t || "Byte[]" == t));
        }
        public static bool IsComplex(this OdcmParameter property)
        {
            string t = property.GetTypeString();

            return(!(t == "Integer" || t == "java.util.UUID" || t == "java.util.Calendar" ||
                     t == "byte[]" || t == "String" || "long" == t || "Byte[]" == t ||
                     t == "Short" || t == "com.microsoft.graph.model.DateOnly"));
        }
示例#3
0
        public static bool IsComplex(this OdcmParameter property)
        {
            string t = property.GetTypeString();

            return(t.IsComplex());
        }