Does WCF have an equivalent of MVC's [Authorize] attribute?

后端 未结 3 1026
感情败类
感情败类 2020-12-17 17:48

I want to decorate certain Operation Contracts with an attribute to authorize the caller by custom logic, something like this:

[ServiceBehavior]
public class         


        
3条回答
  •  南笙
    南笙 (楼主)
    2020-12-17 18:18

    Not out of the box - but WCF top-guru Juval Löwy had a very interesting article in MSDN Magazine about Declarative WCF Security which goes in the same direction.

    Juval identified several key security scenarios, and wrapped each of them up into a WCF service behavior to be applied as an attribute on your service class on the server side. Quite an interesting read indeed !

提交回复
热议问题