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

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? reference.cs

?? 實現飛機定票.用c#語言編寫
?? CS
字號:
?//------------------------------------------------------------------------------
// <auto-generated>
//     This code was generated by a tool.
//     Runtime Version:2.0.50727.832
//
//     Changes to this file may cause incorrect behavior and will be lost if
//     the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------

// 
// This source code was auto-generated by Microsoft.VSDesigner, Version 2.0.50727.832.
// 
#pragma warning disable 1591

namespace AirlineBooking4439.localhost {
    using System.Diagnostics;
    using System.Web.Services;
    using System.ComponentModel;
    using System.Web.Services.Protocols;
    using System;
    using System.Xml.Serialization;
    using System.Data;
    
    
    /// <remarks/>
    [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "2.0.50727.42")]
    [System.Diagnostics.DebuggerStepThroughAttribute()]
    [System.ComponentModel.DesignerCategoryAttribute("code")]
    [System.Web.Services.WebServiceBindingAttribute(Name="FlightBooking4439Soap", Namespace="http://tempuri.org/")]
    public partial class FlightBooking4439 : System.Web.Services.Protocols.SoapHttpClientProtocol {
        
        private System.Threading.SendOrPostCallback getInfoOperationCompleted;
        
        private System.Threading.SendOrPostCallback updateOperationCompleted;
        
        private bool useDefaultCredentialsSetExplicitly;
        
        /// <remarks/>
        public FlightBooking4439() {
            this.Url = global::AirlineBooking4439.Properties.Settings.Default.AirlineBooking4439_localhost_FlightBooking4439;
            if ((this.IsLocalFileSystemWebService(this.Url) == true)) {
                this.UseDefaultCredentials = true;
                this.useDefaultCredentialsSetExplicitly = false;
            }
            else {
                this.useDefaultCredentialsSetExplicitly = true;
            }
        }
        
        public new string Url {
            get {
                return base.Url;
            }
            set {
                if ((((this.IsLocalFileSystemWebService(base.Url) == true) 
                            && (this.useDefaultCredentialsSetExplicitly == false)) 
                            && (this.IsLocalFileSystemWebService(value) == false))) {
                    base.UseDefaultCredentials = false;
                }
                base.Url = value;
            }
        }
        
        public new bool UseDefaultCredentials {
            get {
                return base.UseDefaultCredentials;
            }
            set {
                base.UseDefaultCredentials = value;
                this.useDefaultCredentialsSetExplicitly = true;
            }
        }
        
        /// <remarks/>
        public event getInfoCompletedEventHandler getInfoCompleted;
        
        /// <remarks/>
        public event updateCompletedEventHandler updateCompleted;
        
        /// <remarks/>
        [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://tempuri.org/getInfo", RequestNamespace="http://tempuri.org/", ResponseNamespace="http://tempuri.org/", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)]
        public System.Data.DataSet getInfo() {
            object[] results = this.Invoke("getInfo", new object[0]);
            return ((System.Data.DataSet)(results[0]));
        }
        
        /// <remarks/>
        public void getInfoAsync() {
            this.getInfoAsync(null);
        }
        
        /// <remarks/>
        public void getInfoAsync(object userState) {
            if ((this.getInfoOperationCompleted == null)) {
                this.getInfoOperationCompleted = new System.Threading.SendOrPostCallback(this.OngetInfoOperationCompleted);
            }
            this.InvokeAsync("getInfo", new object[0], this.getInfoOperationCompleted, userState);
        }
        
        private void OngetInfoOperationCompleted(object arg) {
            if ((this.getInfoCompleted != null)) {
                System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg));
                this.getInfoCompleted(this, new getInfoCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState));
            }
        }
        
        /// <remarks/>
        [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://tempuri.org/update", RequestNamespace="http://tempuri.org/", ResponseNamespace="http://tempuri.org/", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)]
        public System.Data.DataSet update(System.Data.DataSet ds) {
            object[] results = this.Invoke("update", new object[] {
                        ds});
            return ((System.Data.DataSet)(results[0]));
        }
        
        /// <remarks/>
        public void updateAsync(System.Data.DataSet ds) {
            this.updateAsync(ds, null);
        }
        
        /// <remarks/>
        public void updateAsync(System.Data.DataSet ds, object userState) {
            if ((this.updateOperationCompleted == null)) {
                this.updateOperationCompleted = new System.Threading.SendOrPostCallback(this.OnupdateOperationCompleted);
            }
            this.InvokeAsync("update", new object[] {
                        ds}, this.updateOperationCompleted, userState);
        }
        
        private void OnupdateOperationCompleted(object arg) {
            if ((this.updateCompleted != null)) {
                System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg));
                this.updateCompleted(this, new updateCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState));
            }
        }
        
        /// <remarks/>
        public new void CancelAsync(object userState) {
            base.CancelAsync(userState);
        }
        
        private bool IsLocalFileSystemWebService(string url) {
            if (((url == null) 
                        || (url == string.Empty))) {
                return false;
            }
            System.Uri wsUri = new System.Uri(url);
            if (((wsUri.Port >= 1024) 
                        && (string.Compare(wsUri.Host, "localHost", System.StringComparison.OrdinalIgnoreCase) == 0))) {
                return true;
            }
            return false;
        }
    }
    
    /// <remarks/>
    [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "2.0.50727.42")]
    public delegate void getInfoCompletedEventHandler(object sender, getInfoCompletedEventArgs e);
    
    /// <remarks/>
    [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "2.0.50727.42")]
    [System.Diagnostics.DebuggerStepThroughAttribute()]
    [System.ComponentModel.DesignerCategoryAttribute("code")]
    public partial class getInfoCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs {
        
        private object[] results;
        
        internal getInfoCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : 
                base(exception, cancelled, userState) {
            this.results = results;
        }
        
        /// <remarks/>
        public System.Data.DataSet Result {
            get {
                this.RaiseExceptionIfNecessary();
                return ((System.Data.DataSet)(this.results[0]));
            }
        }
    }
    
    /// <remarks/>
    [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "2.0.50727.42")]
    public delegate void updateCompletedEventHandler(object sender, updateCompletedEventArgs e);
    
    /// <remarks/>
    [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "2.0.50727.42")]
    [System.Diagnostics.DebuggerStepThroughAttribute()]
    [System.ComponentModel.DesignerCategoryAttribute("code")]
    public partial class updateCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs {
        
        private object[] results;
        
        internal updateCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : 
                base(exception, cancelled, userState) {
            this.results = results;
        }
        
        /// <remarks/>
        public System.Data.DataSet Result {
            get {
                this.RaiseExceptionIfNecessary();
                return ((System.Data.DataSet)(this.results[0]));
            }
        }
    }
}

