123456789101112131415161718192021222324252627282930 |
- using System;
- using System.Collections.Generic;
- using System.Configuration;
- using System.Linq;
- using System.Text;
- using SuperSocket.SocketBase.Config;
- namespace SuperSocket.SocketEngine.Configuration
- {
-
-
-
- public partial class Server : IServerConfig
- {
-
-
-
-
-
-
- [ConfigurationProperty("defaultCulture", IsRequired = false)]
- public string DefaultCulture
- {
- get
- {
- return (string)this["defaultCulture"];
- }
- }
- }
- }
|