Skip to content

IReplResult

Represents an explicit result produced by command handlers.

public interface IReplResult

Gets a machine-readable error code when applicable.

string? Code { get; }

string

Gets optional structured details.

object? Details { get; }

object

Gets the high-level result kind.

string Kind { get; }

string

Gets a user-facing result message.

string Message { get; }

string