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