[C++] HTTP response returns nothing in a function call of a function

If it’s a static function there is no this so you are most likely binding the completion callback to null or another object. Not sure what this actually points to in a static function, if it even compiles.

You can bind completion callback to a static function instead :

Request->OnProcessRequestComplete().BindStatic(&AClass::OnResponse);
1 Like