Changeset 13534 for trunk/sources/HeuristicLab.Clients.OKB/3.3/Query
- Timestamp:
- 01/17/16 20:06:18 (9 years ago)
- Location:
- trunk/sources/HeuristicLab.Clients.OKB/3.3/Query
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Clients.OKB/3.3/Query/QueryClient.cs
r13503 r13534 98 98 #endregion 99 99 100 #region Characteristic Methods101 public List<Value> GetCharacteristics(long problemId) {102 return CallQueryService(s => s.GetCharacteristics(problemId));103 }104 #endregion105 106 100 #region OKB-Item Conversion 107 101 public Optimization.IRun ConvertToOptimizationRun(Run run) { -
trunk/sources/HeuristicLab.Clients.OKB/3.3/Query/ServiceClient/QueryServiceClient.cs
r13503 r13534 1896 1896 [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IQueryService/GetValueNames", ReplyAction="http://tempuri.org/IQueryService/GetValueNamesResponse")] 1897 1897 System.Threading.Tasks.Task<System.Collections.Generic.List<HeuristicLab.Clients.OKB.Query.ValueName>> GetValueNamesAsync(); 1898 1899 [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IQueryService/GetCharacteristics", ReplyAction="http://tempuri.org/IQueryService/GetCharacteristicsResponse")]1900 System.Collections.Generic.List<HeuristicLab.Clients.OKB.Query.Value> GetCharacteristics(long problemId);1901 1902 [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IQueryService/GetCharacteristics", ReplyAction="http://tempuri.org/IQueryService/GetCharacteristicsResponse")]1903 System.Threading.Tasks.Task<System.Collections.Generic.List<HeuristicLab.Clients.OKB.Query.Value>> GetCharacteristicsAsync(long problemId);1904 1898 } 1905 1899 … … 1997 1991 return base.Channel.GetValueNamesAsync(); 1998 1992 } 1999 2000 public System.Collections.Generic.List<HeuristicLab.Clients.OKB.Query.Value> GetCharacteristics(long problemId)2001 {2002 return base.Channel.GetCharacteristics(problemId);2003 }2004 2005 public System.Threading.Tasks.Task<System.Collections.Generic.List<HeuristicLab.Clients.OKB.Query.Value>> GetCharacteristicsAsync(long problemId)2006 {2007 return base.Channel.GetCharacteristicsAsync(problemId);2008 }2009 1993 } 2010 1994 }
Note: See TracChangeset
for help on using the changeset viewer.