SecondaryTile.FindAllAsync Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
FindAllAsync() |
Retrieves a list of secondary tiles created for the calling app. |
FindAllAsync(String) |
Retrieves a list of secondary tiles created for another app in the same package as the calling app. |
FindAllAsync()
Retrieves a list of secondary tiles created for the calling app.
public:
static IAsyncOperation<IVectorView<SecondaryTile ^> ^> ^ FindAllAsync();
/// [Windows.Foundation.Metadata.Overload("FindAllAsync")]
/// [Windows.Foundation.Metadata.RemoteAsync]
static IAsyncOperation<IVectorView<SecondaryTile>> FindAllAsync();
[Windows.Foundation.Metadata.Overload("FindAllAsync")]
[Windows.Foundation.Metadata.RemoteAsync]
public static IAsyncOperation<IReadOnlyList<SecondaryTile>> FindAllAsync();
function findAllAsync()
Public Shared Function FindAllAsync () As IAsyncOperation(Of IReadOnlyList(Of SecondaryTile))
Returns
An enumeration object that allows you to examine the set of tiles.
- Attributes
Applies to
FindAllAsync(String)
Retrieves a list of secondary tiles created for another app in the same package as the calling app.
public:
static IAsyncOperation<IVectorView<SecondaryTile ^> ^> ^ FindAllAsync(Platform::String ^ applicationId);
/// [Windows.Foundation.Metadata.Overload("FindAllForApplicationAsync")]
/// [Windows.Foundation.Metadata.RemoteAsync]
static IAsyncOperation<IVectorView<SecondaryTile>> FindAllAsync(winrt::hstring const& applicationId);
[Windows.Foundation.Metadata.Overload("FindAllForApplicationAsync")]
[Windows.Foundation.Metadata.RemoteAsync]
public static IAsyncOperation<IReadOnlyList<SecondaryTile>> FindAllAsync(string applicationId);
function findAllAsync(applicationId)
Public Shared Function FindAllAsync (applicationId As String) As IAsyncOperation(Of IReadOnlyList(Of SecondaryTile))
Parameters
- applicationId
-
String
Platform::String
winrt::hstring
The package-relative application identifier (PRAID) of the app. The specified app must be in the same package as the calling app. For more info on the PRAID, see the Id attribute of the Application element.
If you are hosting background task(s) in an out-of-process COM server, separate from your main application, then pass as the argument for applicationId
the PRAID of the application that defines the windows.backgroundTask
extension in its own package manifest.
Returns
An enumeration object that allows you to examine the set of tiles.
- Attributes