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