IServerConfig.Net45.cs 535 B

12345678910111213141516171819202122
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace SuperSocket.SocketBase.Config
  7. {
  8. /// <summary>
  9. /// IServerConfig, the part compatible with .Net 4.5 or higher
  10. /// </summary>
  11. public partial interface IServerConfig
  12. {
  13. /// <summary>
  14. /// Gets the default culture for this server.
  15. /// </summary>
  16. /// <value>
  17. /// The default culture.
  18. /// </value>
  19. string DefaultCulture { get; }
  20. }
  21. }