12345678910111213141516171819202122232425262728293031323334353637 |
- using System;
- using System.Collections.Generic;
- using System.Configuration;
- using System.Linq;
- using System.Text;
- using SuperSocket.Common;
- using SuperSocket.SocketBase.Config;
- namespace SuperSocket.SocketEngine.Configuration
- {
-
-
-
- public class CommandAssembly : ConfigurationElement, ICommandAssemblyConfig
- {
-
-
-
-
-
-
- [ConfigurationProperty("assembly", IsRequired = false)]
- public string Assembly
- {
- get { return this["assembly"] as string; }
- }
- }
-
-
-
- [ConfigurationCollection(typeof(CommandAssembly))]
- public class CommandAssemblyCollection : GenericConfigurationElementCollectionBase<CommandAssembly, ICommandAssemblyConfig>
- {
- }
- }
|