- Timestamp:
- 02/01/11 18:12:46 (14 years ago)
- Location:
- branches/HeuristicLab.Hive-3.4/sources/HeuristicLab.Clients.Hive/3.4
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HeuristicLab.Hive-3.4/sources/HeuristicLab.Clients.Hive/3.4/IServiceLocator.cs
r5156 r5405 26 26 public interface IServiceLocator { 27 27 Disposable<IHiveService> GetService(); 28 Disposable<IHiveService> GetService(string username, string password); 28 29 } 29 30 } -
branches/HeuristicLab.Hive-3.4/sources/HeuristicLab.Clients.Hive/3.4/ServiceLocator.cs
r5404 r5405 41 41 return ClientFactory.CreateClient<IHiveService>("wsHttpBinding_IHiveService"); 42 42 } 43 44 public Disposable<IHiveService> GetService(string username, string password) { 45 return ClientFactory.CreateClient<IHiveService>("wsHttpBinding_IHiveService", null, username, password); 46 } 43 47 } 44 48 }
Note: See TracChangeset
for help on using the changeset viewer.