From d32e95cdff658da029e19aa11568bb851dd70020 Mon Sep 17 00:00:00 2001
From: Falcon <12919280+falconfly@user.noreply.gitee.com>
Date: Thu, 24 Oct 2024 11:24:38 +0800
Subject: [PATCH] =?UTF-8?q?=E4=BB=A3=E7=90=86=E7=B1=BB=E5=88=86=E4=B8=BA?=
=?UTF-8?q?=E6=99=AE=E9=80=9A=E4=BB=A3=E7=90=86=E5=92=8C=E6=B3=9B=E5=9E=8B?=
=?UTF-8?q?=E4=BB=A3=E7=90=86?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
Falcon.SugarApi/Proxy/Proxy.cs | 17 ++++------
Falcon.SugarApi/Proxy/ProxyBase.cs | 53 ++++++++++++++++++++++++++++++
2 files changed, 59 insertions(+), 11 deletions(-)
create mode 100644 Falcon.SugarApi/Proxy/ProxyBase.cs
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