Ejemplo n.º 1
0
 internal ActionHandler GetStandAloneActionHandler(string pluginID, string ID)
 {
     foreach (PluginPackage PP in mPluginPackages)
     {
         ActionHandler AH = PP.GetStandAloneActionHandler(ID);
         if (AH != null)
         {
             return(AH);
         }
     }
     throw new Exception("Action handler not found for Action ID: " + ID);
 }