System.Security.AccessControl.CommonSecurityDescriptor.RemoveControlFlags C# (CSharp) Method

RemoveControlFlags() private method

private RemoveControlFlags ( ControlFlags flags ) : void
flags ControlFlags
return void
        internal void RemoveControlFlags(ControlFlags flags)
        {
            unchecked
            {
                _rawSd.SetFlags(_rawSd.ControlFlags & ~flags);
            }
        }