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

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

?? upserver.cs

?? 通過數(shù)據(jù)庫結(jié)構(gòu)自動 生成三層結(jié)構(gòu)代碼,相當(dāng)不錯的一款軟件
?? CS
字號:
namespace Codematic.UpServer
{
    using Codematic.Properties;
    using System;
    using System.CodeDom.Compiler;
    using System.ComponentModel;
    using System.Diagnostics;
    using System.Runtime.CompilerServices;
    using System.Threading;
    using System.Web.Services;
    using System.Web.Services.Description;
    using System.Web.Services.Protocols;
    using System.Xml.Serialization;

    [DesignerCategory("code"), WebServiceBinding(Name="UpServerSoap", Namespace="http://tempuri.org/"), GeneratedCode("System.Web.Services", "2.0.50727.42"), DebuggerStepThrough]
    public class UpServer : SoapHttpClientProtocol
    {
        private SendOrPostCallback ErrInfoOperationCompleted;
        private SendOrPostCallback GetFileListOperationCompleted;
        private SendOrPostCallback GetNewFilePathOperationCompleted;
        private SendOrPostCallback GetServerUrlOperationCompleted;
        private SendOrPostCallback GetVersionOperationCompleted;
        private bool useDefaultCredentialsSetExplicitly;

        public event ErrInfoCompletedEventHandler ErrInfoCompleted;

        public event GetFileListCompletedEventHandler GetFileListCompleted;

        public event GetNewFilePathCompletedEventHandler GetNewFilePathCompleted;

        public event GetServerUrlCompletedEventHandler GetServerUrlCompleted;

        public event GetVersionCompletedEventHandler GetVersionCompleted;

        public UpServer()
        {
            this.Url = Settings.Default.Codematic_UpServer_UpServer;
            if (this.IsLocalFileSystemWebService(this.Url))
            {
                this.UseDefaultCredentials = true;
                this.useDefaultCredentialsSetExplicitly = false;
            }
            else
            {
                this.useDefaultCredentialsSetExplicitly = true;
            }
        }

        public void CancelAsync(object userState)
        {
            base.CancelAsync(userState);
        }

        [SoapDocumentMethod("http://tempuri.org/ErrInfo", RequestNamespace="http://tempuri.org/", ResponseNamespace="http://tempuri.org/", Use=SoapBindingUse.Literal, ParameterStyle=SoapParameterStyle.Wrapped)]
        public void ErrInfo(string softname, string sysinfo, [XmlElement("errinfo")] string errinfo1)
        {
            base.Invoke("ErrInfo", new object[] { softname, sysinfo, errinfo1 });
        }

        public void ErrInfoAsync(string softname, string sysinfo, string errinfo1)
        {
            this.ErrInfoAsync(softname, sysinfo, errinfo1, null);
        }

        public void ErrInfoAsync(string softname, string sysinfo, string errinfo1, object userState)
        {
            if (this.ErrInfoOperationCompleted == null)
            {
                this.ErrInfoOperationCompleted = new SendOrPostCallback(this.OnErrInfoOperationCompleted);
            }
            base.InvokeAsync("ErrInfo", new object[] { softname, sysinfo, errinfo1 }, this.ErrInfoOperationCompleted, userState);
        }

        [SoapDocumentMethod("http://tempuri.org/GetFileList", RequestNamespace="http://tempuri.org/", ResponseNamespace="http://tempuri.org/", Use=SoapBindingUse.Literal, ParameterStyle=SoapParameterStyle.Wrapped)]
        public string GetFileList()
        {
            return (string) base.Invoke("GetFileList", new object[0])[0];
        }

        public void GetFileListAsync()
        {
            this.GetFileListAsync(null);
        }

        public void GetFileListAsync(object userState)
        {
            if (this.GetFileListOperationCompleted == null)
            {
                this.GetFileListOperationCompleted = new SendOrPostCallback(this.OnGetFileListOperationCompleted);
            }
            base.InvokeAsync("GetFileList", new object[0], this.GetFileListOperationCompleted, userState);
        }

