withSIX.Core.Services.Infrastructure.ProcessExitResultWithOutput.ProcessExitResultWithOutput C# (CSharp) Method

ProcessExitResultWithOutput() public method

public ProcessExitResultWithOutput ( int exitCode, int id, ProcessStartInfo startInfo, string standardOutput, string standardError ) : System.Diagnostics
exitCode int
id int
startInfo System.Diagnostics.ProcessStartInfo
standardOutput string
standardError string
return System.Diagnostics
        public ProcessExitResultWithOutput(int exitCode, int id, ProcessStartInfo startInfo, string standardOutput,
            string standardError) : base(exitCode, id, startInfo) {
            StandardOutput = standardOutput;
            StandardError = standardError;
        }