'------------------------------------------------------------------------------
'
' 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 agsmNewUserClass
Inherits System.Web.Services.Protocols.SoapHttpClientProtocol
'
Public Sub New()
MyBase.New
Me.Url = "http://www.gcrc.uic.edu/agsm/newUser/newUser1.asmx"
End Sub
'
_
Public Function AddNewUser1(ByVal lastName As String) As String
Dim results() As Object = Me.Invoke("AddNewUser1", New Object() {lastName})
Return CType(results(0),String)
End Function
'
Public Function BeginAddNewUser1(ByVal lastName As String, ByVal callback As System.AsyncCallback, ByVal asyncState As Object) As System.IAsyncResult
Return Me.BeginInvoke("AddNewUser1", New Object() {lastName}, callback, asyncState)
End Function
'
Public Function EndAddNewUser1(ByVal asyncResult As System.IAsyncResult) As String
Dim results() As Object = Me.EndInvoke(asyncResult)
Return CType(results(0),String)
End Function
End Class
End Namespace