SucceededStateSerializeData Method |
Namespace: Hangfire.States
Returning dictionary contains the following keys. You can obtain the state data by using the GetStateData(String) method.
Key | Type | Deserialize Method | Notes |
---|---|---|---|
SucceededAt | DateTime | DeserializeDateTime(String) | Please see the SucceededAt property. |
PerformanceDuration | Int64 | Parse(String, IFormatProvider) with InvariantCulture | Please see the PerformanceDuration property. |
Latency | Int64 | Parse(String, IFormatProvider) with InvariantCulture | Please see the Latency property. |
Result | Object | FromJson(String, Type) | Please see the Result property. This key may be missing from the dictionary, when the return value was . Always check for its existence before using it. |