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