databaseservice.vb

来自「asp入门到精通的源代码」· VB 代码 · 共 64 行

VB
64
字号
'------------------------------------------------------------------------------
' <autogenerated>
'     This code was generated by a tool.
'     Runtime Version: 1.0.2914.16
'
'     Changes to this file may cause incorrect behavior and will be lost if 
'     the code is regenerated.
' </autogenerated>
'------------------------------------------------------------------------------

Option Strict Off
Option Explicit On

Imports System
Imports System.Diagnostics
Imports System.Web.Services
Imports System.Web.Services.Protocols
Imports System.Xml.Serialization

'
'This source code was auto-generated by wsdl, Version=1.0.2914.16.
'
Namespace TYASPNET
    
    Public Class <System.Web.Services.WebServiceBindingAttribute(Name:="DatabaseServiceSoap", [Namespace]:="http://tempuri.org/")> DatabaseService
        Inherits System.Web.Services.Protocols.SoapHttpClientProtocol
        
        Public Sub New()
            MyBase.New
            Me.Url = "http://localhost/tyaspnet21days/day16/database.asmx"
        End Sub
        
        Public Function <System.Diagnostics.DebuggerStepThroughAttribute(),  _
         System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://tempuri.org/SelectSQL")> SelectSQL(ByVal strSelect As String) As System.Data.DataSet
            Dim results() As Object = Me.Invoke("SelectSQL", New Object() {strSelect})
            Return CType(results(0),System.Data.DataSet)
        End Function
        
        Public Function <System.Diagnostics.DebuggerStepThroughAttribute()> BeginSelectSQL(ByVal strSelect As String, ByVal callback As System.AsyncCallback, ByVal asyncState As Object) As System.IAsyncResult
            Return Me.BeginInvoke("SelectSQL", New Object() {strSelect}, callback, asyncState)
        End Function
        
        Public Function <System.Diagnostics.DebuggerStepThroughAttribute()> EndSelectSQL(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
        
        Public Function <System.Diagnostics.DebuggerStepThroughAttribute(),  _
         System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://tempuri.org/ExecuteNonQuery")> ExecuteNonQuery(ByVal strQuery As String) As Boolean
            Dim results() As Object = Me.Invoke("ExecuteNonQuery", New Object() {strQuery})
            Return CType(results(0),Boolean)
        End Function
        
        Public Function <System.Diagnostics.DebuggerStepThroughAttribute()> BeginExecuteNonQuery(ByVal strQuery As String, ByVal callback As System.AsyncCallback, ByVal asyncState As Object) As System.IAsyncResult
            Return Me.BeginInvoke("ExecuteNonQuery", New Object() {strQuery}, callback, asyncState)
        End Function
        
        Public Function <System.Diagnostics.DebuggerStepThroughAttribute()> EndExecuteNonQuery(ByVal asyncResult As System.IAsyncResult) As Boolean
            Dim results() As Object = Me.EndInvoke(asyncResult)
            Return CType(results(0),Boolean)
        End Function
    End Class
End Namespace

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?