public void Clear()
 {
     foreach (object j in _dictionary.GetAllValues())
     {
         PandoraEventManager manager = (PandoraEventManager)j;
         manager.Clear();
     }
 }
 public PandoraEventManager this[string key]
 {
     get
     {
         if (!_dictionary.ContainsKey(key))
         {
             _dictionary[key] = new PandoraEventManager(_source, key);
         }
         return((PandoraEventManager)_dictionary.Get(key));
     }
 }
 public PandoraEventManager this[string key]
 {
     get
     {
         if (!_dictionary.ContainsKey(key))
         {
             _dictionary[key] = new PandoraEventManager(_source, key);
         }
         return (PandoraEventManager)_dictionary.Get(key);
     }
 }