Storage Client Library for Windows Runtime (Version 7.0)

Microsoft.WindowsAzure.Storage.Queue

Specifies the location mode to indicate which location should receive the request.

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

Syntax

 
public enum LocationMode
 
public enum class LocationMode
 
type LocationMode
 
Public Enumeration LocationMode

Members

Member nameDescription
PrimaryOnly

Requests are always sent to the primary location.

PrimaryThenSecondary

Requests are always sent to the primary location first. If a request fails, it is sent to the secondary location.

SecondaryOnly

Requests are always sent to the secondary location.

SecondaryThenPrimary

Requests are always sent to the secondary location first. If a request fails, it is sent to the primary location.

Return to top