Disconnected Field¶ Summary¶ The server is disconnected. Signature¶ 1public static ErrorCode Disconnected; Return Value¶ ErrorCode Declaring Type¶ cAlgo.API.ErrorCode Examples¶ 1 2 3 4 5 6 7 protected override void OnError(Error error) { if (error.Code == ErrorCode.Disconnected) { Print("The server is disconnected."); } } Last update: February 3, 2023