本文整理汇总了VB.NET中System.Web.Services.Protocols.HttpSimpleClientProtocol.BeginInvoke方法的典型用法代码示例。如果您正苦于以下问题:VB.NET HttpSimpleClientProtocol.BeginInvoke方法的具体用法?VB.NET HttpSimpleClientProtocol.BeginInvoke怎么用?VB.NET HttpSimpleClientProtocol.BeginInvoke使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类System.Web.Services.Protocols.HttpSimpleClientProtocol
的用法示例。
在下文中一共展示了HttpSimpleClientProtocol.BeginInvoke方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的VB.NET代码示例。
示例1: New
Namespace MyMath
<XmlRootAttribute("int", Namespace := "http://MyMath/", IsNullable := False)> _
Public Class Math
Inherits HttpGetClientProtocol
Public Sub New()
Me.Url = "http://www.contoso.com/math.asmx"
End Sub
<HttpMethodAttribute(GetType(XmlReturnReader), GetType(UrlParameterWriter))> _
Public Function Add(num1 As String, num2 As String) As Integer
Return CInt(Me.Invoke("Add", Me.Url + "/Add", New Object() {num1, num2}))
End Function 'Add
Public Function BeginAdd(num1 As String, num2 As String, callback As AsyncCallback, asyncState As Object) As IAsyncResult
Return Me.BeginInvoke("Add", Me.Url + "/Add", New Object() {num1, num2}, callback, asyncState)
End Function 'BeginAdd
Public Function EndAdd(asyncResult As IAsyncResult) As Integer
Return CInt(Me.EndInvoke(asyncResult))
End Function 'EndAdd
End Class
End Namespace 'MyMath
开发者ID:VB.NET开发者,项目名称:System.Web.Services.Protocols,代码行数:25,代码来源:HttpSimpleClientProtocol.BeginInvoke