Class BatchCommandResult
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
FailureCount
Gets or sets the number of commands that failed.
public int FailureCount { get; set; }
Property Value
IndividualResults
Gets or sets the individual results for each executed command.
public List<CommandResult> IndividualResults { get; set; }
Property Value
SuccessCount
Gets or sets the number of commands that completed successfully.
public int SuccessCount { get; set; }
Property Value
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.