示例#1
0
        public void Init(AppUtil ci)

        {
            cb = ci;

            _connection = ci.getConnection();
        }
 public PropertyManager(SvcConnection connection, ServiceContent context)
 {
     _context = context;
     _connection = connection;
     WaitForUpdatesDone += new AsyncCallback(PropertyManager_WaitForUpdatesDone);
     _filterUpdates = new Dictionary<String, PropertyFilterUpdateHandler>();
     _isListening = false;
 }
 public PropertyManager(SvcConnection connection, ServiceContent context)
 {
     _context            = context;
     _connection         = connection;
     WaitForUpdatesDone += new AsyncCallback(PropertyManager_WaitForUpdatesDone);
     _filterUpdates      = new Dictionary <String, PropertyFilterUpdateHandler>();
     _isListening        = false;
 }
示例#4
0
 public void setup()
 {
     _svcUtil = new ServiceUtil();
     _connection = new SvcConnection("ServiceInstance");
 }
 public void setup()
 {
     _svcUtil    = new ServiceUtil();
     _connection = new SvcConnection("ServiceInstance");
 }
示例#6
0
 public void Init(AppUtil ci)
 {
     _ci = ci;
     _connection = ci.getConnection();
 }