MVC ActionFilter 类似于 WCF 的属性
有没有一种方法可以为 WCF 创建自定义方法属性,使我可以轻松地使用预过滤器装饰服务方法,就像 MVC 使用操作过滤器一样。我计划使用它们进行身份验证和授权。这是针对其请求携带身份验证 cookie 的 RESTful 服务。
我更感兴趣的是如何创建属性而不是身份验证方面。 HTTP 工具包提供什么功能吗?
谢谢
Is there a way I can create custom method attributes for WCF that allow me to easily decorate a service method with a pre filter much like MVC uses action filters. I plan to use them for authentication and authorization. This is for a RESTful service whose requests are carrying an authentication cookie.
I am more interested in how to create the attributes rather than the authentication side of things. Does the HTTP Toolkit offer anything?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
WCF 在很多方面都具有出色的可扩展性。您可以将许多功能封装到例如服务和/或操作行为中,这些行为可以通过属性附加到服务或操作。
查看当前关于 WCF 扩展性的 DotNet Rocks TV Show #202 with Miguel Castro - 它应该让您了解什么是可能的(当然还有更多可能!)
另请参阅:
WCF has great extensibility - in many ways. You can encapsulate lots of functionality into e.g. service and/or operation behaviors, which can be attached to a service or operation by means of an attribute.
Check out the current DotNet Rocks TV Show #202 with Miguel Castro on WCF extensibility - it should give you an idea of what is possible (and lots more is possible, for sure!)
See also: