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 { /// /// Command assembly configuration element /// public class CommandAssembly : ConfigurationElement, ICommandAssemblyConfig { /// /// Gets the assembly name. /// /// /// The assembly. /// [ConfigurationProperty("assembly", IsRequired = false)] public string Assembly { get { return this["assembly"] as string; } } } /// /// Command assembly configuation collection /// [ConfigurationCollection(typeof(CommandAssembly))] public class CommandAssemblyCollection : GenericConfigurationElementCollectionBase { } }