如何在其他脚本中调试或打印来自Web服务器的返回消息?

时间:2019-11-09 14:11:16

标签: c# web-services unity3d webserver

我在游戏中使用网络服务器。在脚本中Web服务器可以返回消息。 但我想打电话或打印返回的消息到新的我的脚本。 请查看脚本并为我提供帮助:

脚本我的Web服务器

 object[] results = this.Invoke("sendO", new object[] {
                usernames,
                password,
                domains,
                numbers,
                address,
                Id,
                Ip,
                trackingIp});
    return ((long)(results[0]));

我的新脚本

 void Start()
{

    Service css = new Service();
    css.sendO("****", "********", "*****",*, "**********", "***", *, *****);

    **//how to print and call return message?**
}

请帮助我

0 个答案:

没有答案