📄 reference.vb
字号:
'------------------------------------------------------------------------------
' <auto-generated>
' 此代码由工具生成。
' 运行库版本:2.0.50727.42
'
' 对此文件的更改可能会导致不正确的行为,并且如果
' 重新生成代码,这些更改将会丢失。
' </auto-generated>
'------------------------------------------------------------------------------
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
'
'此源代码是由 Microsoft.CompactFramework.Design.Data 2.0.50727.42 版自动生成。
'
Namespace szgs_7237
'''<remarks/>
<System.Diagnostics.DebuggerStepThroughAttribute(), _
System.ComponentModel.DesignerCategoryAttribute("code"), _
System.Web.Services.WebServiceBindingAttribute(Name:="UserLoginSoap", [Namespace]:="com.MobileMis")> _
Partial Public Class UserLogin
Inherits System.Web.Services.Protocols.SoapHttpClientProtocol
'''<remarks/>
Public Sub New()
MyBase.New
Me.Url = "http://86.100.21.5/MobileMis/UserLogin.asmx"
End Sub
'''<remarks/>
<System.Web.Services.Protocols.SoapDocumentMethodAttribute("com.MobileMis/Login", RequestNamespace:="com.MobileMis", ResponseNamespace:="com.MobileMis", Use:=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle:=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)> _
Public Function Login(ByVal id As String, ByVal passwd As String) As String
Dim results() As Object = Me.Invoke("Login", New Object() {id, passwd})
Return CType(results(0),String)
End Function
'''<remarks/>
Public Function BeginLogin(ByVal id As String, ByVal passwd As String, ByVal callback As System.AsyncCallback, ByVal asyncState As Object) As System.IAsyncResult
Return Me.BeginInvoke("Login", New Object() {id, passwd}, callback, asyncState)
End Function
'''<remarks/>
Public Function EndLogin(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
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -