示例#1
0
 public Manager(AndroidApplicationContext applicationContext, IGlobalEventsController events, String host, String userName, String password, String deviceId)
 {
     _applicationContext = applicationContext;
     _events             = events;
     _host     = host;
     _userName = userName;
     _password = password;
     _deviceId = deviceId;
 }
示例#2
0
 public Manager(AndroidApplicationContext applicationContext, IGlobalEventsController events, String host, String userName, String password, String deviceId)
 {
     _applicationContext = applicationContext;
     _events = events;
     _host = host;
     _userName = userName;
     _password = password;
     _deviceId = deviceId;
 }
 public static Manager CreateInstance(AndroidApplicationContext context, IGlobalEventsController events
     , string host, string userName, string password, string deviceId)
 {
     return _manager ?? (_manager = new Manager(context, events, host, userName, password, deviceId));
 }
 public static Manager CreateInstance(AndroidApplicationContext context, IGlobalEventsController events
                                      , string host, string userName, string password, string deviceId)
 {
     return(_manager ?? (_manager = new Manager(context, events, host, userName, password, deviceId)));
 }