Mercurial > altnet-hispano
comparison Agendas/trunk/src/Agendas.Configurations/TwitterConfigurationElement.cs @ 158:734d3f0853bf
Manejando configuración de los publicadores con una sección propia en los .config
Agregando la opción de habilitar / deshabilitar un publicador
author | nelopauselli |
---|---|
date | Fri, 05 Aug 2011 16:55:18 -0300 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
157:f17252543cbf | 158:734d3f0853bf |
---|---|
1 using System.Configuration; | |
2 | |
3 namespace AltNetHispano.Agendas.Configurations | |
4 { | |
5 public class TwitterConfigurationElement : ConfigurationElement | |
6 { | |
7 [ConfigurationProperty("signIn")] | |
8 public TwitterSignInConfigurationElement SignIn | |
9 { | |
10 get { return base["signIn"] as TwitterSignInConfigurationElement; } | |
11 } | |
12 | |
13 | |
14 [ConfigurationProperty("sendTwitter")] | |
15 public TwitterSendTwitterConfigurationElement SendTwitter | |
16 { | |
17 get { return base["sendTwitter"] as TwitterSendTwitterConfigurationElement; } | |
18 } | |
19 | |
20 [ConfigurationProperty("enabled")] | |
21 public bool Enabled | |
22 { | |
23 get { return (bool) base["enabled"]; } | |
24 | |
25 } | |
26 } | |
27 } |