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

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

?? reference.cs

?? BugNET is an issue tracking and project issue management solution built using the ASP.NET web applic
?? CS
?? 第 1 頁 / 共 2 頁
字號:
?//------------------------------------------------------------------------------
// <auto-generated>
//     This code was generated by a tool.
//     Runtime Version:2.0.50727.1434
//
//     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.1434.
// 
#pragma warning disable 1591

namespace BugNET.SubversionHooks.WebServices {
    using System.Diagnostics;
    using System.Web.Services;
    using System.ComponentModel;
    using System.Web.Services.Protocols;
    using System;
    using System.Xml.Serialization;
    
    
    /// <remarks/>
    [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "2.0.50727.1434")]
    [System.Diagnostics.DebuggerStepThroughAttribute()]
    [System.ComponentModel.DesignerCategoryAttribute("code")]
    [System.Web.Services.WebServiceBindingAttribute(Name="BugNetServicesSoap", Namespace="http://bugnetproject.com/")]
    public partial class BugNetServices : System.Web.Services.Protocols.SoapHttpClientProtocol {
        
        private System.Threading.SendOrPostCallback LogInOperationCompleted;
        
        private System.Threading.SendOrPostCallback LogOutOperationCompleted;
        
        private System.Threading.SendOrPostCallback CreateNewIssueRevisionOperationCompleted;
        
        private System.Threading.SendOrPostCallback ChangeTreeNodeOperationCompleted;
        
        private System.Threading.SendOrPostCallback MoveNodeOperationCompleted;
        
        private System.Threading.SendOrPostCallback AddCategoryOperationCompleted;
        
        private System.Threading.SendOrPostCallback DeleteCategoryOperationCompleted;
        
        private bool useDefaultCredentialsSetExplicitly;
        
        /// <remarks/>
        public BugNetServices() {
            this.Url = global::BugNET.SubversionHooks.Properties.Settings.Default.BugNET_SubversionHooks_BugNetServices_BugNetServices;
            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 LogInCompletedEventHandler LogInCompleted;
        
        /// <remarks/>
        public event LogOutCompletedEventHandler LogOutCompleted;
        
        /// <remarks/>
        public event CreateNewIssueRevisionCompletedEventHandler CreateNewIssueRevisionCompleted;
        
        /// <remarks/>
        public event ChangeTreeNodeCompletedEventHandler ChangeTreeNodeCompleted;
        
        /// <remarks/>
        public event MoveNodeCompletedEventHandler MoveNodeCompleted;
        
        /// <remarks/>
        public event AddCategoryCompletedEventHandler AddCategoryCompleted;
        
        /// <remarks/>
        public event DeleteCategoryCompletedEventHandler DeleteCategoryCompleted;
        
        /// <remarks/>
        [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://bugnetproject.com/LogIn", RequestNamespace="http://bugnetproject.com/", ResponseNamespace="http://bugnetproject.com/", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)]
        public bool LogIn(string userName, string password) {
            object[] results = this.Invoke("LogIn", new object[] {
                        userName,
                        password});
            return ((bool)(results[0]));
        }
        
        /// <remarks/>
        public void LogInAsync(string userName, string password) {
            this.LogInAsync(userName, password, null);
        }
        
        /// <remarks/>
        public void LogInAsync(string userName, string password, object userState) {
            if ((this.LogInOperationCompleted == null)) {
                this.LogInOperationCompleted = new System.Threading.SendOrPostCallback(this.OnLogInOperationCompleted);
            }
            this.InvokeAsync("LogIn", new object[] {
                        userName,
                        password}, this.LogInOperationCompleted, userState);
        }
        
        private void OnLogInOperationCompleted(object arg) {
            if ((this.LogInCompleted != null)) {
                System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg));
                this.LogInCompleted(this, new LogInCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState));
            }
        }
        
        /// <remarks/>
        [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://bugnetproject.com/LogOut", RequestNamespace="http://bugnetproject.com/", ResponseNamespace="http://bugnetproject.com/", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)]
        public void LogOut() {
            this.Invoke("LogOut", new object[0]);
        }
        
        /// <remarks/>
        public void LogOutAsync() {
            this.LogOutAsync(null);
        }
        
        /// <remarks/>
        public void LogOutAsync(object userState) {
            if ((this.LogOutOperationCompleted == null)) {
                this.LogOutOperationCompleted = new System.Threading.SendOrPostCallback(this.OnLogOutOperationCompleted);
            }
            this.InvokeAsync("LogOut", new object[0], this.LogOutOperationCompleted, userState);
        }
        
        private void OnLogOutOperationCompleted(object arg) {
            if ((this.LogOutCompleted != null)) {
                System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg));
                this.LogOutCompleted(this, new System.ComponentModel.AsyncCompletedEventArgs(invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState));
            }
        }
        
        /// <remarks/>
        [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://bugnetproject.com/CreateNewIssueRevision", RequestNamespace="http://bugnetproject.com/", ResponseNamespace="http://bugnetproject.com/", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)]
        public bool CreateNewIssueRevision(int revision, int issueId, string repository, string revisionAuthor, string revisionDate, string revisionMessage) {
            object[] results = this.Invoke("CreateNewIssueRevision", new object[] {
                        revision,
                        issueId,
                        repository,
                        revisionAuthor,
                        revisionDate,
                        revisionMessage});
            return ((bool)(results[0]));
        }
        
        /// <remarks/>
        public void CreateNewIssueRevisionAsync(int revision, int issueId, string repository, string revisionAuthor, string revisionDate, string revisionMessage) {
            this.CreateNewIssueRevisionAsync(revision, issueId, repository, revisionAuthor, revisionDate, revisionMessage, null);
        }
        
        /// <remarks/>
        public void CreateNewIssueRevisionAsync(int revision, int issueId, string repository, string revisionAuthor, string revisionDate, string revisionMessage, object userState) {
            if ((this.CreateNewIssueRevisionOperationCompleted == null)) {
                this.CreateNewIssueRevisionOperationCompleted = new System.Threading.SendOrPostCallback(this.OnCreateNewIssueRevisionOperationCompleted);
            }
            this.InvokeAsync("CreateNewIssueRevision", new object[] {
                        revision,
                        issueId,
                        repository,
                        revisionAuthor,
                        revisionDate,
                        revisionMessage}, this.CreateNewIssueRevisionOperationCompleted, userState);
        }
        
        private void OnCreateNewIssueRevisionOperationCompleted(object arg) {
            if ((this.CreateNewIssueRevisionCompleted != null)) {
                System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg));
                this.CreateNewIssueRevisionCompleted(this, new CreateNewIssueRevisionCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState));
            }
        }
        
        /// <remarks/>
        [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://bugnetproject.com/ChangeTreeNode", RequestNamespace="http://bugnetproject.com/", ResponseNamespace="http://bugnetproject.com/", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)]
        public void ChangeTreeNode(string nodeId, string newText, string oldText) {
            this.Invoke("ChangeTreeNode", new object[] {
                        nodeId,
                        newText,
                        oldText});
        }
        
        /// <remarks/>
        public void ChangeTreeNodeAsync(string nodeId, string newText, string oldText) {
            this.ChangeTreeNodeAsync(nodeId, newText, oldText, null);
        }
        
        /// <remarks/>
        public void ChangeTreeNodeAsync(string nodeId, string newText, string oldText, object userState) {
            if ((this.ChangeTreeNodeOperationCompleted == null)) {
                this.ChangeTreeNodeOperationCompleted = new System.Threading.SendOrPostCallback(this.OnChangeTreeNodeOperationCompleted);
            }
            this.InvokeAsync("ChangeTreeNode", new object[] {
                        nodeId,

?? 快捷鍵說明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
91精品视频网| 国产伦精品一区二区三区免费迷 | 97久久精品人人做人人爽50路 | 丁香激情综合国产| 国产精品久久久爽爽爽麻豆色哟哟 | 成人一区二区视频| 中文字幕欧美一| 在线观看欧美黄色| 无码av中文一区二区三区桃花岛| 欧美午夜不卡在线观看免费| 肉肉av福利一精品导航| 日韩精品专区在线| 丁香五精品蜜臀久久久久99网站| 国产精品久久久久aaaa樱花 | 92国产精品观看| 一区二区三区免费| 日韩午夜在线影院| 懂色av一区二区三区蜜臀| 日韩国产在线观看一区| 精品日韩欧美在线| jlzzjlzz欧美大全| 天堂va蜜桃一区二区三区漫画版| 欧美tk丨vk视频| 一本大道综合伊人精品热热| 日韩精品一级中文字幕精品视频免费观看 | xnxx国产精品| 色www精品视频在线观看| 麻豆成人免费电影| 一区精品在线播放| 日韩欧美精品三级| 99久久国产综合精品色伊| 日韩精品一二区| 国产精品久久久久桃色tv| 7799精品视频| 91在线视频18| 国产一区三区三区| 亚洲成人av电影| 国产欧美精品区一区二区三区| 欧美系列日韩一区| 成人三级伦理片| 青青草视频一区| 亚洲精品日产精品乱码不卡| 精品福利一区二区三区| 欧美三级电影网站| 成人av网站在线| 激情欧美日韩一区二区| 午夜精品一区在线观看| 中文字幕中文字幕在线一区| 日韩欧美国产系列| 久久久精品日韩欧美| 欧美视频一区在线观看| 9l国产精品久久久久麻豆| 国产麻豆精品一区二区| 蜜臀av国产精品久久久久| 亚洲成av人片| 亚洲精品国产无天堂网2021| 国产欧美日产一区| 精品国产乱子伦一区| 91精品国模一区二区三区| 97久久人人超碰| av一区二区三区四区| 国产精品亚洲а∨天堂免在线| 亚洲国产成人av| 亚洲精品高清视频在线观看| 国产精品麻豆久久久| 国产亚洲精品aa| 欧美精品一区二区三区四区| 日韩欧美国产不卡| 欧美高清dvd| 欧美高清你懂得| 91精品国产综合久久香蕉麻豆| 一本色道久久综合亚洲精品按摩| 成人免费毛片片v| 成人小视频免费观看| 国产精品99久久久久久似苏梦涵 | 国产亚洲欧美色| 久久精品一区二区三区不卡| 日韩精品一区二区三区在线播放 | 国产亚洲制服色| 国产亚洲综合在线| 国产精品乱人伦| 综合色中文字幕| 亚洲综合一二区| 五月天一区二区| 秋霞成人午夜伦在线观看| 欧美aa在线视频| 蜜臀av性久久久久蜜臀av麻豆| 美国十次综合导航| 韩日精品视频一区| 国产精品一区二区不卡| 成人白浆超碰人人人人| www.成人网.com| 一本大道av伊人久久综合| 欧美在线不卡一区| 欧美喷潮久久久xxxxx| 欧美高清激情brazzers| 91麻豆精品国产91久久久久久久久 | 有坂深雪av一区二区精品| 亚洲精品欧美二区三区中文字幕| 亚洲综合精品自拍| 香蕉久久夜色精品国产使用方法| 丝袜亚洲另类欧美综合| 激情偷乱视频一区二区三区| 国产黄色精品视频| 色综合久久88色综合天天| 欧美精品久久天天躁| 精品国产乱码久久久久久免费 | 亚洲一区二区在线播放相泽| 午夜精品福利一区二区三区av | 日韩欧美成人一区| 久久久久久久久免费| 亚洲精品成人天堂一二三| 日韩—二三区免费观看av| 激情国产一区二区| 91日韩在线专区| 欧美精品国产精品| 中文字幕高清一区| 亚洲高清视频中文字幕| 国产真实乱偷精品视频免| 色综合天天综合网天天狠天天 | 国产欧美日韩在线观看| 亚洲综合图片区| 韩国一区二区三区| 欧美亚洲国产一区二区三区 | 国产欧美日韩在线观看| 亚洲福中文字幕伊人影院| 国产一区 二区| 欧美日韩在线播| 国产精品美女久久久久av爽李琼| 亚洲成人免费在线观看| 丁香网亚洲国际| 91精品国产欧美一区二区成人| 亚洲国产精品传媒在线观看| 日本最新不卡在线| 欧美在线短视频| 国产精品久久久久婷婷| 久久99国产精品久久99| 欧洲精品中文字幕| 国产精品久久久久三级| 国内久久精品视频| 欧美日韩国产一二三| 亚洲欧美电影一区二区| 国产精品自拍毛片| 日韩欧美你懂的| 五月综合激情日本mⅴ| 91色在线porny| 亚洲视频一区在线| 成人高清免费观看| 国产偷国产偷亚洲高清人白洁 | 欧美激情一区在线观看| 国产在线精品一区二区不卡了| 欧美视频在线一区二区三区| 亚洲女人****多毛耸耸8| 国产成人日日夜夜| 久久久久久久综合色一本| 久久国产精品99精品国产| 欧美人妖巨大在线| 亚瑟在线精品视频| 欧美日韩专区在线| 亚洲福利视频一区二区| 在线观看91精品国产入口| 亚洲视频综合在线| 色狠狠色狠狠综合| 亚洲精品国产第一综合99久久| 91香蕉视频在线| 自拍偷在线精品自拍偷无码专区| 风流少妇一区二区| 国产人妖乱国产精品人妖| 国产成人自拍网| 国产精品欧美极品| 97aⅴ精品视频一二三区| **欧美大码日韩| 色综合天天做天天爱| 亚洲一区视频在线| 91精品国产91热久久久做人人| 日韩综合在线视频| 日韩欧美国产不卡| 国产黑丝在线一区二区三区| 国产调教视频一区| 成人18精品视频| 亚洲精品视频在线看| 欧美日韩一区二区欧美激情| 三级欧美在线一区| 精品裸体舞一区二区三区| 国产一区二区三区在线观看精品| 久久精品在线免费观看| 99re这里只有精品6| 亚洲亚洲精品在线观看| 538在线一区二区精品国产| 麻豆成人久久精品二区三区红| 精品国产伦一区二区三区观看体验| 国产一区二区三区四| 国产精品嫩草影院com| 91免费国产视频网站| 日韩电影在线免费| 国产日韩亚洲欧美综合| 色综合亚洲欧洲| 久久激情五月激情| 成人免费视频在线观看| 欧美日韩免费电影|