System.Diagnostics.Process.ProcessAsyncReader.ProcessAsyncReader C# (CSharp) Method

ProcessAsyncReader() public method

public ProcessAsyncReader ( Process process, IntPtr handle, bool err_out ) : System.IO
process Process
handle IntPtr
err_out bool
return System.IO
			public ProcessAsyncReader (Process process, IntPtr handle, bool err_out)
			{
				this.process = process;
				this.handle = handle;
				stream = new FileStream (handle, FileAccess.Read, false);
				this.ReadHandler = new AsyncReadHandler (AddInput);
				this.err_out = err_out;
			}