LuidFromPrivilege() private static method

private static LuidFromPrivilege ( string privilege ) : Interop.Advapi32.LUID
privilege string
return Interop.Advapi32.LUID
Example #1
0
 public Privilege(string privilegeName)
 {
     if (privilegeName == null)
     {
         throw new ArgumentNullException("privilegeName");
     }
     this.luid = Privilege.LuidFromPrivilege(privilegeName);
 }