2

我喜欢通过 xmlrpc 界面与我的一些 wordpress 博客进行交互。在我的研究过程中,我发现 xml-rpc.net-Library (www.xml-rpc.net) 除了一件事之外,它工作得非常好。

我像这样构建我的 xmlrpc.net 实例:

[XmlRpcUrlAttribute("http://my-example-blog.com/xmlrpc.php")]
public class WP : XmlRpcClientProtocol
{
    public WP()
    {

    }

    ...
}

但我想在运行时动态设置 xmlrpc-Url。所以我喜欢在运行时的 UI 期间添加更多的博客,并且不想实现每个博客“硬编码”。

有没有人有同样的问题,可以帮助我吗?xmlrpc.net-library 中是否还有另一种可能性,或者您知道另一个好的 xmlrpc 库吗?

问候,拉菲

4

1 回答 1

4

您可以在运行时指定 URL:

proxy.Url = "http://my-example-blog.com/xmlrpc.php";
于 2012-05-08T21:48:05.643 回答