Reflect_OBJ_INTERFACE.cs 821 Bytes
Newer Older
潘栩锋's avatar
潘栩锋 committed
1 2 3 4 5 6 7 8 9 10 11
using Newtonsoft.Json.Linq;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace FObjBase.Reflect
{
    public class Reflect_OBJ_INTERFACE
    {
12 13 14
        public const string asyncDelegate = "asyncDelegate";
        public const string asyncContext = "asyncContext";

潘栩锋's avatar
潘栩锋 committed
15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
        #region Push
        public const UInt16 PUSH_Event = 101;
        public const UInt16 PUSH_PropertyChanged = 102;
        #endregion
        #region CallFunction
        public const UInt16 CALL_GetAllProperties = 100;
        public const UInt16 CALL_SetProperty = 101;
        public const UInt16 CALL_MethodInvoke = 102;
        #endregion

        public class ReflectData
        {
            public string name;
            public JToken data;
        }
    }
}