#pragma warning restore 1591

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
日韩精品自拍偷拍| 欧美午夜在线观看| 久久综合色婷婷| 久久福利资源站| 精品精品国产高清a毛片牛牛| 美女尤物国产一区| 久久欧美一区二区| 成人性生交大片免费看中文| 中文字幕永久在线不卡| 日本韩国精品在线| 丝袜美腿亚洲综合| 久久综合丝袜日本网| 成人激情黄色小说| 亚洲成人你懂的| 日韩亚洲欧美一区| 处破女av一区二区| 一区二区三区久久| 精品国产一区久久| 99国产精品久久久久久久久久| 一区二区三区欧美日| 日韩女优av电影在线观看| 成人午夜视频免费看| 香蕉乱码成人久久天堂爱免费| 久久亚洲欧美国产精品乐播| 色综合视频在线观看| 日韩国产成人精品| 国产精品麻豆久久久| 欧美日韩国产bt| 国产 欧美在线| 日韩综合一区二区| 中文字幕一区日韩精品欧美| 7777女厕盗摄久久久| 丁香亚洲综合激情啪啪综合| 亚洲www啪成人一区二区麻豆| 久久久精品日韩欧美| 91.麻豆视频| 99久久精品国产麻豆演员表| 免费成人av在线播放| 亚洲男同性视频| 久久综合成人精品亚洲另类欧美 | 一区二区三区日韩精品| 欧美精品一区二区蜜臀亚洲| 欧美综合视频在线观看| 国产成人在线色| 日本成人在线不卡视频| 亚洲欧美日韩中文字幕一区二区三区 | 99国产欧美久久久精品| 国产一区在线视频| 日韩电影一区二区三区四区| 亚洲人精品午夜| 久久久99精品免费观看不卡| 日韩天堂在线观看| 欧美午夜在线一二页| 91美女在线观看| 成人黄色网址在线观看| 狠狠色丁香久久婷婷综合_中| 亚洲国产综合色| 亚洲人成精品久久久久| 国产精品免费网站在线观看| 久久夜色精品国产噜噜av| 欧美老女人在线| 色久优优欧美色久优优| 成人教育av在线| 国产成人精品免费一区二区| 国产中文字幕一区| 美女被吸乳得到大胸91| 美女网站视频久久| 五月综合激情网| 午夜精品免费在线| 丝袜美腿成人在线| 日韩精品久久久久久| 亚洲成a人v欧美综合天堂| 一区二区三区在线免费| 亚洲欧美精品午睡沙发| 亚洲欧美激情插| 亚洲精品国产成人久久av盗摄| 中文字幕一区二区三区在线播放 | 国产亚洲视频系列| 久久女同互慰一区二区三区| 国产拍欧美日韩视频二区| 日本一区二区免费在线观看视频| 久久精品视频在线看| 日本一区二区三区电影| 亚洲你懂的在线视频| 亚洲精品国产第一综合99久久| 亚洲综合色噜噜狠狠| 亚洲午夜视频在线| 日韩国产欧美在线播放| 精品一区二区三区视频| 国产精品原创巨作av| 高清av一区二区| 色又黄又爽网站www久久| 在线观看一区日韩| 这里只有精品电影| 亚洲精品一区二区三区蜜桃下载 | 日韩女优视频免费观看| 久久网这里都是精品| 中文字幕一区二区三中文字幕| 亚洲免费在线观看| 日本v片在线高清不卡在线观看| 精品一区二区在线播放| youjizz久久| 91久久免费观看| 欧美一区二区三区思思人| 久久奇米777| 一区二区三区在线免费视频| 卡一卡二国产精品| 成人ar影院免费观看视频| 欧美日韩视频专区在线播放| 亚洲精品一区二区三区精华液| 亚洲视频一二区| 日本不卡在线视频| 成人aaaa免费全部观看| 欧美男生操女生| 欧美国产日韩一二三区| 亚洲国产成人av| 国内精品免费在线观看| 色国产精品一区在线观看| 欧美本精品男人aⅴ天堂| 亚洲人成伊人成综合网小说| 久草在线在线精品观看| 欧洲人成人精品| 国产日韩精品一区二区三区在线| 亚洲综合视频在线| 国产精品一区免费视频| 欧洲中文字幕精品| 国产欧美综合在线观看第十页| 午夜精品久久久久久久久| 成人免费视频caoporn| 日韩欧美一级二级三级久久久| 中文字幕一区二区在线播放| 国内精品国产成人国产三级粉色| 色香色香欲天天天影视综合网| 久久这里只有精品6| 日韩av中文在线观看| 日本精品裸体写真集在线观看 | 欧美国产精品专区| 麻豆精品视频在线观看免费| 在线亚洲精品福利网址导航| 国产精品无遮挡| 国产精品一区二区三区网站| 欧美一级搡bbbb搡bbbb| 亚洲国产精品一区二区www在线| 国产成人免费在线观看| 精品国产sm最大网站| 日日夜夜精品视频免费| 欧美日韩美少妇| 亚洲视频网在线直播| 波多野结衣在线aⅴ中文字幕不卡| 欧美大片拔萝卜| 日本在线不卡一区| 欧美日韩aaaaaa| 亚洲自拍偷拍欧美| 91久久精品日日躁夜夜躁欧美| 中文字幕亚洲综合久久菠萝蜜| 国产精品白丝jk黑袜喷水| 日韩女优电影在线观看| 麻豆成人免费电影| 日韩欧美在线网站| 久久成人18免费观看| 日韩精品中文字幕一区| 日韩精品五月天| 欧美一区二区三区四区高清| 日韩福利视频网| 欧美一二三四区在线| 日本欧美一区二区| 日韩三级视频在线看| 麻豆精品视频在线观看免费| 精品国产乱码久久久久久老虎| 久久精工是国产品牌吗| 日韩一级片网站| 九九视频精品免费| 久久久久九九视频| 风流少妇一区二区| 国产精品日韩成人| 99re这里只有精品首页| 亚洲男帅同性gay1069| 欧美综合色免费| 免费视频一区二区| 久久青草欧美一区二区三区| 成人黄动漫网站免费app| 亚洲精选视频免费看| 欧美日韩国产精品成人| 狠狠色综合播放一区二区| 日本一区二区电影| 日本大香伊一区二区三区| 日韩精品电影一区亚洲| 欧美mv和日韩mv的网站| 三级久久三级久久久| 欧美人与禽zozo性伦| 婷婷夜色潮精品综合在线| 欧美性受xxxx黑人xyx性爽| 亚洲一区二区三区视频在线播放| 国产凹凸在线观看一区二区| 18欧美乱大交hd1984| 欧美日韩高清在线播放| 精品午夜一区二区三区在线观看| 中文字幕精品三区| 欧美日韩一级片在线观看| 激情小说欧美图片|