-
Notifications
You must be signed in to change notification settings - Fork 0
/
ColleagueTrackerConfig.cs
66 lines (60 loc) · 1.75 KB
/
ColleagueTrackerConfig.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
namespace ColleagueTracker
{
using System.Configuration;
/// <summary>
/// Configuration section in app.config
/// </summary>
public class ColleagueTrackerConfig : ConfigurationSection
{
public static ColleagueTrackerConfig GetConfig()
{
return (ColleagueTrackerConfig)System.Configuration.ConfigurationManager.GetSection("ColleagueTracker") ?? new ColleagueTrackerConfig();
}
[ConfigurationProperty("Teams")]
[ConfigurationCollection(typeof(TeamsConfigurationElementCollection), AddItemName = "Team")]
public TeamsConfigurationElementCollection Teams
{
get
{
object o = this["Teams"];
return o as TeamsConfigurationElementCollection;
}
}
[ConfigurationProperty("LdapPath", IsRequired=true)]
public string LdapPath
{
get
{
return (string) this["LdapPath"];
}
set
{
this["LdapPath"] = value;
}
}
[ConfigurationProperty("AlternativeLdapPath", IsRequired = false)]
public string AlternativeLdapPath
{
get
{
return (string)this["AlternativeLdapPath"];
}
set
{
this["AlternativeLdapPath"] = value;
}
}
[ConfigurationProperty("AlternativeLdapPath2", IsRequired = false)]
public string AlternativeLdapPath2
{
get
{
return (string)this["AlternativeLdapPath2"];
}
set
{
this["AlternativeLdapPath2"] = value;
}
}
}
}