System.Security.AccessControl.FileSystemSecurity.Persist C# (CSharp) Method

Persist() private method

private Persist ( SafeFileHandle handle, String fullPath ) : void
handle SafeFileHandle
fullPath String
return void
        internal void Persist(SafeFileHandle handle, String fullPath)
        {
            WriteLock();

            try
            {
                AccessControlSections persistRules = GetAccessControlSectionsFromChanges();
                base.Persist(handle, persistRules);
                OwnerModified = GroupModified = AuditRulesModified = AccessRulesModified = false;
            }
            finally
            {
                WriteUnlock();
            }
        }

Same methods

FileSystemSecurity::Persist ( String fullPath ) : void