This version of Unity is unsupported.
Method group is Obsolete

NetworkConnection.lastError

Obsolete The high level API classes are deprecated and will be removed in the future. public Networking.NetworkError lastError;

Description

The last error associated with this connection.

Retrieve the last error that occurred on the connection, this value is set every time an event is received from the NetworkTransport.

In the following example, OnServerDisconnect is overridden from NetworkManager:

using UnityEngine;
using UnityEngine.Networking;

public class ExampleScript : NetworkManager { public override void OnServerDisconnect(NetworkConnection conn) { if (conn.lastError != NetworkError.Ok) { if (LogFilter.logError) { Debug.LogError("ServerDisconnected due to error: " + conn.lastError); } } } }