是否可以在没有基类或接口的情况下创建动态代理?

发布于 2024-11-17 13:23:26 字数 93 浏览 4 评论 0原文

是否可以使用诸如 Castle Dynamic Proxy 之类的通用库创建动态代理,而无需任何基类或接口?我确实有兴趣在运行时拥有动态的动态类。

Is it possible to create a dynamic proxy using common libraries like Castle Dynamic Proxy without having any base class or interface? I'm indeed interested to have dynamic on-the-fly classes in run-time.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

静谧 2024-11-24 13:23:26

当然,使用 Reflection.Emit 烘焙你的接口,然后将生成的接口类型传递给 CreateInterfaceProxyWithoutTarget 并提供拦截器。

请记住,您无法卸载类型,只能卸载应用程序域,因此,如果您要创建数千种类型,您可能最终会陷入性能受损的世界。

Sure, use Reflection.Emit to bake your interface, then pass the generated interface type to CreateInterfaceProxyWithoutTarget and provide interceptors.

Just keep in mind that you cannot unload a type, only an appdomain, so if you are going to create thousands of types you might end-up in a world of hurt performance-wise.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文