Click or drag to resize

ServiceExceptionIsDueToServiceTemporarilyDown Property

Returns true if this failure was caused by a temporary problem preventing the API service from functioning properly (sorry!).

Namespace: DegreeDays.Api
Assembly: DegreeDays (in DegreeDays.dll) Version: 1.4
Syntax
public bool IsDueToServiceTemporarilyDown { get; }

Property Value

Boolean
Remarks

This might, for example, be caused by a temporary network error preventing our API servers from accessing the database of weather data that the calculation process relies upon. Or it could be caused by other essential systems being overloaded.

The best way to handle this type of failure is usually to try the request again until it works (waiting a little while between repeated submissions). If you get this type of failure for one request, it is quite likely that some or all of your requests will fail in the same way until the problem is resolved (which hopefully won't take long).

See Also