有没有办法控制对.net中某些角色的方法的访问。像
class A
{
//should only be called by Admins**
public void Method1() { }
//should only be called by Admins and PM's**
public void Method2() { }
}
我使用 Windows 身份验证仅用于检索用户名,仅此而已。用户角色在不同的应用程序中维护。我认为可以通过属性实现,但我不确定如何