Get Current Windows Identity : Windows Principal : Windows C# Source Code


Custom Search

C# Source Code » Windows » Windows Principal »

 

Get Current Windows Identity








    


using System;
using System.Security.Principal;

class MainClass {
    public static void Main(string[] args) {
        WindowsIdentity identity = WindowsIdentity.GetCurrent();
        WindowsPrincipal principal = new WindowsPrincipal(identity);
        foreach (string role in args) {
            Console.WriteLine("Is {0} a member of {1}? = {2}",
             identity.Name, role, principal.IsInRole(role));
        }

    }
}
           
       
    
   
  
   







HTML code for linking to this page:

Follow Navioo On Twitter

C# Source Code

 Navioo Windows
» Windows Principal