Legacy Documentation: Version 5.6 (Go to current version)
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);

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);
}