Table of Contents

Class BatchCommandResult

Namespace
Core.CliniCore.Commands
Assembly
Core.CliniCore.dll

Represents the aggregated result of executing multiple commands as a batch.

public class BatchCommandResult
Inheritance
BatchCommandResult
Inherited Members

Properties

AllSucceeded

Gets or sets a value indicating whether all commands in the batch succeeded.

public bool AllSucceeded { get; set; }

Property Value

bool

FailureCount

Gets or sets the number of commands that failed.

public int FailureCount { get; set; }

Property Value

int

IndividualResults

Gets or sets the individual results for each executed command.

public List<CommandResult> IndividualResults { get; set; }

Property Value

List<CommandResult>

SuccessCount

Gets or sets the number of commands that completed successfully.

public int SuccessCount { get; set; }

Property Value

int

Methods

GetSummary()

Builds a human-readable summary of the batch execution outcome.

public string GetSummary()

Returns

string

A summary string describing how many commands succeeded and failed.