亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關(guān)于我們
? 蟲蟲下載站

?? localhost.h

?? 《VC++2005編程實(shí)例》第五章的源代碼
?? H
字號(hào):
?#pragma once

#using <mscorlib.dll>
#using <System.dll>
#using <System.Xml.dll>
#using <System.Web.Services.dll>
#using <System.EnterpriseServices.dll>
#using <System.Data.dll>

using namespace System::Security::Permissions;
[assembly:SecurityPermissionAttribute(SecurityAction::RequestMinimum, SkipVerification=false)];
// 
// 此源代碼由 wsdl 自動(dòng)生成, Version=2.0.50727.42。
// 
namespace localhost {
    using namespace System::Diagnostics;
    using namespace System::Web::Services;
    using namespace System::ComponentModel;
    using namespace System::Web::Services::Protocols;
    using namespace System;
    using namespace System::Xml::Serialization;
    using namespace System::Data;
    
    using namespace System;
    ref class Service;
    ref class HelloWorldCompletedEventArgs;
    ref class GetQueryResultCompletedEventArgs;
    
    
    /// <remarks/>
    [System::CodeDom::Compiler::GeneratedCodeAttribute(L"wsdl", L"2.0.50727.42")]
    public delegate System::Void HelloWorldCompletedEventHandler(System::Object^  sender, localhost::HelloWorldCompletedEventArgs^  e);
    
    /// <remarks/>
    [System::CodeDom::Compiler::GeneratedCodeAttribute(L"wsdl", L"2.0.50727.42")]
    public delegate System::Void GetQueryResultCompletedEventHandler(System::Object^  sender, localhost::GetQueryResultCompletedEventArgs^  e);
    
    /// <remarks/>
    [System::CodeDom::Compiler::GeneratedCodeAttribute(L"wsdl", L"2.0.50727.42"), 
    System::Diagnostics::DebuggerStepThroughAttribute, 
    System::ComponentModel::DesignerCategoryAttribute(L"code"), 
    System::Web::Services::WebServiceBindingAttribute(Name=L"ServiceSoap", Namespace=L"http://tempuri.org/")]
    public ref class Service : public System::Web::Services::Protocols::SoapHttpClientProtocol {
        
        private: System::Threading::SendOrPostCallback^  HelloWorldOperationCompleted;
        
        private: System::Threading::SendOrPostCallback^  GetQueryResultOperationCompleted;
        
        /// <remarks/>
        public: event localhost::HelloWorldCompletedEventHandler^  HelloWorldCompleted;
        
        /// <remarks/>
        public: event localhost::GetQueryResultCompletedEventHandler^  GetQueryResultCompleted;
        
        /// <remarks/>
        public: Service();
        /// <remarks/>
        public: [System::Web::Services::Protocols::SoapDocumentMethodAttribute(L"http://tempuri.org/HelloWorld", RequestNamespace=L"http://tempuri.org/", 
            ResponseNamespace=L"http://tempuri.org/", Use=System::Web::Services::Description::SoapBindingUse::Literal, ParameterStyle=System::Web::Services::Protocols::SoapParameterStyle::Wrapped)]
        System::String^  HelloWorld();
        
        /// <remarks/>
        public: System::IAsyncResult^  BeginHelloWorld(System::AsyncCallback^  callback, System::Object^  asyncState);
        
        /// <remarks/>
        public: System::String^  EndHelloWorld(System::IAsyncResult^  asyncResult);
        
        /// <remarks/>
        public: System::Void HelloWorldAsync();
        
        /// <remarks/>
        public: System::Void HelloWorldAsync(System::Object^  userState);
        
        private: System::Void OnHelloWorldOperationCompleted(System::Object^  arg);
        
        /// <remarks/>
        public: [System::Web::Services::Protocols::SoapDocumentMethodAttribute(L"http://tempuri.org/GetQueryResult", RequestNamespace=L"http://tempuri.org/", 
            ResponseNamespace=L"http://tempuri.org/", Use=System::Web::Services::Description::SoapBindingUse::Literal, ParameterStyle=System::Web::Services::Protocols::SoapParameterStyle::Wrapped)]
        System::Data::DataSet^  GetQueryResult(System::String^  MySQL);
        
        /// <remarks/>
        public: System::IAsyncResult^  BeginGetQueryResult(System::String^  MySQL, System::AsyncCallback^  callback, System::Object^  asyncState);
        
        /// <remarks/>
        public: System::Data::DataSet^  EndGetQueryResult(System::IAsyncResult^  asyncResult);
        
        /// <remarks/>
        public: System::Void GetQueryResultAsync(System::String^  MySQL);
        
        /// <remarks/>
        public: System::Void GetQueryResultAsync(System::String^  MySQL, System::Object^  userState);
        
        private: System::Void OnGetQueryResultOperationCompleted(System::Object^  arg);
        
        /// <remarks/>
        public: System::Void CancelAsync(System::Object^  userState) new;
    };
    
