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

Method DeleteTask

cpp/cppsdk/source/playfab/PlayFabAdminApi.cpp:457–468  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

455 }
456
457 void PlayFabAdminAPI::DeleteTask(
458 DeleteTaskRequest& request,
459 ProcessApiCallback<EmptyResult> callback,
460 ErrorCallback errorCallback,
461 void* customData
462 )
463 {
464
465 IPlayFabHttp& http = IPlayFabHttp::Get();
466 const auto requestJson = request.ToJson();
467 http.AddRequest("/Admin/DeleteTask", "X-SecretKey", PlayFabSettings::developerSecretKey, requestJson, OnDeleteTaskResult, SharedVoidPointer((callback == nullptr) ? nullptr : new ProcessApiCallback<EmptyResult>(callback)), errorCallback, customData);
468 }
469
470 void PlayFabAdminAPI::OnDeleteTaskResult(CallRequestContainer& request)
471 {

Callers

nothing calls this directly

Calls 2

AddRequestMethod · 0.80
ToJsonMethod · 0.45

Tested by

no test coverage detected