Mercurial > altnet-hispano
comparison Agendas/trunk/src/Agendas.Configurations/TwitterSignInConfigurationElement.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 TwitterSignInConfigurationElement : ConfigurationElement | |
6 { | |
7 [ConfigurationProperty("consumerKey")] | |
8 public string ConsumerKey | |
9 { | |
10 get { return base["consumerKey"] as string; } | |
11 | |
12 } | |
13 | |
14 [ConfigurationProperty("consumerSecret")] | |
15 public string ConsumerSecret | |
16 { | |
17 get { return base["consumerSecret"] as string; } | |
18 | |
19 } | |
20 } | |
21 } |