SharpCifs.Smb.Ace.IsInherited C# (CSharp) Method

IsInherited() public method

Returns true if this ACE is an inherited ACE and false if it is a direct ACE.
Returns true if this ACE is an inherited ACE and false if it is a direct ACE.

Note: For reasons not fully understood, FLAGS_INHERITED may not be set within all security descriptors even though the ACE was in face inherited. If an inherited ACE is added to a parent the Windows ACL editor will rebuild all children ACEs and set this flag accordingly.

public IsInherited ( ) : bool
return bool
		public virtual bool IsInherited()
		{
			return (Flags & FlagsInherited) != 0;
		}