Storage Client Library for Windows Runtime (Version 7.0)

Microsoft.WindowsAzure.Storage.Queue

Gets or sets the server timeout interval for the request.

Namespace:   Microsoft.WindowsAzure.Storage.Queue
Assembly:  Microsoft.WindowsAzure.Storage (in Microsoft.WindowsAzure.Storage.dll)

Syntax

 
public Nullable<TimeSpan> ServerTimeout { get; set; }
 
public:
property Nullable<TimeSpan> ServerTimeout {
	virtual Nullable<TimeSpan> get() sealed;
	virtual void set(Nullable<TimeSpan> value) sealed;
}
 
abstract ServerTimeout : Nullable<TimeSpan> with get, set
override ServerTimeout : Nullable<TimeSpan> with get, set
 
Public Property ServerTimeout As Nullable(Of TimeSpan)

Property Value

Type: System.Nullable<TimeSpan>System::Nullable<TimeSpan>System.Nullable<TimeSpan>System.Nullable(Of TimeSpan)

A TimeSpan containing the server timeout interval for the request.

Return to top