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

Method AddGenericID

cpp/cppsdk/source/playfab/PlayFabClientApi.cpp:79–90  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

77 }
78
79 void PlayFabClientAPI::AddGenericID(
80 AddGenericIDRequest& request,
81 ProcessApiCallback<AddGenericIDResult> callback,
82 ErrorCallback errorCallback,
83 void* customData
84 )
85 {
86
87 IPlayFabHttp& http = IPlayFabHttp::Get();
88 const auto requestJson = request.ToJson();
89 http.AddRequest("/Client/AddGenericID", "X-Authorization", PlayFabSettings::clientSessionTicket, requestJson, OnAddGenericIDResult, SharedVoidPointer((callback == nullptr) ? nullptr : new ProcessApiCallback<AddGenericIDResult>(callback)), errorCallback, customData);
90 }
91
92 void PlayFabClientAPI::OnAddGenericIDResult(CallRequestContainer& request)
93 {

Callers

nothing calls this directly

Calls 2

AddRequestMethod · 0.80
ToJsonMethod · 0.45

Tested by

no test coverage detected