SecurityCallContext.IsUserInRole(String, String) 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
验证指定的用户属于指定的角色。
public:
bool IsUserInRole(System::String ^ user, System::String ^ role);
public bool IsUserInRole (string user, string role);
member this.IsUserInRole : string * string -> bool
Public Function IsUserInRole (user As String, role As String) As Boolean
参数
- user
- String
指定的用户。
- role
- String
指定的角色。
返回
如果指定的用户是指定的角色的成员,则为 true
;否则为 false
。