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);