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