        [SoapDocumentMethod("http://tempuri.org/GetNewFilePath", RequestNamespace="http://tempuri.org/", ResponseNamespace="http://tempuri.org/", Use=SoapBindingUse.Literal, ParameterStyle=SoapParameterStyle.Wrapped)]
        public string GetNewFilePath()
        {
            return (string) base.Invoke("GetNewFilePath", new object[0])[0];
        }

        public void GetNewFilePathAsync()
        {
            this.GetNewFilePathAsync(null);
        }

        public void GetNewFilePathAsync(object userState)
        {
            if (this.GetNewFilePathOperationCompleted == null)
            {
                this.GetNewFilePathOperationCompleted = new SendOrPostCallback(this.OnGetNewFilePathOperationCompleted);
            }
            base.InvokeAsync("GetNewFilePath", new object[0], this.GetNewFilePathOperationCompleted, userState);
        }

        [SoapDocumentMethod("http://tempuri.org/GetServerUrl", RequestNamespace="http://tempuri.org/", ResponseNamespace="http://tempuri.org/", Use=SoapBindingUse.Literal, ParameterStyle=SoapParameterStyle.Wrapped)]
        public string GetServerUrl()
        {
            return (string) base.Invoke("GetServerUrl", new object[0])[0];
        }

        public void GetServerUrlAsync()
        {
            this.GetServerUrlAsync(null);
        }

        public void GetServerUrlAsync(object userState)
        {
            if (this.GetServerUrlOperationCompleted == null)
            {
                this.GetServerUrlOperationCompleted = new SendOrPostCallback(this.OnGetServerUrlOperationCompleted);
            }
            base.InvokeAsync("GetServerUrl", new object[0], this.GetServerUrlOperationCompleted, userState);
        }

        [SoapDocumentMethod("http://tempuri.org/GetVersion", RequestNamespace="http://tempuri.org/", ResponseNamespace="http://tempuri.org/", Use=SoapBindingUse.Literal, ParameterStyle=SoapParameterStyle.Wrapped)]
        public string GetVersion()
        {
            return (string) base.Invoke("GetVersion", new object[0])[0];
        }

        public void GetVersionAsync()
        {
            this.GetVersionAsync(null);
        }

        public void GetVersionAsync(object userState)
        {
            if (this.GetVersionOperationCompleted == null)
            {
                this.GetVersionOperationCompleted = new SendOrPostCallback(this.OnGetVersionOperationCompleted);
            }
            base.InvokeAsync("GetVersion", new object[0], this.GetVersionOperationCompleted, userState);
        }

        private bool IsLocalFileSystemWebService(string url)
        {
            if ((url == null) || (url == string.Empty))
            {
                return false;
            }
            Uri uri = new Uri(url);
            return ((uri.Port >= 0x400) && (string.Compare(uri.Host, "localHost", StringComparison.OrdinalIgnoreCase) == 0));
        }

        private void OnErrInfoOperationCompleted(object arg)
        {
            if (this.ErrInfoCompleted != null)
            {
                InvokeCompletedEventArgs args = (InvokeCompletedEventArgs) arg;
                this.ErrInfoCompleted(this, new AsyncCompletedEventArgs(args.Error, args.Cancelled, args.UserState));
            }
        }

        private void OnGetFileListOperationCompleted(object arg)
        {
            if (this.GetFileListCompleted != null)
            {
                InvokeCompletedEventArgs args = (InvokeCompletedEventArgs) arg;
                this.GetFileListCompleted(this, new GetFileListCompletedEventArgs(args.Results, args.Error, args.Cancelled, args.UserState));
            }
        }

        private void OnGetNewFilePathOperationCompleted(object arg)
        {
            if (this.GetNewFilePathCompleted != null)
            {
                InvokeCompletedEventArgs args = (InvokeCompletedEventArgs) arg;
                this.GetNewFilePathCompleted(this, new GetNewFilePathCompletedEventArgs(args.Results, args.Error, args.Cancelled, args.UserState));
            }
        }

