⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 reference.cs

📁 Asp.net+silverlight制作的手机功能演示
💻 CS
📖 第 1 页 / 共 4 页
字号:
        
        [System.ServiceModel.OperationContractAttribute(AsyncPattern=true, Action="http://tempuri.org/IService/GetAllAddress", ReplyAction="http://tempuri.org/IService/GetAllAddressResponse")]
        System.IAsyncResult BeginGetAllAddress(System.AsyncCallback callback, object asyncState);
        
        System.Collections.ObjectModel.ObservableCollection<hypphone.ServiceReference1.addresslist> EndGetAllAddress(System.IAsyncResult result);
        
        [System.ServiceModel.OperationContractAttribute(AsyncPattern=true, Action="http://tempuri.org/IService/SaveAAddress", ReplyAction="http://tempuri.org/IService/SaveAAddressResponse")]
        System.IAsyncResult BeginSaveAAddress(hypphone.ServiceReference1.addresslist address, System.AsyncCallback callback, object asyncState);
        
        hypphone.ServiceReference1.addresslist EndSaveAAddress(System.IAsyncResult result);
        
        [System.ServiceModel.OperationContractAttribute(AsyncPattern=true, Action="http://tempuri.org/IService/GetAllBooks", ReplyAction="http://tempuri.org/IService/GetAllBooksResponse")]
        System.IAsyncResult BeginGetAllBooks(System.AsyncCallback callback, object asyncState);
        
        System.Collections.ObjectModel.ObservableCollection<hypphone.ServiceReference1.librarylist> EndGetAllBooks(System.IAsyncResult result);
        
        [System.ServiceModel.OperationContractAttribute(AsyncPattern=true, Action="http://tempuri.org/IService/GetBookWithName", ReplyAction="http://tempuri.org/IService/GetBookWithNameResponse")]
        System.IAsyncResult BeginGetBookWithName(string bookname, System.AsyncCallback callback, object asyncState);
        
        System.Collections.ObjectModel.ObservableCollection<hypphone.ServiceReference1.librarylist> EndGetBookWithName(System.IAsyncResult result);
        
        [System.ServiceModel.OperationContractAttribute(AsyncPattern=true, Action="http://tempuri.org/IService/GetBookWithMark", ReplyAction="http://tempuri.org/IService/GetBookWithMarkResponse")]
        System.IAsyncResult BeginGetBookWithMark(string marknum, System.AsyncCallback callback, object asyncState);
        
        System.Collections.ObjectModel.ObservableCollection<hypphone.ServiceReference1.librarylist> EndGetBookWithMark(System.IAsyncResult result);
        
        [System.ServiceModel.OperationContractAttribute(AsyncPattern=true, Action="http://tempuri.org/IService/GetBookWithAuthor", ReplyAction="http://tempuri.org/IService/GetBookWithAuthorResponse")]
        System.IAsyncResult BeginGetBookWithAuthor(string author, System.AsyncCallback callback, object asyncState);
        
        System.Collections.ObjectModel.ObservableCollection<hypphone.ServiceReference1.librarylist> EndGetBookWithAuthor(System.IAsyncResult result);
        
        [System.ServiceModel.OperationContractAttribute(AsyncPattern=true, Action="http://tempuri.org/IService/DeleteAAdd", ReplyAction="http://tempuri.org/IService/DeleteAAddResponse")]
        System.IAsyncResult BeginDeleteAAdd(string name, System.AsyncCallback callback, object asyncState);
        
        void EndDeleteAAdd(System.IAsyncResult result);
    }
    
    [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "3.0.0.0")]
    public interface IServiceChannel : hypphone.ServiceReference1.IService, System.ServiceModel.IClientChannel {
    }
    
    [System.Diagnostics.DebuggerStepThroughAttribute()]
    [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "3.0.0.0")]
    public partial class GetAllAddressCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs {
        
        private object[] results;
        
        public GetAllAddressCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : 
                base(exception, cancelled, userState) {
            this.results = results;
        }
        
        public System.Collections.ObjectModel.ObservableCollection<hypphone.ServiceReference1.addresslist> Result {
            get {
                base.RaiseExceptionIfNecessary();
                return ((System.Collections.ObjectModel.ObservableCollection<hypphone.ServiceReference1.addresslist>)(this.results[0]));
            }
        }
    }
    
    [System.Diagnostics.DebuggerStepThroughAttribute()]
    [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "3.0.0.0")]
    public partial class SaveAAddressCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs {
        
        private object[] results;
        
        public SaveAAddressCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : 
                base(exception, cancelled, userState) {
            this.results = results;
        }
        
        public hypphone.ServiceReference1.addresslist Result {
            get {
                base.RaiseExceptionIfNecessary();
                return ((hypphone.ServiceReference1.addresslist)(this.results[0]));
            }
        }
    }
    
    [System.Diagnostics.DebuggerStepThroughAttribute()]
    [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "3.0.0.0")]
    public partial class GetAllBooksCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs {
        
        private object[] results;
        
        public GetAllBooksCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : 
                base(exception, cancelled, userState) {
            this.results = results;
        }
        
        public System.Collections.ObjectModel.ObservableCollection<hypphone.ServiceReference1.librarylist> Result {
            get {
                base.RaiseExceptionIfNecessary();
                return ((System.Collections.ObjectModel.ObservableCollection<hypphone.ServiceReference1.librarylist>)(this.results[0]));
            }
        }
    }
    
    [System.Diagnostics.DebuggerStepThroughAttribute()]
    [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "3.0.0.0")]
    public partial class GetBookWithNameCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs {
        
        private object[] results;
        
        public GetBookWithNameCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : 
                base(exception, cancelled, userState) {
            this.results = results;
        }
        
        public System.Collections.ObjectModel.ObservableCollection<hypphone.ServiceReference1.librarylist> Result {
            get {
                base.RaiseExceptionIfNecessary();
                return ((System.Collections.ObjectModel.ObservableCollection<hypphone.ServiceReference1.librarylist>)(this.results[0]));
            }
        }
    }
    
    [System.Diagnostics.DebuggerStepThroughAttribute()]
    [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "3.0.0.0")]
    public partial class GetBookWithMarkCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs {
        
        private object[] results;
        
        public GetBookWithMarkCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : 
                base(exception, cancelled, userState) {
            this.results = results;
        }
        
        public System.Collections.ObjectModel.ObservableCollection<hypphone.ServiceReference1.librarylist> Result {
            get {
                base.RaiseExceptionIfNecessary();
                return ((System.Collections.ObjectModel.ObservableCollection<hypphone.ServiceReference1.librarylist>)(this.results[0]));
            }
        }
    }
    
    [System.Diagnostics.DebuggerStepThroughAttribute()]
    [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "3.0.0.0")]
    public partial class GetBookWithAuthorCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs {
        
        private object[] results;
        
        public GetBookWithAuthorCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : 
                base(exception, cancelled, userState) {
            this.results = results;
        }
        
        public System.Collections.ObjectModel.ObservableCollection<hypphone.ServiceReference1.librarylist> Result {
            get {
                base.RaiseExceptionIfNecessary();
                return ((System.Collections.ObjectModel.ObservableCollection<hypphone.ServiceReference1.librarylist>)(this.results[0]));
            }
        }
    }
    
    [System.Diagnostics.DebuggerStepThroughAttribute()]
    [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "3.0.0.0")]
    public partial class ServiceClient : System.ServiceModel.ClientBase<hypphone.ServiceReference1.IService>, hypphone.ServiceReference1.IService {
        
        private BeginOperationDelegate onBeginGetAllAddressDelegate;
        
        private EndOperationDelegate onEndGetAllAddressDelegate;
        
        private System.Threading.SendOrPostCallback onGetAllAddressCompletedDelegate;
        
        private BeginOperationDelegate onBeginSaveAAddressDelegate;
        
        private EndOperationDelegate onEndSaveAAddressDelegate;
        
        private System.Threading.SendOrPostCallback onSaveAAddressCompletedDelegate;
        
        private BeginOperationDelegate onBeginGetAllBooksDelegate;
        
        private EndOperationDelegate onEndGetAllBooksDelegate;
        
        private System.Threading.SendOrPostCallback onGetAllBooksCompletedDelegate;
        
        private BeginOperationDelegate onBeginGetBookWithNameDelegate;
        
        private EndOperationDelegate onEndGetBookWithNameDelegate;
        
        private System.Threading.SendOrPostCallback onGetBookWithNameCompletedDelegate;
        
        private BeginOperationDelegate onBeginGetBookWithMarkDelegate;
        
        private EndOperationDelegate onEndGetBookWithMarkDelegate;
        
        private System.Threading.SendOrPostCallback onGetBookWithMarkCompletedDelegate;
        
        private BeginOperationDelegate onBeginGetBookWithAuthorDelegate;
        
        private EndOperationDelegate onEndGetBookWithAuthorDelegate;
        
        private System.Threading.SendOrPostCallback onGetBookWithAuthorCompletedDelegate;
        
        private BeginOperationDelegate onBeginDeleteAAddDelegate;
        
        private EndOperationDelegate onEndDeleteAAddDelegate;
        
        private System.Threading.SendOrPostCallback onDeleteAAddCompletedDelegate;
        
        private BeginOperationDelegate onBeginOpenDelegate;
        
        private EndOperationDelegate onEndOpenDelegate;
        
        private System.Threading.SendOrPostCallback onOpenCompletedDelegate;
        
        private BeginOperationDelegate onBeginCloseDelegate;
        
        private EndOperationDelegate onEndCloseDelegate;
        
        private System.Threading.SendOrPostCallback onCloseCompletedDelegate;
        
        public ServiceClient() {
        }
        
        public ServiceClient(string endpointConfigurationName) : 
                base(endpointConfigurationName) {
        }
        
        public ServiceClient(string endpointConfigurationName, string remoteAddress) : 
                base(endpointConfigurationName, remoteAddress) {
        }
        
        public ServiceClient(string endpointConfigurationName, System.ServiceModel.EndpointAddress remoteAddress) : 
                base(endpointConfigurationName, remoteAddress) {
        }
        
        public ServiceClient(System.ServiceModel.Channels.Binding binding, System.ServiceModel.EndpointAddress remoteAddress) : 
                base(binding, remoteAddress) {
        }
        
        public event System.EventHandler<GetAllAddressCompletedEventArgs> GetAllAddressCompleted;
        
        public event System.EventHandler<SaveAAddressCompletedEventArgs> SaveAAddressCompleted;
        
        public event System.EventHandler<GetAllBooksCompletedEventArgs> GetAllBooksCompleted;
        
        public event System.EventHandler<GetBookWithNameCompletedEventArgs> GetBookWithNameCompleted;
        
        public event System.EventHandler<GetBookWithMarkCompletedEventArgs> GetBookWithMarkCompleted;
        
        public event System.EventHandler<GetBookWithAuthorCompletedEventArgs> GetBookWithAuthorCompleted;
        
        public event System.EventHandler<System.ComponentModel.AsyncCompletedEventArgs> DeleteAAddCompleted;

⌨️ 快捷键说明

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