欢迎来到计算机考试题库网 考试题库官网
全部科目 > 计算机考试试题及答案解析

单项选择题

You are developing an application that uses role-based security. The prinicipal policy of the application domain is configured during startup with the following code:AppDomain.CurrentDomain.SetPrincipalPolicy(PrincipalPolicy.WindowsPrincipal);  You need to restrict access to one of the methods in your application so that only members of the local Administrators group can call the method. Which attribute should you place on the method?()

    A.[PrincipalPermission (SecurityAction.Demand, Name = @"BUILTIN\Administrators")]
    B.[PrincipalPermission (SecurityAction.Demand, Role = @"BUILTIN\Administrators")]
    C.[PrincipalPermission (SecurityAction.Assert, Name = @"BUILTIN\Administrators")]
    D.[PrincipalPermission (SecurityAction.Assert, Role = @"BUILTIN\Administrators")]

点击查看答案

相关考题