using System; using System.Reflection; namespace Tapeti.Config { /// /// /// Represents a binding to a method in a controller class to handle incoming messages. /// public interface IControllerMethodBinding : IBinding { /// /// The controller class. /// Type Controller { get; } /// /// The method on the Controller class to which this binding is bound. /// MethodInfo Method { get; } } }