Launcher.LaunchUriForResultsAsync メソッド

定義

オーバーロード

LaunchUriForResultsAsync(Uri, LauncherOptions)

指定したオプションを使用して、指定した URI の URI スキーム名に関連付けられている既定のアプリを非同期的に開始します。

LaunchUriForResultsAsync(Uri, LauncherOptions, ValueSet)

指定したオプションと入力データを使用して、指定した URI の URI スキーム名に関連付けられている既定のアプリを非同期的に起動します。

LaunchUriForResultsAsync(Uri, LauncherOptions)

指定したオプションを使用して、指定した URI の URI スキーム名に関連付けられている既定のアプリを非同期的に開始します。

public:
 static IAsyncOperation<LaunchUriResult ^> ^ LaunchUriForResultsAsync(Uri ^ uri, LauncherOptions ^ options);
/// [Windows.Foundation.Metadata.Overload("LaunchUriForResultsAsync")]
 static IAsyncOperation<LaunchUriResult> LaunchUriForResultsAsync(Uri const& uri, LauncherOptions const& options);
[Windows.Foundation.Metadata.Overload("LaunchUriForResultsAsync")]
public static IAsyncOperation<LaunchUriResult> LaunchUriForResultsAsync(System.Uri uri, LauncherOptions options);
function launchUriForResultsAsync(uri, options)
Public Shared Function LaunchUriForResultsAsync (uri As Uri, options As LauncherOptions) As IAsyncOperation(Of LaunchUriResult)

パラメーター

uri
Uri Uri

起動する URI。

options
LauncherOptions

起動オプション。

戻り値

このメソッドが完了すると、起動の結果が返されます。

属性

注釈

結果のためにアプリを起動すると、別のアプリからアプリを起動し、2 つの間でデータを交換できます。

この API は、ASTA スレッド (UI スレッドとも呼ばれます) 内から呼び出す必要があります。

このメソッドを呼び出す場合、 options パラメーターには LauncherOptions.TargetApplicationPackageFamilyName の有効な値が含まれている必要があります。

こちらもご覧ください

適用対象

LaunchUriForResultsAsync(Uri, LauncherOptions, ValueSet)

指定したオプションと入力データを使用して、指定した URI の URI スキーム名に関連付けられている既定のアプリを非同期的に起動します。

public:
 static IAsyncOperation<LaunchUriResult ^> ^ LaunchUriForResultsAsync(Uri ^ uri, LauncherOptions ^ options, ValueSet ^ inputData);
/// [Windows.Foundation.Metadata.Overload("LaunchUriForResultsWithDataAsync")]
 static IAsyncOperation<LaunchUriResult> LaunchUriForResultsAsync(Uri const& uri, LauncherOptions const& options, ValueSet const& inputData);
[Windows.Foundation.Metadata.Overload("LaunchUriForResultsWithDataAsync")]
public static IAsyncOperation<LaunchUriResult> LaunchUriForResultsAsync(System.Uri uri, LauncherOptions options, ValueSet inputData);
function launchUriForResultsAsync(uri, options, inputData)
Public Shared Function LaunchUriForResultsAsync (uri As Uri, options As LauncherOptions, inputData As ValueSet) As IAsyncOperation(Of LaunchUriResult)

パラメーター

uri
Uri Uri

起動する URI。

options
LauncherOptions

起動オプション。

inputData
ValueSet

起動したアプリに送信するデータ。

戻り値

このメソッドが完了すると、起動の結果が返されます。

属性

注釈

結果のためにアプリを起動すると、別のアプリからアプリを起動し、2 つの間でデータを交換できます。

この API は、ASTA スレッド (UI スレッドとも呼ばれます) 内から呼び出す必要があります。

このメソッドを呼び出す場合、 options パラメーターには LauncherOptions.TargetApplicationPackageFamilyName の有効な値が含まれている必要があります。

こちらもご覧ください

適用対象