using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace SuperSocket.SocketBase.Config { /// /// IServerConfig, the part compatible with .Net 4.5 or higher /// public partial interface IServerConfig { /// /// Gets the default culture for this server. /// /// /// The default culture. /// string DefaultCulture { get; } } }