7 references to SafeHandle
Microsoft.DotNet.HotReload.Watch (2)
Process\ProcessRunner.cs (1)
379process.SafeHandle.Signal(signal);
UI\PhysicalConsole.cs (1)
65process.SafeHandle.Signal(PosixSignal.SIGTERM);
Microsoft.TestPlatform.PlatformAbstractions (1)
netcore\System\ProcessHelper.cs (1)
29return Process.GetProcessById(processId).SafeHandle.DangerousGetHandle();
System.Diagnostics.Process (4)
System\Diagnostics\Process.cs (1)
131public IntPtr Handle => SafeHandle.DangerousGetHandle();
System\Diagnostics\Process.Scenarios.cs (3)
233exitStatus = process.SafeHandle.WaitForExitOrKillOnTimeout(remaining); 237exitStatus = process.SafeHandle.WaitForExit(); 305ProcessExitStatus exitStatus = await process.SafeHandle.WaitForExitOrKillOnCancellationAsync(cancellationToken).ConfigureAwait(false);