'------------------------------------------------------------------------------
'
' This code was generated by a tool.
' Runtime Version: 1.0.3705.288
'
' Changes to this file may cause incorrect behavior and will be lost if
' the code is regenerated.
'
'------------------------------------------------------------------------------
Option Strict Off
Option Explicit On
Imports System
Imports System.ComponentModel
Imports System.Diagnostics
Imports System.Web.Services
Imports System.Web.Services.Protocols
Imports System.Xml.Serialization
'
'Saturn Web Development Tool
'
Namespace ect
'
_
Public Class detailClass
Inherits System.Web.Services.Protocols.SoapHttpClientProtocol
'
Public Sub New()
MyBase.New
Me.Url = "http://192.168.1.5/agsm/detail/detail.asmx"
End Sub
'
_
Public Function infoRetrieval(ByVal loginID As String) As System.Data.DataSet
Dim results() As Object = Me.Invoke("infoRetrieval", New Object() {loginID})
Return CType(results(0),System.Data.DataSet)
End Function
'
Public Function BegininfoRetrieval(ByVal loginID As String, ByVal callback As System.AsyncCallback, ByVal asyncState As Object) As System.IAsyncResult
Return Me.BeginInvoke("infoRetrieval", New Object() {loginID}, callback, asyncState)
End Function
'
Public Function EndinfoRetrieval(ByVal asyncResult As System.IAsyncResult) As System.Data.DataSet
Dim results() As Object = Me.EndInvoke(asyncResult)
Return CType(results(0),System.Data.DataSet)
End Function
End Class
End Namespace