protected void RemoveComponent(IRcpaComponent comp)
 {
     if (null != comp && this.componentList.ContainsKey(comp))
     {
         this.componentList.Remove(comp);
     }
 }
Ejemplo n.º 2
0
    protected void AddComponent(IRcpaComponent comp)
    {
      if (comp == null)
      {
        throw new ArgumentException("Argument cannot be null.");
      }

      this.componentList[comp] = true;
    }
Ejemplo n.º 3
0
        protected void AddComponent(IRcpaComponent comp)
        {
            if (comp == null)
            {
                throw new ArgumentException("Argument cannot be null.");
            }

            this.componentList[comp] = true;
        }
Ejemplo n.º 4
0
 protected void SetComponentEnabled(IRcpaComponent comp, bool enabled)
 {
   this.componentList[comp] = enabled;
 }
Ejemplo n.º 5
0
 protected void RemoveComponent(IRcpaComponent comp)
 {
   this.componentList.Remove(comp);
 }
Ejemplo n.º 6
0
 protected void SetComponentEnabled(IRcpaComponent comp, bool enabled)
 {
     this.componentList[comp] = enabled;
 }
Ejemplo n.º 7
0
 protected void RemoveComponent(IRcpaComponent comp)
 {
     this.componentList.Remove(comp);
 }