GameList.FindAllAsync Method

Definition

Overloads

FindAllAsync()

Returns all GameListEntries.

FindAllAsync(String)

Returns all GameListEntries that match the provided packageFamilyName for the String parameter.

FindAllAsync()

Returns all GameListEntries.

public:
 static IAsyncOperation<IVectorView<GameListEntry ^> ^> ^ FindAllAsync();
/// [Windows.Foundation.Metadata.Overload("FindAllAsync")]
/// [Windows.Foundation.Metadata.RemoteAsync]
 static IAsyncOperation<IVectorView<GameListEntry>> FindAllAsync();
[Windows.Foundation.Metadata.Overload("FindAllAsync")]
[Windows.Foundation.Metadata.RemoteAsync]
public static IAsyncOperation<IReadOnlyList<GameListEntry>> FindAllAsync();
function findAllAsync()
Public Shared Function FindAllAsync () As IAsyncOperation(Of IReadOnlyList(Of GameListEntry))

Returns

Attributes

Windows requirements

App capabilities
gameList

Remarks

This API is not available to all apps. Unless your developer account is specially provisioned by Microsoft, calls to these APIs will fail at runtime.

See also

Applies to

FindAllAsync(String)

Returns all GameListEntries that match the provided packageFamilyName for the String parameter.

public:
 static IAsyncOperation<IVectorView<GameListEntry ^> ^> ^ FindAllAsync(Platform::String ^ packageFamilyName);
/// [Windows.Foundation.Metadata.Overload("FindAllAsyncPackageFamilyName")]
/// [Windows.Foundation.Metadata.RemoteAsync]
 static IAsyncOperation<IVectorView<GameListEntry>> FindAllAsync(winrt::hstring const& packageFamilyName);
[Windows.Foundation.Metadata.Overload("FindAllAsyncPackageFamilyName")]
[Windows.Foundation.Metadata.RemoteAsync]
public static IAsyncOperation<IReadOnlyList<GameListEntry>> FindAllAsync(string packageFamilyName);
function findAllAsync(packageFamilyName)
Public Shared Function FindAllAsync (packageFamilyName As String) As IAsyncOperation(Of IReadOnlyList(Of GameListEntry))

Parameters

packageFamilyName
String

Platform::String

winrt::hstring

Returns

Attributes

Windows requirements

App capabilities
gameList

Remarks

This API is not available to all apps. Unless your developer account is specially provisioned by Microsoft, calls to these APIs will fail at runtime.

See also

Applies to