Mineplex2018-withcommit/TestApps/LOCTester/AdminClientConfigurationSec...

16 lines
472 B
C#
Raw Normal View History

2013-08-27 17:14:08 +02:00
namespace LOCTester
{
using System.Configuration;
class AdminClientConfigurationSection : ConfigurationSection
{
private const string BASE_SERVICE_URI_PROPERTY_NAME = "baseServiceUri";
[ConfigurationProperty(BASE_SERVICE_URI_PROPERTY_NAME, IsRequired = false, DefaultValue = "http://localhost:6969")]
public string BaseServiceUri
{
get { return (string)this[BASE_SERVICE_URI_PROPERTY_NAME]; }
}
}
}