.NET Framework 中使用代理模式的位置
我知道 Web 服务和 WCF 服务是代理模式的示例,那么在 .NET 领域中还有哪些地方使用了代理模式?
I know Web Services and WCF services are examples of the proxy pattern, where else in .NET land is the proxy pattern utilized?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
COM 可调用包装器 (CCW) 和运行时可调用包装器 (RCW) 是使用代理的经典示例。 .NET Remoting 也是如此。
COM-Callable Wrappers (CCW) and Runtime-Callable Wrappers (RCW) are classic examples of the use of Proxies. Likewise for .NET Remoting.