Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Hive.Server/MainForm.cs @ 1458

Last change on this file since 1458 was 1376, checked in by mbecirov, 15 years ago

#528: Refactoring and Integration of WCF Security

File size: 930 bytes
Line 
1using System;
2using System.Collections.Generic;
3using System.ComponentModel;
4using System.Data;
5using System.Drawing;
6using System.Linq;
7using System.Text;
8using System.Windows.Forms;
9
10namespace HeuristicLab.Hive.Server
11{
12    public partial class MainForm : Form {
13        public MainForm(Dictionary<string, Uri> addresses) {
14          InitializeComponent();
15          Uri uri;
16          addresses.TryGetValue(HiveServerApplication.STR_ClientCommunicator, out uri);
17          if(uri!=null)
18            this.lblAddress1.Text = uri.ToString();
19          addresses.TryGetValue(HiveServerApplication.STR_ServerConsoleFacade, out uri);
20          if (uri != null)
21            this.lblAddress2.Text = uri.ToString();
22          addresses.TryGetValue(HiveServerApplication.STR_ExecutionEngineFacade, out uri);
23          if (uri != null)
24            this.lblAddress3.Text = uri.ToString();
25        }
26
27    }
28}
Note: See TracBrowser for help on using the repository browser.