Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
10/18/14 03:25:58 (10 years ago)
Author:
swagner
Message:

#2205: Worked on optimization networks

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/OptimizationNetworks/HeuristicLab.Optimization.Networks/3.3/ClientPort.cs

    r11468 r11481  
    107107      return true;
    108108    }
     109    public void CloneServicePortParameters() {
     110      Parameters.Clear();
     111      foreach (var p in servicePort.Parameters) {
     112        Parameters.Add((IServiceParameter)p.Clone());
     113      }
     114    }
    109115    public ServiceParameterCollection PrepareParameters() {
    110116      if (!Valid) throw new InvalidOperationException("Port configurations do not match");
Note: See TracChangeset for help on using the changeset viewer.