        private void OnGetServerUrlOperationCompleted(object arg)
        {
            if (this.GetServerUrlCompleted != null)
            {
                InvokeCompletedEventArgs args = (InvokeCompletedEventArgs) arg;
                this.GetServerUrlCompleted(this, new GetServerUrlCompletedEventArgs(args.Results, args.Error, args.Cancelled, args.UserState));
            }
        }

        private void OnGetVersionOperationCompleted(object arg)
        {
            if (this.GetVersionCompleted != null)
            {
                InvokeCompletedEventArgs args = (InvokeCompletedEventArgs) arg;
                this.GetVersionCompleted(this, new GetVersionCompletedEventArgs(args.Results, args.Error, args.Cancelled, args.UserState));
            }
        }

        public string Url
        {
            get
            {
                return base.Url;
            }
            set
            {
                if ((this.IsLocalFileSystemWebService(base.Url) && !this.useDefaultCredentialsSetExplicitly) && !this.IsLocalFileSystemWebService(value))
                {
                    base.UseDefaultCredentials = false;
                }
                base.Url = value;
            }
        }

        public bool UseDefaultCredentials
        {
            get
            {
                return base.UseDefaultCredentials;
            }
            set
            {
                base.UseDefaultCredentials = value;
                this.useDefaultCredentialsSetExplicitly = true;
            }
        }
    }
}

