MCPcopy Create free account
hub / github.com/PlayFab/gsdk / CreateSharedGroup

Method CreateSharedGroup

cpp/cppsdk/source/playfab/PlayFabClientApi.cpp:350–361  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

348 }
349
350 void PlayFabClientAPI::CreateSharedGroup(
351 CreateSharedGroupRequest& request,
352 ProcessApiCallback<CreateSharedGroupResult> callback,
353 ErrorCallback errorCallback,
354 void* customData
355 )
356 {
357
358 IPlayFabHttp& http = IPlayFabHttp::Get();
359 const auto requestJson = request.ToJson();
360 http.AddRequest("/Client/CreateSharedGroup", "X-Authorization", PlayFabSettings::clientSessionTicket, requestJson, OnCreateSharedGroupResult, SharedVoidPointer((callback == nullptr) ? nullptr : new ProcessApiCallback<CreateSharedGroupResult>(callback)), errorCallback, customData);
361 }
362
363 void PlayFabClientAPI::OnCreateSharedGroupResult(CallRequestContainer& request)
364 {

Callers

nothing calls this directly

Calls 2

AddRequestMethod · 0.80
ToJsonMethod · 0.45

Tested by

no test coverage detected