8 references to Inheritable
System.CodeDom (1)
System\CodeDom\Compiler\Executor.cs (1)
16new FileStream(file, FileMode.CreateNew, FileAccess.Write, FileShare.Read | FileShare.Inheritable);
System.IO.FileSystem.AccessControl (3)
System\IO\FileSystemAclExtensions.cs (3)
139FileShare tempshare = share & ~FileShare.Inheritable; 272Interop.Kernel32.SECURITY_ATTRIBUTES secAttrs = Interop.Kernel32.SECURITY_ATTRIBUTES.Create((share & FileShare.Inheritable) != 0); 296handle = Interop.Kernel32.CreateFile(fullPath, (int)rights, (share & ~FileShare.Inheritable), secAttrs, mode, flagsAndAttributes, IntPtr.Zero);
System.IO.MemoryMappedFiles (1)
System\IO\MemoryMappedFiles\MemoryMappedFile.Unix.cs (1)
314FileShare.ReadWrite | FileShare.Inheritable;
System.Private.CoreLib (3)
src\runtime\src\libraries\System.Private.CoreLib\src\Microsoft\Win32\SafeHandles\SafeFileHandle.Unix.cs (1)
349if ((share & FileShare.Inheritable) == 0)
src\runtime\src\libraries\System.Private.CoreLib\src\System\IO\FileStreamOptions.cs (1)
65FileShare tempshare = value & ~FileShare.Inheritable;
src\runtime\src\libraries\System.Private.CoreLib\src\System\IO\Strategies\FileStreamHelpers.cs (1)
67FileShare tempshare = share & ~FileShare.Inheritable;