using System; namespace BlogServer.XmlRpc { public interface IXmlRpcDynamicInvoke { /// /// Return true if handled. /// bool Invoke(string methodName, object[] parameters, out object result); } }