Exemplo n.º 1
0
 /// <summary>
 /// Fires ContextStop to all registered event handlers.
 /// </summary>
 public void Close()
 {
     IContextStop contextStop = new ContextStopImpl(Id);
     foreach (var stopHandler in _contextStopHandlers)
     {
         stopHandler.OnNext(contextStop);
     }
 }
Exemplo n.º 2
0
        /// <summary>
        /// Fires ContextStop to all registered event handlers.
        /// </summary>
        public void Close()
        {
            IContextStop contextStop = new ContextStopImpl(Id);

            foreach (var stopHandler in _contextStopHandlers)
            {
                stopHandler.OnNext(contextStop);
            }
        }