LuidFromPrivilege() private static méthode

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