當前位置: 首頁>>代碼示例>>C#>>正文


C# WindowsPrincipal類代碼示例

本文整理匯總了C#中System.Security.Principal.WindowsPrincipal的典型用法代碼示例。如果您正苦於以下問題:C# WindowsPrincipal類的具體用法?C# WindowsPrincipal怎麽用?C# WindowsPrincipal使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。


WindowsPrincipal類屬於System.Security.Principal命名空間,在下文中一共展示了WindowsPrincipal類的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的C#代碼示例。

示例1: DemonstrateWindowsBuiltInRoleEnum

//引入命名空間
using System;
using System.Threading;
using System.Security.Permissions;
using System.Security.Principal;

class SecurityPrincipalDemo
{
    public static void DemonstrateWindowsBuiltInRoleEnum()
    {
        AppDomain myDomain = Thread.GetDomain();

        myDomain.SetPrincipalPolicy(PrincipalPolicy.WindowsPrincipal);
        WindowsPrincipal myPrincipal = (WindowsPrincipal)Thread.CurrentPrincipal;
        Console.WriteLine("{0} belongs to: ", myPrincipal.Identity.Name.ToString());
        Array wbirFields = Enum.GetValues(typeof(WindowsBuiltInRole));
        foreach (object roleName in wbirFields)
        {
            try
            {
                // Cast the role name to a RID represented by the WindowsBuildInRole value.
                Console.WriteLine("{0}? {1}.", roleName,
                    myPrincipal.IsInRole((WindowsBuiltInRole)roleName));
                Console.WriteLine("The RID for this role is: " + ((int)roleName).ToString());
            }
            catch (Exception)
            {
                Console.WriteLine("{0}: Could not obtain role for this RID.",
                    roleName);
            }
        }
        // Get the role using the string value of the role.
        Console.WriteLine("{0}? {1}.", "Administrators",
            myPrincipal.IsInRole("BUILTIN\\" + "Administrators"));
        Console.WriteLine("{0}? {1}.", "Users",
            myPrincipal.IsInRole("BUILTIN\\" + "Users"));
        // Get the role using the WindowsBuiltInRole enumeration value.
        Console.WriteLine("{0}? {1}.", WindowsBuiltInRole.Administrator,
           myPrincipal.IsInRole(WindowsBuiltInRole.Administrator));
        // Get the role using the WellKnownSidType.
        SecurityIdentifier sid = new SecurityIdentifier(WellKnownSidType.BuiltinAdministratorsSid, null);
        Console.WriteLine("WellKnownSidType BuiltinAdministratorsSid  {0}? {1}.", sid.Value, myPrincipal.IsInRole(sid));
    }

    public static void Main()
    {
        DemonstrateWindowsBuiltInRoleEnum();
    }
}
開發者ID:.NET開發者,項目名稱:System.Security.Principal,代碼行數:49,代碼來源:WindowsPrincipal

示例2: new WindowsPrincipal(WindowsIdentity wi)

//引入命名空間
using System;
using System.Security.Principal;


class MainClass
{
  public static void Main() 
  {
    WindowsIdentity wi = WindowsIdentity.GetCurrent();

    
    WindowsPrincipal prin = new WindowsPrincipal(wi);

    Console.WriteLine("Principal information:");
    Console.WriteLine("  Authentication Type: {0}", prin.Identity.AuthenticationType);
    Console.WriteLine("  Is authenticated: {0}", prin.Identity.IsAuthenticated);
    Console.WriteLine("  Name: {0}", prin.Identity.Name);

  }
}
開發者ID:C#程序員,項目名稱:System.Security.Principal,代碼行數:21,代碼來源:WindowsPrincipal


注:本文中的System.Security.Principal.WindowsPrincipal類示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。