我正在尝试使用c#创建xml-rpc客户端应用程序。但是我需要使主机地址可变。我对C#还是比较陌生,尝试在属性中添加变量时遇到困难。
using CookComputing.XmlRpc;
public struct SumAndDiffValue
{
public int sum;
public int difference;
}
[XmlRpcUrl("http://www.cookcomputing.com/sumAndDiff.rem")]
public interface ISumAndDiff : IXmlRpcProxy
{
[XmlRpcMethod]
SumAndDiffValue SumAndDifference(int x, int y);
}
现在我要在
中添加变量[XmlRpcUrl("hostAddress")]
是否有任何示例/参考资料有用?
答案 0 :(得分:0)
image_list