Share via


Launcher.FindUriSchemeHandlersAsync メソッド

定義

オーバーロード

FindUriSchemeHandlersAsync(String)

デバイス上のスキーム ハンドラーを列挙します。

FindUriSchemeHandlersAsync(String, LaunchQuerySupportType)

デバイス上のスキーム ハンドラーを列挙します。

FindUriSchemeHandlersAsync(String)

デバイス上のスキーム ハンドラーを列挙します。

public:
 static IAsyncOperation<IVectorView<AppInfo ^> ^> ^ FindUriSchemeHandlersAsync(Platform::String ^ scheme);
/// [Windows.Foundation.Metadata.Overload("FindUriSchemeHandlersAsync")]
/// [Windows.Foundation.Metadata.RemoteAsync]
 static IAsyncOperation<IVectorView<AppInfo>> FindUriSchemeHandlersAsync(winrt::hstring const& scheme);
[Windows.Foundation.Metadata.Overload("FindUriSchemeHandlersAsync")]
[Windows.Foundation.Metadata.RemoteAsync]
public static IAsyncOperation<IReadOnlyList<AppInfo>> FindUriSchemeHandlersAsync(string scheme);
function findUriSchemeHandlersAsync(scheme)
Public Shared Function FindUriSchemeHandlersAsync (scheme As String) As IAsyncOperation(Of IReadOnlyList(Of AppInfo))

パラメーター

scheme
String

Platform::String

winrt::hstring

ハンドラーを検索するスキーム名。 たとえば、"ms-lens" です。

戻り値

指定したスキームを処理する各アプリケーションの AppInfoの一覧。

属性

注釈

この API は Windows デスクトップ アプリケーションから呼び出すこともできますが、Windows デスクトップ アプリケーションは返されません。

こちらもご覧ください

適用対象

FindUriSchemeHandlersAsync(String, LaunchQuerySupportType)

デバイス上のスキーム ハンドラーを列挙します。

public:
 static IAsyncOperation<IVectorView<AppInfo ^> ^> ^ FindUriSchemeHandlersAsync(Platform::String ^ scheme, LaunchQuerySupportType launchQuerySupportType);
/// [Windows.Foundation.Metadata.Overload("FindUriSchemeHandlersWithLaunchUriTypeAsync")]
/// [Windows.Foundation.Metadata.RemoteAsync]
 static IAsyncOperation<IVectorView<AppInfo>> FindUriSchemeHandlersAsync(winrt::hstring const& scheme, LaunchQuerySupportType const& launchQuerySupportType);
[Windows.Foundation.Metadata.Overload("FindUriSchemeHandlersWithLaunchUriTypeAsync")]
[Windows.Foundation.Metadata.RemoteAsync]
public static IAsyncOperation<IReadOnlyList<AppInfo>> FindUriSchemeHandlersAsync(string scheme, LaunchQuerySupportType launchQuerySupportType);
function findUriSchemeHandlersAsync(scheme, launchQuerySupportType)
Public Shared Function FindUriSchemeHandlersAsync (scheme As String, launchQuerySupportType As LaunchQuerySupportType) As IAsyncOperation(Of IReadOnlyList(Of AppInfo))

パラメーター

scheme
String

Platform::String

winrt::hstring

ハンドラーを検索するスキーム名。 たとえば、"ms-lens" です。

launchQuerySupportType
LaunchQuerySupportType

ハンドラーの一覧をフィルター処理して、結果を得るためのハンドラーを起動できるかどうかを指定します。

戻り値

指定したスキームを処理する各アプリケーションの AppInfoの一覧。

属性

注釈

この API は Windows デスクトップ アプリケーションから呼び出すこともできますが、Windows デスクトップ アプリケーションは返されません。

こちらもご覧ください

適用対象