I got this QA on stack overflow --How to call code behind server method from a client side javascript function?
however, it is call the function from javascript, how can I do it from c#. I use unity3d to develop an ios app, I did not do it before. Could some one know how to do it?
Thanks in advance.
P.S. about the backend
the backend give these like the below. url: https://{server address}/register paramters:
- username, string
- name, string
- pwd, string
and return: - user_id, int
I run the server method with the right parameters, if the parameters are right, it give back a int/user_id return.