Click here to Skip to main content
15,885,914 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
bool requestResult = WhatsAppApi.Register.WhatsRegisterV2.RequestCode(this.number, out this.password, out request, out response, this.method, this.identity);


What can I do to get the truth back?



What I have tried:

I searched a lot, many people had my problem, but they didn't get the right answer, help me.
Posted
Updated 31-May-20 3:18am

1 solution

We can't tell - we have no idea what you are actually passing to the method, so we have no idea what it should respond.

So, it's going to be up to you.
Fortunately, you have a tool available to you which will help you find out what is going on: the debugger. If you don't know how to use it then a quick Google for "Visual Studio debugger" should give you the info you need.

Put a breakpoint on the first line in the function, and run your code through the debugger. Then look at your code, and at your data and work out what should happen manually. Then single step each line checking that what you expected to happen is exactly what did. When it isn't, that's when you have a problem, and you can back-track (or run it again and look more closely) to find out why.

When you've used the debugger to see exactly what you are passing - rather than what you think you are passing - if it looks right then check the API documentation for why the method returns false, and start looking at your data and other code to see why.

Sorry, but we can't do that for you - time for you to learn a new (and very, very useful) skill: debugging!
 
Share this answer
 
Comments
[no name] 1-Jun-20 2:06am    
i use debugging and ,find out that library return false every time for me.
OriginalGriff 1-Jun-20 2:12am    
And that's as a response to the parameters you are passing to it and / or previous actions you have had with it.

So use teh debugger to find out exactly what you are passing!

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900