ProcessResult(Int32, String[], String[]) Constructor
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Constructor for Process Result.
public:
ProcessResult(int exitCode, cli::array <System::String ^> ^ errors, cli::array <System::String ^> ^ output);
public ProcessResult (int exitCode, string[] errors, string[] output);
new Microsoft.MixedReality.Toolkit.Utilities.ProcessResult : int * string[] * string[] -> Microsoft.MixedReality.Toolkit.Utilities.ProcessResult
Public Sub New (exitCode As Integer, errors As String(), output As String())
Parameters
- exitCode
- Int32
Exit code from completed process.
- errors
- String[]
Errors from completed process.
- output
- String[]
Output from completed process.