Beispiel #1
0
        static async Task ListBuildSummaries()
        {
            var req = new PlayFab.MultiplayerModels.ListBuildSummariesRequest();
            var res = await PlayFabMultiplayerAPI.ListBuildSummariesV2Async(req);

            if (res.Error != null)
            {
                Console.WriteLine(res.Error.ErrorMessage);
            }
            else
            {
                PrettyPrintJson(res.Result);
            }
        }