我正在尝试使用 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")]
是否有任何有用的示例/参考资料?