RemoteLauncherOptions RemoteLauncherOptions RemoteLauncherOptions RemoteLauncherOptions Class

Definition

Specifies the options used to launch the default app for URI on a remote device.

public : sealed class RemoteLauncherOptions : IRemoteLauncherOptionspublic sealed class RemoteLauncherOptions : IRemoteLauncherOptionsPublic NotInheritable Class RemoteLauncherOptions Implements IRemoteLauncherOptions// You can use this class in JavaScript.
Attributes
Windows 10 requirements
Device family
Windows 10 Anniversary Edition (introduced v10.0.14393.0)
API contract
Windows.Foundation.UniversalApiContract (introduced v3)

Constructors

RemoteLauncherOptions() RemoteLauncherOptions() RemoteLauncherOptions() RemoteLauncherOptions()

Creates an instance of the RemoteLauncherOptions class.

public : RemoteLauncherOptions()public RemoteLauncherOptions()Public Sub New()// You can use this method in JavaScript.

Properties

FallbackUri FallbackUri FallbackUri FallbackUri

Specifies the URI of the web site to view if the app to handle the URI can't be launched on the remote device.

public : Uri FallbackUri { get; set; }public Uri FallbackUri { get; set; }Public ReadWrite Property FallbackUri As Uri// You can use this property in JavaScript.
Value
Uri Uri Uri Uri

The URI of a website.

PreferredAppIds PreferredAppIds PreferredAppIds PreferredAppIds

A list of package family names that should be used to launch the URI on the remote device. The first one in the list should be the preferred application to launch on the remote system (device).

public : IVector<string> PreferredAppIds { get; }public IList<string> PreferredAppIds { get; }Public ReadOnly Property PreferredAppIds As IList<string>// You can use this property in JavaScript.
Value
IVector<PlatForm::String> IList<string> IList<string> IList<string>

The list of package family names.

Remarks

A list is provided because the package family name to use on a remote device may differ from device to device.