Exemplo n.º 1
0
        public void StartWatching()
        {
            ChoGuard.NotDisposed(this);

            if (_configurationChangeWatcher != null)
            {
                _configurationChangeWatcher.StartWatching();
            }
        }
Exemplo n.º 2
0
        internal void Start()
        {
            if (!IsXmlFile)
            {
                return;
            }

            if (_timerService != null)
            {
                _timerService.Start();
            }
            if (_queuedMsgService != null)
            {
                _queuedMsgService.Start();
            }
            if (_configurationChangeWatcher != null)
            {
                _configurationChangeWatcher.StartWatching();
            }
        }
Exemplo n.º 3
0
 public override void StartWatching()
 {
     _configurationChangeWatcher.StartWatching();
 }