次の方法で共有


GameList.GameUpdated イベント

定義

GameListEntry が GameList で更新されたことを示します

public:
 static event GameListChangedEventHandler ^ GameUpdated;
// Register
static event_token GameUpdated(GameListChangedEventHandler const& handler) const;

// Revoke with event_token
static void GameUpdated(event_token const* cookie) const;

// Revoke with event_revoker
static GameList::GameUpdated_revoker GameUpdated(auto_revoke_t, GameListChangedEventHandler const& handler) const;
public static event GameListChangedEventHandler GameUpdated;
function onGameUpdated(eventArgs) { /* Your code */ }
Windows.Gaming.Preview.GamesEnumeration.GameList.addEventListener("gameupdated", onGameUpdated);
Windows.Gaming.Preview.GamesEnumeration.GameList.removeEventListener("gameupdated", onGameUpdated);
- or -
Windows.Gaming.Preview.GamesEnumeration.GameList.ongameupdated = onGameUpdated;
Public Shared Custom Event GameUpdated As GameListChangedEventHandler 

イベントの種類

Windows の要件

アプリの機能
gameList

注釈

この API は、すべてのアプリで使用できるわけではありません。 開発者アカウントが Microsoft によって特別にプロビジョニングされていない限り、これらの API の呼び出しは実行時に失敗します。

適用対象