Click or drag to resize
Controlling a Request's Runtime

For some clients it is neccessary to contol the timeout of a request. This can be achieved by utilizing CancellationToken instances.

Controlling the default request timeout

By default, each requests times out after 100 seconds. In case this amount needs to be extended, a client can specify the desired timeout in the configuration file of the application:

<configuration xmlns="http://ddue.schemas.microsoft.com/authoring/2003/5"><appSettings><add key="PlatformClientRequestTimeout" value="180000" /></appSettings></configuration>