XML-RPC.NET
- 授权协议: MIT
- 开发语言: .NET
- 操作系统: Windows
- 软件首页: http://www.xml-rpc.net/
- 软件文档: http://www.xml-rpc.net/faq/xmlrpcnetfaq.html
软件介绍
XML-RPC.NET 是一个 .NET 的客户端服务器的基于 XML-RPC 远程过程调用的框架。
示例代码:
[XmlRpcUrl("http://betty.userland.com/RPC2")]
public interface IStateName : IXmlRpcProxy
{
[XmlRpcMethod("examples.getStateName")]
string GetStateName(int stateNumber);
}
IStateName proxy = XmlRpcProxyGen.Create<IStateName>();
string stateName = proxy.GetStateName(41);
High Performance Python
Andrew Lewis / O'Reilly Media, Inc. / 2010-09-15 / USD 34.99
Chapter 1. Introduction Section 1.1. The High Performance Buzz-word Chapter 2. The Theory of Computation Section 2.1. Introduction Section 2.2. Problems Section 2.3. Models of Computati......一起来看看 《High Performance Python》 这本书的介绍吧!
