13 lines
229 B
C#
13 lines
229 B
C#
|
using System;
|
||
|
|
||
|
namespace BlogServer.XmlRpc
|
||
|
{
|
||
|
public interface IXmlRpcDynamicInvoke
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// Return true if handled.
|
||
|
/// </summary>
|
||
|
bool Invoke(string methodName, object[] parameters, out object result);
|
||
|
}
|
||
|
}
|