ConnectionStatus Property

This property represents the current status of the mobile application connection, one of the ConnectionStatus class values.

Syntax

public int ConnectionStatus { get; set; }

Examples

  • Get the Status
    if (app.ConnectionStatus != ConnectionStatus.CONNECTED)
    {
      // start the connection to server
      app.StartConnection(100);
    }