Exemple #1
0
 public DeviceSession()
 {
     this.DeviceID   = 0L;
     this.__Password = "";
     Connection      = new HttpSessionConnection();
 }
Exemple #2
0
 public DeviceSession()
 {
     this.DeviceID = 0L;
     this.__Password = "";
     Connection = new HttpSessionConnection();
 }
Exemple #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();
 }
Exemple #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();
 }