Free cookie consent management tool by TermsFeed Policy Generator

source: branches/UserManagement/HeuristicLab.Services.Authentication.TestClient2/Form1.cs @ 6176

Last change on this file since 6176 was 4983, checked in by jwolfing, 14 years ago

#1196 Added TestForm and modified the AuthenticationClientClass

File size: 691 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;
9using HeuristicLab.Services.Authentication.ServiceClients;
10
11namespace HeuristicLab.Services.Authentication.TestClient2 {
12  public partial class Form1 : Form {
13
14    ICollection<Application> apps;
15    public Form1() {
16      InitializeComponent();
17    }
18
19    private void Form1_Load(object sender, EventArgs e) {
20
21
22      apps = (ICollection<Application>)AuthenticationClient.Instance.Applications.ToList<Application>();
23      cbx_Applications.DataSource = apps;
24     
25    }
26  }
27}
Note: See TracBrowser for help on using the repository browser.