Class SandboxResult
Result of a sandboxed command execution.
public sealed record SandboxResult : IEquatable<SandboxResult>
- Inheritance
-
SandboxResult
- Implements
- Inherited Members
Constructors
SandboxResult(int, string, string, bool)
Result of a sandboxed command execution.
public SandboxResult(int ExitCode, string Output, string Error, bool TimedOut)
Parameters
Properties
Error
public string Error { get; init; }
Property Value
ExitCode
public int ExitCode { get; init; }
Property Value
Output
public string Output { get; init; }
Property Value
TimedOut
public bool TimedOut { get; init; }