Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
04/17/09 13:36:18 (15 years ago)
Author:
kgrading
Message:

updated the runner class & webservice interfaces (#547)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.PluginInfrastructure/Runner.cs

    r1229 r1594  
    4242      PluginManager.Manager.LoadedPlugins = plugins;
    4343    }
     44    /// <summary>
     45    /// Loads plugins from a byte array
     46    /// </summary>
     47    /// <param name="plugins">bytearray of all plugins that should be loaded</param>
     48    public void LoadPlugins(ICollection<byte[]> plugins) {
     49      foreach (byte[] plugin in plugins)
     50        Assembly.Load(plugin);
     51    }
    4452
    4553    public void Run(ApplicationInfo appInfo) {
Note: See TracChangeset for help on using the changeset viewer.