Skip to content

ExecuteResult

ZjzMisaka edited this page Nov 1, 2025 · 12 revisions

Properties

[Get only] Work id.

WorkID ID;

[Get only] Result of the work.

TResult Result;

[Get only] Status of the work.

Status Status;

[Get only] Is result found.

bool IsFound;

[Get only] If failed, the exception will be stored here.

Exception Exception;

[Get only] Queue datetime.

DateTime QueueDateTime;

[Get only] Start datetime.

public DateTime StartDateTime;

[Get only] End datetime.

public DateTime EndDateTime;

[Get only]
Measures the total wall-clock time that the work’s code runs on workers,
excluding time spent awaiting external I/O or being suspended off-thread.

public long Duration;

[Get only] Retry information.

public RetryInfo RetryInfo;

Enums

enum Status { Succeed, Failed, Canceled, Stopped, ForceStopped };

Clone this wiki locally