OpenLiveWriter/utilities/BlogServer/XmlRpc/IXmlRpcDynamicInvoke.cs

13 lines
229 B
C#
Raw Normal View History

2015-12-09 10:38:46 +00:00
using System;
namespace BlogServer.XmlRpc
{
public interface IXmlRpcDynamicInvoke
{
/// <summary>
/// Return true if handled.
/// </summary>
bool Invoke(string methodName, object[] parameters, out object result);
}
}