Class BatchJobResult
Result of a single job within a batch.
public sealed class BatchJobResult
- Inheritance
-
BatchJobResult
- Inherited Members
Properties
Elapsed
Wall-clock time for this individual job.
public TimeSpan Elapsed { get; init; }
Property Value
Error
The exception, if the job failed.
public Exception? Error { get; init; }
Property Value
Index
Zero-based index of this job in the input list.
public int Index { get; init; }
Property Value
Result
The generation result, if successful.
public BmFontResult? Result { get; init; }
Property Value
Success
Whether the job completed successfully.
public bool Success { get; init; }