SecondaryTile.RoamingEnabled Property

Definition

Gets or sets a value that determines whether the secondary tile will be reacquired through the cloud when the parent app is installed by the user, using their Microsoft account, on another computer. Note that as of Windows 8.1, roaming is the default behavior. This is the opposite of the default Windows 8 behavior, where roaming was opt-in.

This property always returns false on Windows Phone 8.1.

public:
 property bool RoamingEnabled { bool get(); void set(bool value); };
bool RoamingEnabled();

void RoamingEnabled(bool value);
public bool RoamingEnabled { get; set; }
var boolean = secondaryTile.roamingEnabled;
secondaryTile.roamingEnabled = boolean;
Public Property RoamingEnabled As Boolean

Property Value

Boolean

bool

Set to true if roaming is enabled; otherwise, false. The default is true.

Setting this value in a Windows Phone 8.x app has no effect, and this property always returns false.

Applies to