CloudBlobClient.Timeout Property
Gets or sets the default timeout for requests made by the Blob service client.
Namespace: Microsoft.WindowsAzure.StorageClient
Assembly: Microsoft.WindowsAzure.StorageClient (in Microsoft.WindowsAzure.StorageClient.dll)
Assembly: Microsoft.WindowsAzure.StorageClient (in Microsoft.WindowsAzure.StorageClient.dll)
/** @property */ public TimeSpan get_Timeout () /** @property */ public void set_Timeout (TimeSpan value)
public function get Timeout () : TimeSpan public function set Timeout (value : TimeSpan)
Property Value
Type: System.TimeSpanThe timeout interval.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.
Important |
|---|
| If you are downloading a large blob, you should increase the value of the Timeout property beyond the default value. |
Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.
Development Platforms
Windows Vista, Windows 7 and Windows Server 2008Target Platforms
Important