AppServiceCatalog AppServiceCatalog AppServiceCatalog AppServiceCatalog Class

Definition

Enumerate the available app service providers on the device. App service providers enable app-to-app communication by providing services that other Universal Windows app can consume.

public : static class AppServiceCatalogpublic static class AppServiceCatalogPublic Static Class AppServiceCatalog// You can use this class in JavaScript.
Attributes
Windows 10 requirements
Device family
Windows 10 (introduced v10.0.10240.0)
API contract
Windows.Foundation.UniversalApiContract (introduced v1)

Methods

FindAppServiceProvidersAsync(String) FindAppServiceProvidersAsync(String) FindAppServiceProvidersAsync(String) FindAppServiceProvidersAsync(String)

Returns the list of app service providers that match a specific app service name on the device.

public : static IAsyncOperation<IVectorView<AppInfo>> FindAppServiceProvidersAsync(PlatForm::String appServiceName)public static IAsyncOperation<IReadOnlyList<AppInfo>> FindAppServiceProvidersAsync(String appServiceName)Public Static Function FindAppServiceProvidersAsync(appServiceName As String) As IAsyncOperation( Of IReadOnlyListAppInfo )// You can use this method in JavaScript.
Parameters
appServiceName
PlatForm::String String String String

The name of the app service to find.

Returns
IAsyncOperation<IVectorView<AppInfo>> IAsyncOperation<IReadOnlyList<AppInfo>> IAsyncOperation<IReadOnlyList<AppInfo>> IAsyncOperation<IReadOnlyList<AppInfo>>

A list of AppInfo s for the app service provider(s) that are available for the specified app service name.

Tip

In C++, the return value is IAsyncOperation;

See Also