Launcher.QueryFileSupportAsync 方法

定义

重载

QueryFileSupportAsync(StorageFile)

异步查询是否可以为指定文件激活应用。

QueryFileSupportAsync(StorageFile, String)

异步查询是否可以为指定文件激活具有指定包名称的应用。

QueryFileSupportAsync(StorageFile)

异步查询是否可以为指定文件激活应用。

public:
 static IAsyncOperation<LaunchQuerySupportStatus> ^ QueryFileSupportAsync(StorageFile ^ file);
/// [Windows.Foundation.Metadata.Overload("QueryFileSupportAsync")]
/// [Windows.Foundation.Metadata.RemoteAsync]
 static IAsyncOperation<LaunchQuerySupportStatus> QueryFileSupportAsync(StorageFile const& file);
[Windows.Foundation.Metadata.Overload("QueryFileSupportAsync")]
[Windows.Foundation.Metadata.RemoteAsync]
public static IAsyncOperation<LaunchQuerySupportStatus> QueryFileSupportAsync(StorageFile file);
function queryFileSupportAsync(file)
Public Shared Function QueryFileSupportAsync (file As StorageFile) As IAsyncOperation(Of LaunchQuerySupportStatus)

参数

file
StorageFile

要查询的文件支持。

返回

一个 值,该值指示是否可以为文件激活应用程序。

属性

注解

也可以从 Windows 桌面应用程序调用此 API。

考虑 Windows 桌面应用程序和通用 Windows 平台 (UWP) 应用。

另请参阅

适用于

QueryFileSupportAsync(StorageFile, String)

异步查询是否可以为指定文件激活具有指定包名称的应用。

public:
 static IAsyncOperation<LaunchQuerySupportStatus> ^ QueryFileSupportAsync(StorageFile ^ file, Platform::String ^ packageFamilyName);
/// [Windows.Foundation.Metadata.Overload("QueryFileSupportWithPackageFamilyNameAsync")]
/// [Windows.Foundation.Metadata.RemoteAsync]
 static IAsyncOperation<LaunchQuerySupportStatus> QueryFileSupportAsync(StorageFile const& file, winrt::hstring const& packageFamilyName);
[Windows.Foundation.Metadata.Overload("QueryFileSupportWithPackageFamilyNameAsync")]
[Windows.Foundation.Metadata.RemoteAsync]
public static IAsyncOperation<LaunchQuerySupportStatus> QueryFileSupportAsync(StorageFile file, string packageFamilyName);
function queryFileSupportAsync(file, packageFamilyName)
Public Shared Function QueryFileSupportAsync (file As StorageFile, packageFamilyName As String) As IAsyncOperation(Of LaunchQuerySupportStatus)

参数

file
StorageFile

要查询的文件支持。

packageFamilyName
String

Platform::String

winrt::hstring

要查询支持的包。

返回

一个 值,该值指示是否可以为文件激活应用程序。

属性

注解

也可以从 Windows 桌面应用程序调用此 API。

考虑 Windows 桌面应用程序和通用 Windows 平台 (UWP) 应用。

另请参阅

适用于