using System; using System.Collections.Generic; using System.Linq; using System.Text; using SuperSocket.SocketBase.Metadata; namespace SuperSocket.SocketBase.Command { /// /// The basic interface for CommandFilter /// public interface ICommandFilterProvider { /// /// Gets the filters which assosiated with this command object. /// /// IEnumerable GetFilters(); } }