mrtk_developmentreleases/2.0.0releases/2.1.0releases/2.2.0

    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.

    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[]

    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

    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[]

    Output

    Output from completed process.

    Declaration
    public string[] Output { get; }
    Property Value
    Type Description
    String[]
    In This Article
    • Constructors
      • ProcessResult(Int32, String[], String[])
      • ProcessResult(Int32, String[], String[])
    • Properties
      • Errors
      • Errors
      • ExitCode
      • ExitCode
      • Output
      • Output
    Back to top Generated by DocFX