?? 快捷鍵說明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
日韩美女主播在线视频一区二区三区 | 欧美日韩一本到| 亚洲免费在线视频一区 二区| 97久久超碰精品国产| 亚洲婷婷在线视频| 一本在线高清不卡dvd| 亚洲国产aⅴ天堂久久| 7777精品伊人久久久大香线蕉超级流畅| 洋洋成人永久网站入口| 欧美绝品在线观看成人午夜影视| 青青草国产成人99久久| 精品国产一区二区三区久久久蜜月 | 亚洲与欧洲av电影| 欧美三级日韩三级| 免费在线欧美视频| 国产三级久久久| 99re66热这里只有精品3直播| 一区二区三区中文字幕电影| 欧美一级国产精品| 国产一区二区免费看| 中文字幕综合网| 在线国产电影不卡| 麻豆精品视频在线观看视频| 国产欧美日韩激情| 欧美三区在线视频| 国产美女精品人人做人人爽| 国产精品麻豆欧美日韩ww| 欧美午夜精品电影| 精品一区二区av| 亚洲欧美偷拍三级| 日韩三级免费观看| a级高清视频欧美日韩| 午夜精品福利久久久| 欧美精品一区二区三| 99久久伊人精品| 美女国产一区二区三区| 一区在线观看视频| 欧美一区在线视频| 不卡一区二区在线| 日本女人一区二区三区| 国产精品成人在线观看| 日韩三级视频在线观看| 91免费看片在线观看| 精品一区二区三区在线观看| 中文在线资源观看网站视频免费不卡| 欧美三级中文字幕| 99国内精品久久| 狠狠色综合色综合网络| 亚洲综合成人在线视频| 国产精品欧美经典| 精品欧美一区二区三区精品久久 | 激情图区综合网| 亚洲主播在线播放| 亚洲素人一区二区| 久久精品人人做人人爽97| 91精品国产综合久久久久久久久久| 91在线一区二区| 国产成人精品三级麻豆| 精品一区二区三区香蕉蜜桃| 亚洲成av人片| 亚洲视频1区2区| 欧美激情资源网| 精品国产91亚洲一区二区三区婷婷| 欧美三级韩国三级日本一级| 色综合色综合色综合| 成人丝袜视频网| 国产成人免费在线视频| 成人av综合一区| 久久国产精品72免费观看| 亚洲成av人片www| 亚洲国产成人av| 亚洲国产aⅴ天堂久久| 亚洲精品视频在线| 亚洲视频资源在线| 国产精品污www在线观看| 久久久精品tv| 国产三级精品视频| 久久久久久亚洲综合影院红桃 | 一本久久综合亚洲鲁鲁五月天| 丁香另类激情小说| 国产成人精品免费看| 国产一区二区三区黄视频| 精品亚洲国内自在自线福利| 蜜桃视频一区二区三区 | 蜜桃视频在线一区| 日韩av一区二区三区四区| 日韩电影免费在线| 日韩精品电影在线观看| 日韩精品电影在线| 久久精品国产一区二区三| 美女一区二区在线观看| 看电视剧不卡顿的网站| 精品一区二区三区在线观看 | 国产精品综合一区二区| 国产一区二区在线看| 国产一区二区不卡在线| 国产一区在线精品| 成av人片一区二区| 色悠久久久久综合欧美99| 欧美三日本三级三级在线播放| 欧美一区二区视频在线观看2020| 精品少妇一区二区三区日产乱码| 久久久国产精品午夜一区ai换脸| 国产精品久久久久影院色老大| 亚洲精品老司机| 午夜成人免费电影| 国内精品伊人久久久久av影院| 国产a精品视频| 99久久国产综合精品色伊| 在线观看日韩国产| 日韩写真欧美这视频| 国产色产综合色产在线视频 | 亚洲高清久久久| 美国十次综合导航| 暴力调教一区二区三区| 欧美亚洲禁片免费| 精品动漫一区二区三区在线观看| 亚洲欧美自拍偷拍色图| 亚瑟在线精品视频| 激情图区综合网| 91久久久免费一区二区| 日韩一区二区三区视频在线| 亚洲国产精品精华液ab| 午夜精品在线看| 成人精品小蝌蚪| 欧美精品在线观看播放| 欧美高清在线视频| 日本在线观看不卡视频| 99精品欧美一区二区三区综合在线| 777a∨成人精品桃花网| 中文字幕一区二区5566日韩| 麻豆视频观看网址久久| 亚洲国产高清不卡| 国产91精品露脸国语对白| 欧美精品亚洲一区二区在线播放| 亚洲丝袜精品丝袜在线| 肉丝袜脚交视频一区二区| 国产精品免费aⅴ片在线观看| 久久免费电影网| 亚洲电影一级黄| 紧缚捆绑精品一区二区| 亚洲免费在线观看视频| 国产精品不卡一区二区三区| 奇米精品一区二区三区在线观看| 91色porny在线视频| 国产日韩av一区| 久久国产精品露脸对白| 色爱区综合激月婷婷| 亚洲国产高清aⅴ视频| 久久国产精品区| 国产亚洲一区二区三区四区 | 欧美三级中文字幕在线观看| 日本一区二区三区国色天香| 美腿丝袜亚洲综合| 欧美无人高清视频在线观看| 国产精品成人一区二区三区夜夜夜| 久久精品国产色蜜蜜麻豆| 欧美日韩精品系列| 亚洲精品自拍动漫在线| 91同城在线观看| 国产精品乱码妇女bbbb| 国产成人8x视频一区二区| 欧美成人video| 青青草91视频| 日韩一区二区三区四区 | 中文一区二区完整视频在线观看| 美女尤物国产一区| 欧美一区二区日韩| 夜夜爽夜夜爽精品视频| 91久久精品一区二区二区| 亚洲少妇最新在线视频| 91在线一区二区| 亚洲男人都懂的| 91激情在线视频| 亚洲福利视频一区二区| 欧美日韩一区 二区 三区 久久精品| 亚洲一区二区三区中文字幕在线| 日本韩国欧美在线| 亚洲高清中文字幕| 欧美电影在线免费观看| 青青草原综合久久大伊人精品优势| 91精品国产色综合久久ai换脸| 蜜桃av噜噜一区| 国产亚洲精品久| 99久久99久久综合| 一区二区三区不卡视频在线观看| 91网站视频在线观看| 亚洲第一福利视频在线| 日韩一区二区免费在线电影| 裸体健美xxxx欧美裸体表演| 2017欧美狠狠色| av在线这里只有精品| 亚洲欧美一区二区三区极速播放 | 欧美性色黄大片手机版| 日韩国产欧美在线视频| 久久一区二区三区国产精品| 成人黄色777网| 夜夜嗨av一区二区三区中文字幕 | 久久亚洲捆绑美女| 粉嫩av亚洲一区二区图片|