Skip to content

IExitResult

Represents an explicit process exit code with an optional payload to render.

public interface IExitResult

Gets the process exit code to return.

int ExitCode { get; }

int

Gets an optional payload to render using the configured output transformer.

object? Payload { get; }

object