4 writes to hStdInput
System (4)
compmod\microsoft\win32\NativeMethods.cs (1)
136hStdInput = null;
compmod\system\codedom\compiler\Executor.cs (1)
185si.hStdInput = new SafeFileHandle(UnsafeNativeMethods.GetStdHandle(NativeMethods.STD_INPUT_HANDLE), false);
services\monitoring\system\diagnosticts\Process.cs (2)
2011CreatePipe(out standardInputWritePipeHandle, out startupInfo.hStdInput, true); 2013startupInfo.hStdInput = new SafeFileHandle(NativeMethods.GetStdHandle(NativeMethods.STD_INPUT_HANDLE), false);
3 references to hStdInput
System (3)
compmod\microsoft\win32\NativeMethods.cs (3)
134if(hStdInput != null && !hStdInput.IsInvalid) { 135hStdInput.Close();