C#4 拦截方法调用
我有这个类:
public class MyClass {
public string GetText() {
return "text";
}
}
我想要的是有一个通用的缓存方法。如果调用 GetText,我想拦截此调用,例如;
public T MethodWasCalled<T>(MethodInfo method) {
if(Cache.Contains(method.Name)) {
return Cache[method.Name] as T;
}
else {
T result = method.Invoke();
Cache.Add(method.Name, result);
return result;
}
}
我希望以上解释了我想要实现的目标。对此有什么好的策略呢?
I have this class:
public class MyClass {
public string GetText() {
return "text";
}
}
What I want is to have a generic caching method. If GetText is called, I want to intercept this call, something like;
public T MethodWasCalled<T>(MethodInfo method) {
if(Cache.Contains(method.Name)) {
return Cache[method.Name] as T;
}
else {
T result = method.Invoke();
Cache.Add(method.Name, result);
return result;
}
}
I hope the above explains what I want to accomplish. What would be a good strategy for this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
PostSharp 的 Boundry Aspect 可能正是您所需要的。
一些详细说明:
PostSharp 是一个构建过程库,它在编译时将 IL 注入到二进制文件中,以公开常规 .NET 范围内不可用的功能。
边界方面允许您在成员访问之前和之后执行代码。实际上“包装”了调用,让您可以执行奇特的逻辑。
PostSharp's Boundry Aspect may be what you need.
Some Elaboration:
PostSharp is a build-process library that injects IL into your binary at compile time to expose functionality not availiable within the bounds of regular .NET.
The Boundry Aspect allows you to execute code before and after a member-access. In-effect "wrapping" the call, letting you do fancy logic.
如果您使用的是 .NET 4,请查看
Lazy< T>
。lambda 内的代码只会执行一次。默认情况下它甚至是线程安全的。
If you're using .NET 4, take a look at
Lazy<T>
.The code inside the lambda will only be executed once. It's even threadsafe by default.