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

Method OnAddPlayerTagResult

cpp/cppsdk/source/playfab/PlayFabServerApi.cpp:92–104  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

90 }
91
92 void PlayFabServerAPI::OnAddPlayerTagResult(CallRequestContainer& request)
93 {
94 AddPlayerTagResult outResult;
95 outResult.FromJson(request.errorWrapper.Data);
96 outResult.Request = request.errorWrapper.Request;
97
98 const auto internalPtr = request.successCallback.get();
99 if (internalPtr != nullptr)
100 {
101 const auto callback = (*static_cast<ProcessApiCallback<AddPlayerTagResult> *>(internalPtr));
102 callback(outResult, request.customData);
103 }
104 }
105
106 void PlayFabServerAPI::AddSharedGroupMembers(
107 AddSharedGroupMembersRequest& request,

Callers

nothing calls this directly

Calls 2

getMethod · 0.80
FromJsonMethod · 0.45

Tested by

no test coverage detected