    /// <remarks/>
    [System::CodeDom::Compiler::GeneratedCodeAttribute(L"wsdl", L"2.0.50727.42"), 
    System::Diagnostics::DebuggerStepThroughAttribute, 
    System::ComponentModel::DesignerCategoryAttribute(L"code")]
    public ref class HelloWorldCompletedEventArgs : public System::ComponentModel::AsyncCompletedEventArgs {
        
        private: cli::array< System::Object^  >^  results;
        
        internal: HelloWorldCompletedEventArgs(cli::array< System::Object^  >^  results, System::Exception^  exception, System::Boolean cancelled, 
                    System::Object^  userState);
        /// <remarks/>
        public:  property System::String^  Result {
            System::String^  get();
        }
    };
    
    /// <remarks/>
    [System::CodeDom::Compiler::GeneratedCodeAttribute(L"wsdl", L"2.0.50727.42"), 
    System::Diagnostics::DebuggerStepThroughAttribute, 
    System::ComponentModel::DesignerCategoryAttribute(L"code")]
    public ref class GetQueryResultCompletedEventArgs : public System::ComponentModel::AsyncCompletedEventArgs {
        
        private: cli::array< System::Object^  >^  results;
        
        internal: GetQueryResultCompletedEventArgs(cli::array< System::Object^  >^  results, System::Exception^  exception, 
                    System::Boolean cancelled, System::Object^  userState);
        /// <remarks/>
        public:  property System::Data::DataSet^  Result {
            System::Data::DataSet^  get();
        }
    };
}
namespace localhost {
    
    
    inline Service::Service() {
        this->Url = L"http://localhost/WebSite/Service.asmx";
    }
    
    inline System::String^  Service::HelloWorld() {
        cli::array< System::Object^  >^  results = this->Invoke(L"HelloWorld", gcnew cli::array< System::Object^  >(0));
        return (cli::safe_cast<System::String^  >(results[0]));
    }
    
    inline System::IAsyncResult^  Service::BeginHelloWorld(System::AsyncCallback^  callback, System::Object^  asyncState) {
        return this->BeginInvoke(L"HelloWorld", gcnew cli::array< System::Object^  >(0), callback, asyncState);
    }
    
    inline System::String^  Service::EndHelloWorld(System::IAsyncResult^  asyncResult) {
        cli::array< System::Object^  >^  results = this->EndInvoke(asyncResult);
        return (cli::safe_cast<System::String^  >(results[0]));
    }
    
    inline System::Void Service::HelloWorldAsync() {
        this->HelloWorldAsync(nullptr);
    }
    
    inline System::Void Service::HelloWorldAsync(System::Object^  userState) {
        if (this->HelloWorldOperationCompleted == nullptr) {
            this->HelloWorldOperationCompleted = gcnew System::Threading::SendOrPostCallback(this, &localhost::Service::OnHelloWorldOperationCompleted);
        }
        this->InvokeAsync(L"HelloWorld", gcnew cli::array< System::Object^  >(0), this->HelloWorldOperationCompleted, userState);
    }
    
    inline System::Void Service::OnHelloWorldOperationCompleted(System::Object^  arg) {
        {
            System::Web::Services::Protocols::InvokeCompletedEventArgs^  invokeArgs = (cli::safe_cast<System::Web::Services::Protocols::InvokeCompletedEventArgs^  >(arg));
            this->HelloWorldCompleted(this, (gcnew localhost::HelloWorldCompletedEventArgs(invokeArgs->Results, invokeArgs->Error, 
                    invokeArgs->Cancelled, invokeArgs->UserState)));
        }
    }
    
    inline System::Data::DataSet^  Service::GetQueryResult(System::String^  MySQL) {
        cli::array< System::Object^  >^  results = this->Invoke(L"GetQueryResult", gcnew cli::array< System::Object^  >(1) {MySQL});
        return (cli::safe_cast<System::Data::DataSet^  >(results[0]));
    }
    
    inline System::IAsyncResult^  Service::BeginGetQueryResult(System::String^  MySQL, System::AsyncCallback^  callback, 
                System::Object^  asyncState) {
        return this->BeginInvoke(L"GetQueryResult", gcnew cli::array< System::Object^  >(1) {MySQL}, callback, asyncState);
    }
    
    inline System::Data::DataSet^  Service::EndGetQueryResult(System::IAsyncResult^  asyncResult) {
        cli::array< System::Object^  >^  results = this->EndInvoke(asyncResult);
        return (cli::safe_cast<System::Data::DataSet^  >(results[0]));
    }
    
