コード例 #1
0
        // 函数调用前后做的事情
        // 对象创建前后做的事情
        // 创建出来的对象应该与原基类相同,
        // 对象的属性不应该在代理过程中有改动
        // 是否可继承,是否可创建对象

        // 可继承的类的Proxy
        public object Build(Type type, ProxyOption option)
        {
            // 判断类型的属性
            ////是否可继承

            // 获取所有需要反射的类和其接口
            List <Type> list = new List <Type>();

            list.Add(type);
            list.AddRange(type.GetInterfaces());
            return(null);
        }
コード例 #2
0
        public Type Build(ProxyOption option)
        {
            // ClassGenerator classGenerator = new ClassGenerator(baseType.Name,);

            // foreach (var item in option.Wrappers)
            // {
            // switch (item.Intent)
            // {
            // case ProxyIntent.AddBeforeAction:
            // _cache[""] as ModuleBuilder

            // item.TargetType

            // case ProxyIntent.AddAfterAction:
            // }
            // }
            return(null);
        }