We've moved!

Starting from MRTK 2.6, we are publishing both conceptual docs and API references on docs.microsoft.com. For conceptual docs, please visit our new landing page. For API references, please visit the MRTK-Unity section of the dot net API explorer. Existing content will remain here but will not be updated further.

    Show / Hide Table of Contents

    Struct ProcessResult

    Result from a completed asynchronous process.

    Inherited Members
    ValueType.Equals(Object)
    ValueType.GetHashCode()
    ValueType.ToString()
    Object.Equals(Object, Object)
    Object.ReferenceEquals(Object, Object)
    Object.GetType()
    Namespace: Microsoft.MixedReality.Toolkit.Utilities
    Assembly: cs.temp.dll.dll
    Syntax
    public struct ProcessResult

    Constructors

    ProcessResult(Int32, String[], String[])

    Constructor for Process Result.

    Declaration
    public ProcessResult(int exitCode, string[] errors, string[] output)
    Parameters
    Type Name Description
    Int32 exitCode

    Exit code from completed process.

    String[] errors

    Errors from completed process.

    String[] output

    Output from completed process.

    Properties

    Errors

    Errors from completed process.

    Declaration
    public string[] Errors { get; }
    Property Value
    Type Description
    String[]

    ExitCode

    Exit code from completed process.

    Declaration
    public int ExitCode { get; }
    Property Value
    Type Description
    Int32

    Output

    Output from completed process.

    Declaration
    public string[] Output { get; }
    Property Value
    Type Description
    String[]
    Back to top Generated by DocFX