    inline System::Void Service::GetQueryResultAsync(System::String^  MySQL) {
        this->GetQueryResultAsync(MySQL, nullptr);
    }
    
    inline System::Void Service::GetQueryResultAsync(System::String^  MySQL, System::Object^  userState) {
        if (this->GetQueryResultOperationCompleted == nullptr) {
            this->GetQueryResultOperationCompleted = gcnew System::Threading::SendOrPostCallback(this, &localhost::Service::OnGetQueryResultOperationCompleted);
        }
        this->InvokeAsync(L"GetQueryResult", gcnew cli::array< System::Object^  >(1) {MySQL}, this->GetQueryResultOperationCompleted, 
            userState);
    }
    
    inline System::Void Service::OnGetQueryResultOperationCompleted(System::Object^  arg) {
        {
            System::Web::Services::Protocols::InvokeCompletedEventArgs^  invokeArgs = (cli::safe_cast<System::Web::Services::Protocols::InvokeCompletedEventArgs^  >(arg));
            this->GetQueryResultCompleted(this, (gcnew localhost::GetQueryResultCompletedEventArgs(invokeArgs->Results, invokeArgs->Error, 
                    invokeArgs->Cancelled, invokeArgs->UserState)));
        }
    }
    
    inline System::Void Service::CancelAsync(System::Object^  userState) {
        __super::CancelAsync(userState);
    }
    
    
    inline HelloWorldCompletedEventArgs::HelloWorldCompletedEventArgs(cli::array< System::Object^  >^  results, System::Exception^  exception, 
                System::Boolean cancelled, System::Object^  userState) : 
            System::ComponentModel::AsyncCompletedEventArgs(exception, cancelled, userState) {
        this->results = results;
    }
    
    inline System::String^  HelloWorldCompletedEventArgs::Result::get() {
        this->RaiseExceptionIfNecessary();
        return (cli::safe_cast<System::String^  >(this->results[0]));
    }
    
    
    inline GetQueryResultCompletedEventArgs::GetQueryResultCompletedEventArgs(cli::array< System::Object^  >^  results, System::Exception^  exception, 
                System::Boolean cancelled, System::Object^  userState) : 
            System::ComponentModel::AsyncCompletedEventArgs(exception, cancelled, userState) {
        this->results = results;
    }
    
    inline System::Data::DataSet^  GetQueryResultCompletedEventArgs::Result::get() {
        this->RaiseExceptionIfNecessary();
        return (cli::safe_cast<System::Data::DataSet^  >(this->results[0]));
    }
}

