using System;
using System.Collections.Generic;
using System.Configuration;
using System.Linq;
using System.Text;
using SuperSocket.SocketBase.Config;
namespace SuperSocket.SocketEngine.Configuration
{
///
/// SocketServiceConfig, the part which is compatible with .Net 4.5 or higher
///
public partial class SocketServiceConfig : IConfigurationSource
{
///
/// Gets/sets the default culture for all server instances.
///
///
/// The default culture.
///
[ConfigurationProperty("defaultCulture", IsRequired = false)]
public string DefaultCulture
{
get
{
return (string)this["defaultCulture"];
}
}
}
}