Struct RemoteProcess.ExitStatus
Represents a process exit status.
public readonly struct RemoteProcess.ExitStatus
- Inherited Members
Properties
ExitCode
Gets the exit code of the process.
public int ExitCode { get; init; }
Property Value
ExitSignal
Gets the signal that terminated the process, or null when the process terminated with an exit code.
public string? ExitSignal { get; init; }
Property Value
Methods
Deconstruct(out int, out string?)
Deconstructs the exit status into its components.
public void Deconstruct(out int exitCode, out string? exitSignal)