29 references to HandleInheritability
illink (1)
Microsoft.Build.Tasks.CodeAnalysis.Sdk (1)
src\Compilers\Shared\NamedPipeUtil.cs (1)
126HandleInheritability.None);
Microsoft.CodeAnalysis.CSharp.CommandLine.UnitTests (1)
CommandLineTests.cs (1)
176using (var mmf = MemoryMappedFile.CreateFromFile(fileStream, "xmlMap", 0, MemoryMappedFileAccess.Read, HandleInheritability.None, leaveOpen: true))
Microsoft.CodeAnalysis.VisualBasic.CommandLine.UnitTests (1)
CommandLineTests.vb (1)
268Using mmf = MemoryMappedFile.CreateFromFile(fileStream, "xmlMap", 0, MemoryMappedFileAccess.Read, HandleInheritability.None, leaveOpen:=True)
Microsoft.CodeAnalysis.Workspaces.MSBuild (1)
src\Compilers\Shared\NamedPipeUtil.cs (1)
126HandleInheritability.None);
netstandard (1)
netstandard.cs (1)
928[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.IO.HandleInheritability))]
Replay (1)
src\Compilers\Shared\NamedPipeUtil.cs (1)
126HandleInheritability.None);
System.Core (1)
System.Core.cs (1)
98[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.IO.HandleInheritability))]
System.IO.MemoryMappedFiles (5)
artifacts\obj\System.IO.MemoryMappedFiles\Debug\net10.0\System.IO.MemoryMappedFiles.notsupported.cs (5)
27public static System.IO.MemoryMappedFiles.MemoryMappedFile CreateFromFile(System.IO.FileStream fileStream, string? mapName, long capacity, System.IO.MemoryMappedFiles.MemoryMappedFileAccess access, System.IO.HandleInheritability inheritability, bool leaveOpen) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_MemoryMappedFiles); } 28public static System.IO.MemoryMappedFiles.MemoryMappedFile CreateFromFile(Microsoft.Win32.SafeHandles.SafeFileHandle fileHandle, string? mapName, long capacity, System.IO.MemoryMappedFiles.MemoryMappedFileAccess access, System.IO.HandleInheritability inheritability, bool leaveOpen) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_MemoryMappedFiles); } 36public static System.IO.MemoryMappedFiles.MemoryMappedFile CreateNew(string? mapName, long capacity, System.IO.MemoryMappedFiles.MemoryMappedFileAccess access, System.IO.MemoryMappedFiles.MemoryMappedFileOptions options, System.IO.HandleInheritability inheritability) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_MemoryMappedFiles); } 42public static System.IO.MemoryMappedFiles.MemoryMappedFile CreateOrOpen(string mapName, long capacity, System.IO.MemoryMappedFiles.MemoryMappedFileAccess access, System.IO.MemoryMappedFiles.MemoryMappedFileOptions options, System.IO.HandleInheritability inheritability) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_MemoryMappedFiles); } 56public static System.IO.MemoryMappedFiles.MemoryMappedFile OpenExisting(string mapName, System.IO.MemoryMappedFiles.MemoryMappedFileRights desiredAccessRights, System.IO.HandleInheritability inheritability) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_MemoryMappedFiles); }
System.IO.Pipes (4)
artifacts\obj\System.IO.Pipes\Debug\net10.0\System.IO.Pipes.notsupported.cs (4)
33public AnonymousPipeServerStream(System.IO.Pipes.PipeDirection direction, System.IO.HandleInheritability inheritability) : base (default(System.IO.Pipes.PipeDirection), default(int)) { throw new System.PlatformNotSupportedException(System.SR.Pipes_PlatformNotSupported); } 34public AnonymousPipeServerStream(System.IO.Pipes.PipeDirection direction, System.IO.HandleInheritability inheritability, int bufferSize) : base (default(System.IO.Pipes.PipeDirection), default(int)) { throw new System.PlatformNotSupportedException(System.SR.Pipes_PlatformNotSupported); } 49public NamedPipeClientStream(string serverName, string pipeName, System.IO.Pipes.PipeAccessRights desiredAccessRights, PipeOptions options, System.Security.Principal.TokenImpersonationLevel impersonationLevel, HandleInheritability inheritability) : base(default(System.IO.Pipes.PipeDirection), default(int)) { throw new System.PlatformNotSupportedException(System.SR.Pipes_PlatformNotSupported); } 53public NamedPipeClientStream(string serverName, string pipeName, System.IO.Pipes.PipeDirection direction, System.IO.Pipes.PipeOptions options, System.Security.Principal.TokenImpersonationLevel impersonationLevel, System.IO.HandleInheritability inheritability) : base (default(System.IO.Pipes.PipeDirection), default(int)) { throw new System.PlatformNotSupportedException(System.SR.Pipes_PlatformNotSupported); }
System.IO.Pipes.AccessControl (3)
artifacts\obj\System.IO.Pipes.AccessControl\Debug\net10.0\System.IO.Pipes.AccessControl.notsupported.cs (3)
11public static System.IO.Pipes.AnonymousPipeServerStream Create(System.IO.Pipes.PipeDirection direction, System.IO.HandleInheritability inheritability, int bufferSize, System.IO.Pipes.PipeSecurity? pipeSecurity) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_AccessControl); } 15public static System.IO.Pipes.NamedPipeServerStream Create(string pipeName, System.IO.Pipes.PipeDirection direction, int maxNumberOfServerInstances, System.IO.Pipes.PipeTransmissionMode transmissionMode, System.IO.Pipes.PipeOptions options, int inBufferSize, int outBufferSize, System.IO.Pipes.PipeSecurity? pipeSecurity, System.IO.HandleInheritability inheritability = System.IO.HandleInheritability.None, System.IO.Pipes.PipeAccessRights additionalAccessRights = default) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_AccessControl); }
System.Reflection.Metadata (2)
System\Reflection\Internal\MemoryBlocks\StreamMemoryBlockProvider.cs (1)
133inheritability: HandleInheritability.None,
System\Reflection\Metadata\MetadataReader.netstandard.cs (1)
91fileStream, null, fileStream.Length, MemoryMappedFileAccess.Read, HandleInheritability.None, true);
System.Runtime (1)
artifacts\obj\System.Runtime\Debug\net10.0\System.Runtime.Forwards.cs (1)
313[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.IO.HandleInheritability))]
System.Runtime.Handles (1)
System.Runtime.Handles.cs (1)
5[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.IO.HandleInheritability))]
System.ServiceModel.NetNamedPipe (3)
System\ServiceModel\Channels\PipeConnectionInitiator.cs (3)
180namedPipeClient = new NamedPipeClientStream(".", resolvedAddress, PipeDirection.InOut, PipeOptions.Asynchronous, TokenImpersonationLevel.Anonymous, HandleInheritability.None); 271HandleInheritability.None); 278HandleInheritability.None);
vbc (1)
src\Compilers\Shared\NamedPipeUtil.cs (1)
126HandleInheritability.None);
VBCSCompiler (1)
src\Compilers\Shared\NamedPipeUtil.cs (1)
126HandleInheritability.None);