返回介绍

Network.Disconnect 断开

发布于 2019-12-18 15:38:07 字数 1601 浏览 982 评论 0 收藏 0

JavaScript => public static function Disconnect(timeout: int = 200): void;
C# => public static void Disconnect(int timeout = 200);

Description 描述

Close all open connections and shuts down the network interface.

关闭所有开放的连接并关闭网络接口。

The timeout parameter indicates how much time in milliseconds the network interface gets to signal to others that it is disconnecting. The network state, like security and password, is also reset.

timeout参数表示网络接口在未收到信号的情况下,多长时间会断开。网络状态,如安全和密码,也会被重置。

Note that if you set the timeout to 0 the network interface will shut down before the disconnect notification can be sent to the remote party. For a client this could mean he cannot reconnect to the server as the server thinks he is still connected (after a certain interval the connection will be detected as dropped).

JavaScript:

function OnGUI() {
		if (GUILayout.Button ("Disconnect")) {
			Network.Disconnect();
			MasterServer.UnregisterHost();
		}
	}

C#:

using UnityEngine;
using System.Collections;
 
public class ExampleClass : MonoBehaviour {
    void OnGUI() {
        if (GUILayout.Button("Disconnect")) {
            Network.Disconnect();
            MasterServer.UnregisterHost();
        }
    }
}

network

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文