示例#1
0
 public static void GetDataType(DataType obj, Zetbox.API.MethodReturnEventArgs <System.Type> e)
 {
     e.Result = Type.GetType(obj.GetDataTypeString() + ", " + Zetbox.API.Helper.InterfaceAssembly, true);
 }
示例#2
0
        public static void GetParameterType(Zetbox.App.Base.CompoundObjectParameter obj, Zetbox.API.MethodReturnEventArgs <System.Type> e)
        {
            var cls = obj.CompoundObject;

            e.Result = Type.GetType(cls.Module.Namespace + "." + cls.Name + ", " + Zetbox.API.Helper.InterfaceAssembly, true);
            BaseParameterActions.DecorateParameterType(obj, e, false);
        }
示例#3
0
 public static void GetPropertyType(Zetbox.App.Base.Property obj, Zetbox.API.MethodReturnEventArgs <System.Type> e)
 {
     throw new NotImplementedException();
 }