?? 快捷鍵說明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號(hào) Ctrl + =
減小字號(hào) Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
一区二区三区免费看视频| 26uuu精品一区二区三区四区在线| 最新国产精品久久精品| 粉嫩av一区二区三区| 国产欧美日韩精品在线| 99免费精品视频| 亚洲女与黑人做爰| 7777精品伊人久久久大香线蕉经典版下载 | 亚洲综合图片区| 欧美性做爰猛烈叫床潮| 日韩国产高清影视| wwwwxxxxx欧美| 99re在线视频这里只有精品| 亚洲精品中文在线影院| 欧美日韩国产天堂| 韩国av一区二区三区四区| 国产精品久久久久久久久免费桃花| 色综合天天综合网国产成人综合天| 亚洲福利视频导航| 精品国产成人在线影院| 不卡的av电影在线观看| 亚洲成人免费视| 久久久久久久久蜜桃| 色偷偷久久人人79超碰人人澡 | 亚洲欧洲日韩在线| 欧美乱妇20p| 国产福利一区二区| 亚洲成av人片一区二区梦乃| 久久久精品天堂| 欧美系列在线观看| 国产综合色精品一区二区三区| 中文字幕在线一区| 亚洲男女毛片无遮挡| 成人国产视频在线观看| 国产日本欧洲亚洲| 欧美视频一区二区三区四区| 久久99精品国产麻豆婷婷洗澡| 国产欧美日韩另类一区| 欧美欧美欧美欧美| 成人黄色在线视频| 免费在线看成人av| 国产精品第五页| 欧美电影免费观看高清完整版在线观看| 粉嫩蜜臀av国产精品网站| 日韩精品一区第一页| 国产精品毛片大码女人| 精品少妇一区二区三区在线视频| 99久久久久久| 国产精品一区专区| 乱中年女人伦av一区二区| 亚洲精品自拍动漫在线| 中文字幕av一区 二区| 精品区一区二区| 91麻豆精品国产91久久久资源速度 | 色av一区二区| 成人av电影免费在线播放| 国产一区二区精品久久99| 日韩和欧美一区二区| 亚洲精品一卡二卡| 中文字幕一区二区三区乱码在线| 欧美精品一区二区三区在线| 4438成人网| 欧美老人xxxx18| 欧美午夜精品一区二区三区| 一本久久a久久免费精品不卡| 国产成人精品综合在线观看| 久久99精品视频| 久久精品国产精品亚洲红杏| 亚洲国产精品自拍| 亚洲国产日韩综合久久精品| 一区二区三区欧美在线观看| 一区二区在线免费观看| 亚洲人成人一区二区在线观看| 中文字幕乱码日本亚洲一区二区| 国产亚洲制服色| 国产女主播一区| 国产精品情趣视频| 国产精品久久久久久妇女6080| 日本一区二区三区国色天香| 亚洲国产精品传媒在线观看| 国产欧美精品一区二区色综合朱莉| 久久精品视频一区二区三区| 国产午夜亚洲精品理论片色戒 | 精品国精品自拍自在线| 日韩三级电影网址| 久久久久免费观看| 国产蜜臀97一区二区三区 | 一区二区三区精品视频| 亚洲大尺度视频在线观看| 日韩成人免费电影| 狠狠色丁香婷综合久久| 国产在线精品一区二区三区不卡| 国产精品一区二区三区99| k8久久久一区二区三区| 91国偷自产一区二区三区观看| 欧美伊人精品成人久久综合97| 欧美亚洲综合久久| 日韩视频免费直播| 久久精品人人做人人综合| 亚洲欧洲性图库| 视频在线在亚洲| 国产高清不卡一区| 在线观看日韩一区| 精品国产第一区二区三区观看体验| 欧美—级在线免费片| 亚洲与欧洲av电影| 久久狠狠亚洲综合| 不卡电影一区二区三区| 欧美日韩亚洲综合一区| 久久久亚洲精华液精华液精华液| 亚洲国产精品av| 亚洲综合在线免费观看| 久久99精品久久只有精品| 99精品偷自拍| 91 com成人网| 国产精品美女久久久久久久久| 亚洲.国产.中文慕字在线| 九九精品一区二区| 在线免费观看成人短视频| 精品入口麻豆88视频| 亚洲天堂久久久久久久| 免费看欧美女人艹b| av福利精品导航| 精品日韩一区二区| 一区二区三区鲁丝不卡| 国产盗摄女厕一区二区三区| 欧美日韩一区二区三区四区| 国产欧美一区二区三区沐欲| 香蕉久久一区二区不卡无毒影院| 国产精品一区二区视频| 91精品综合久久久久久| 中文字幕一区二区三区av| 免播放器亚洲一区| 欧美制服丝袜第一页| 久久久精品国产99久久精品芒果| 午夜精品久久久久久久蜜桃app| 成人一区二区三区中文字幕| 欧美浪妇xxxx高跟鞋交| 日韩一区欧美一区| 国产一区二区三区在线观看免费| 欧美三电影在线| 亚洲婷婷在线视频| 国产精品小仙女| 日韩一区二区三区免费看| 亚洲成在人线在线播放| 色久综合一二码| 国产精品成人网| 成人手机电影网| 中文字幕乱码一区二区免费| 国产在线精品国自产拍免费| 日韩美女天天操| 日韩精品国产精品| 欧美日韩一区二区三区视频 | 欧美日韩国产小视频在线观看| 亚洲欧洲av另类| 成人福利视频网站| 国产人成一区二区三区影院| 久久se这里有精品| 日韩欧美一级二级三级久久久| 亚洲成人动漫在线免费观看| 欧美在线啊v一区| 一区二区高清在线| 色国产综合视频| 亚洲一卡二卡三卡四卡| 在线免费亚洲电影| 亚洲成人av一区二区三区| 91久久精品一区二区二区| 亚洲精品精品亚洲| 在线观看国产一区二区| 亚洲图片一区二区| 91精品国产色综合久久不卡电影 | 美国av一区二区| 2021中文字幕一区亚洲| 国产精品1024| 国产精品乱码一区二三区小蝌蚪| 成人性生交大片免费看在线播放| 国产精品卡一卡二| 99在线视频精品| 亚洲精品视频一区二区| 欧美亚洲国产bt| 午夜一区二区三区视频| 日韩视频一区二区在线观看| 国产一区二区三区四区五区入口| 国产欧美日韩三区| 91在线视频观看| 午夜伊人狠狠久久| 精品国精品国产| 成人免费毛片片v| 亚洲成人你懂的| 久久影院午夜片一区| 色综合久久中文字幕综合网| 日韩精品电影一区亚洲| 精品美女一区二区三区| 成人伦理片在线| 亚洲第一福利视频在线| 久久夜色精品一区| 在线视频一区二区三| 另类综合日韩欧美亚洲| 中文字幕欧美国产| 在线成人免费观看|