Legacy Documentation: Version 5.4
LanguageEnglish
  • C#
  • JS

Script language

Select your preferred scripting language. All code snippets will be displayed in this language.

NetworkServerSimple.OnDisconnected

public void OnDisconnected(Networking.NetworkConnection conn);

Parameters

Description

This virtual function can be overridden to perform custom functionality for disconnected network connections.

By default OnConnected just invokes a disconnect event on the new connection.

public virtual void OnDisconnected(NetworkConnection conn)
{
     conn.InvokeHandlerNoData(MsgType.Disconnect);
}