Ejemplo n.º 1
0
 public DeviceSession()
 {
     this.DeviceID   = 0L;
     this.__Password = "";
     Connection      = new HttpSessionConnection();
 }
Ejemplo n.º 2
0
 public DeviceSession()
 {
     this.DeviceID = 0L;
     this.__Password = "";
     Connection = new HttpSessionConnection();
 }
Ejemplo n.º 3
0
 /// <summary>
 /// Create a DeviceSession instance with specified device's ID and password
 /// </summary>
 /// <param name="ID">Device's ID</param>
 /// <param name="password">Device's password</param>
 public DeviceSession(long ID, string password)
 {
     this.DeviceID   = ID;
     this.__Password = password;
     Connection      = new HttpSessionConnection();
 }
Ejemplo n.º 4
0
 /// <summary>
 /// Create a DeviceSession instance with specified device's ID and password
 /// </summary>
 /// <param name="ID">Device's ID</param>
 /// <param name="password">Device's password</param>
 public DeviceSession(long ID, string password)
 {
     this.DeviceID = ID;
     this.__Password = password;
     Connection = new HttpSessionConnection();
 }