CloudTableClient.Timeout Property
From Storage Client Library NET API
Gets or sets the default server timeout for requests made by the Table service client.
Namespace: Microsoft.WindowsAzure.StorageClient
Assembly: Microsoft.WindowsAzure.StorageClient (in Microsoft.WindowsAzure.StorageClient.dll)
Usage
| Visual Basic |
|---|
Dim instance As CloudTableClient Dim value As TimeSpan value = instance.Timeout instance.Timeout = value |
Syntax
| Visual Basic |
|---|
Public Property Timeout As TimeSpan |
| C# |
|---|
public TimeSpan Timeout { get; set; } |
| C++ |
|---|
public: property TimeSpan Timeout { TimeSpan get (); void set (TimeSpan value); } |
| J# |
|---|
| JScript |
|---|
Property Value
Type: System.TimeSpan
The server timeout interval.
Remarks
The server timeout interval begins at the time that the complete request has been received by the service, and the server begins processing the response. If the timeout interval elapses before the response is returned to the client, the operation times out. The timeout interval resets with each retry, if the request is retried.
The default timeout interval for a request made via the service client is 90 seconds. You can change this value on the service client by setting this property, so that all subsequent requests made via the service client will use the new timeout interval. You can also change this value for an individual request, by setting the Timeout property of the BlobRequestOptions class.