diff --git a/Falcon.SugarApi/Proxy/Proxy.cs b/Falcon.SugarApi/Proxy/Proxy.cs
index bdeb821..98069b7 100644
--- a/Falcon.SugarApi/Proxy/Proxy.cs
+++ b/Falcon.SugarApi/Proxy/Proxy.cs
@@ -6,30 +6,25 @@ namespace Falcon.SugarApi.Proxy
/// 对象代理接口
///
/// 代理的对象类型
- public abstract class Proxy
+ public abstract class Proxy:ProxyBase where T:class
{
///
/// 通过传入代理对象生成代理
///
/// 要代理的对象
/// 代理对象为空
- public Proxy(T target) {
- if(target == null) {
- throw new ArgumentNullException(nameof(target));
- }
- Target = target;
- }
+ public Proxy(T target):base(target) {}
///
/// 代理对象
///
- public T Target { get; }
+ public new T? Target => base.Target as T;
///
/// 获取对象属性的代理
///
/// 属性名称
///
/// 没有找到属性
- public virtual object? GetFunc(string prop) {
+ public override object? GetFunc(string prop) {
var p = typeof(T).GetProperty(prop) ?? throw new PropNotFoundException(prop);
return p.GetValue(this.Target);
}
@@ -39,7 +34,7 @@ namespace Falcon.SugarApi.Proxy
/// 属性名称
/// 属性值
/// 没有找到属性
- public virtual void SetAction(string prop,object? value) {
+ public override void SetAction(string prop,object? value) {
var p = typeof(T).GetProperty(prop) ?? throw new PropNotFoundException(prop);
p.SetValue(this.Target,value);
}
@@ -50,7 +45,7 @@ namespace Falcon.SugarApi.Proxy
/// 传入的参数
/// 方法返回值
/// 没有找到方法
- public virtual object? Invoke(string name,params object[] args) {
+ public override object? Invoke(string name,params object[] args) {
var m = typeof(T).GetMethod(name) ?? throw new MethodNotFoundException(name);
return m.Invoke(this.Target,args);
}
diff --git a/Falcon.SugarApi/Proxy/ProxyBase.cs b/Falcon.SugarApi/Proxy/ProxyBase.cs
new file mode 100644
index 0000000..76e6fab
--- /dev/null
+++ b/Falcon.SugarApi/Proxy/ProxyBase.cs
@@ -0,0 +1,53 @@
+namespace Falcon.SugarApi.Proxy
+{
+ ///
+ /// 对象代理接口
+ ///
+ public abstract class ProxyBase
+ {
+ ///
+ /// 对象代理接口
+ ///
+ /// 代理对象
+ public ProxyBase(object target) {
+ Target = target;
+ }
+
+ ///
+ /// 代理对象
+ ///
+ public virtual object Target { get; }
+ ///
+ /// 获取对象属性的代理
+ ///
+ /// 属性名称
+ ///
+ /// 没有找到属性
+ public virtual object? GetFunc(string prop) {
+ var p = this.Target.GetType().GetProperty(prop) ?? throw new PropNotFoundException(prop);
+ return p.GetValue(this.Target);
+ }
+ ///
+ /// 设置对象属性的代理
+ ///
+ /// 属性名称
+ /// 属性值
+ /// 没有找到属性
+ public virtual void SetAction(string prop,object? value) {
+ var p = this.Target.GetType().GetProperty(prop) ?? throw new PropNotFoundException(prop);
+ p.SetValue(this.Target,value);
+ }
+ ///
+ /// 执行代理对象方法
+ ///
+ /// 方法名称
+ /// 传入的参数
+ /// 方法返回值
+ /// 没有找到方法
+ public virtual object? Invoke(string name,params object[] args) {
+ var m = this.Target.GetType().GetMethod(name) ?? throw new MethodNotFoundException(name);
+ return m.Invoke(this.Target,args);
+ }
+
+ }
+}
\ No newline at end of file