/ Published in: VB.NET
Expand |
Embed | Plain Text
Imports CookComputing.XmlRpc Public Interface Snipplr <CookComputing.XmlRpc.XmlRpcMethod("languages.list")> _ Function GetLangs() As String End Interface Private userProxy As Snipplr Private ClientProtocol As XmlRpcClientProtocol Private txtUrl As String userProxy = CType(XmlRpcProxyGen.Create(GetType(Snipplr)), Snipplr) ClientProtocol = CType(userProxy, XmlRpcClientProtocol) txtUrl = "http://snipplr.com/xml-rpc.php"
You need to login to post a comment.
