using System; namespace KYFramework.Network { public class MessageProxy : IMHandler { private readonly Type type; private readonly Action action; public MessageProxy(Type type, Action action) { this.type = type; this.action = action; } public void Handle(Session session, object message) { this.action.Invoke(session, message); } public Type GetMessageType() { return this.type; } } }