System.Security.AccessControl.Privilege.Privilege C# (CSharp) Method

Privilege() public method

public Privilege ( string privilegeName ) : Microsoft.Win32
privilegeName string
return Microsoft.Win32
        public Privilege(string privilegeName)
        {
            if (privilegeName == null)
            {
                throw new ArgumentNullException(nameof(privilegeName));
            }
            Contract.EndContractBlock();

            this.luid = LuidFromPrivilege(privilegeName);
        }
        #endregion