📄 reference.cs
字号:
public event System.EventHandler<System.ComponentModel.AsyncCompletedEventArgs> OpenCompleted;
public event System.EventHandler<System.ComponentModel.AsyncCompletedEventArgs> CloseCompleted;
[System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
System.IAsyncResult hypphone.ServiceReference1.IService.BeginGetAllAddress(System.AsyncCallback callback, object asyncState) {
return base.Channel.BeginGetAllAddress(callback, asyncState);
}
[System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
System.Collections.ObjectModel.ObservableCollection<hypphone.ServiceReference1.addresslist> hypphone.ServiceReference1.IService.EndGetAllAddress(System.IAsyncResult result) {
return base.Channel.EndGetAllAddress(result);
}
private System.IAsyncResult OnBeginGetAllAddress(object[] inValues, System.AsyncCallback callback, object asyncState) {
return ((hypphone.ServiceReference1.IService)(this)).BeginGetAllAddress(callback, asyncState);
}
private object[] OnEndGetAllAddress(System.IAsyncResult result) {
System.Collections.ObjectModel.ObservableCollection<hypphone.ServiceReference1.addresslist> retVal = ((hypphone.ServiceReference1.IService)(this)).EndGetAllAddress(result);
return new object[] {
retVal};
}
private void OnGetAllAddressCompleted(object state) {
if ((this.GetAllAddressCompleted != null)) {
InvokeAsyncCompletedEventArgs e = ((InvokeAsyncCompletedEventArgs)(state));
this.GetAllAddressCompleted(this, new GetAllAddressCompletedEventArgs(e.Results, e.Error, e.Cancelled, e.UserState));
}
}
public void GetAllAddressAsync() {
this.GetAllAddressAsync(null);
}
public void GetAllAddressAsync(object userState) {
if ((this.onBeginGetAllAddressDelegate == null)) {
this.onBeginGetAllAddressDelegate = new BeginOperationDelegate(this.OnBeginGetAllAddress);
}
if ((this.onEndGetAllAddressDelegate == null)) {
this.onEndGetAllAddressDelegate = new EndOperationDelegate(this.OnEndGetAllAddress);
}
if ((this.onGetAllAddressCompletedDelegate == null)) {
this.onGetAllAddressCompletedDelegate = new System.Threading.SendOrPostCallback(this.OnGetAllAddressCompleted);
}
base.InvokeAsync(this.onBeginGetAllAddressDelegate, null, this.onEndGetAllAddressDelegate, this.onGetAllAddressCompletedDelegate, userState);
}
[System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
System.IAsyncResult hypphone.ServiceReference1.IService.BeginSaveAAddress(hypphone.ServiceReference1.addresslist address, System.AsyncCallback callback, object asyncState) {
return base.Channel.BeginSaveAAddress(address, callback, asyncState);
}
[System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
hypphone.ServiceReference1.addresslist hypphone.ServiceReference1.IService.EndSaveAAddress(System.IAsyncResult result) {
return base.Channel.EndSaveAAddress(result);
}
private System.IAsyncResult OnBeginSaveAAddress(object[] inValues, System.AsyncCallback callback, object asyncState) {
hypphone.ServiceReference1.addresslist address = ((hypphone.ServiceReference1.addresslist)(inValues[0]));
return ((hypphone.ServiceReference1.IService)(this)).BeginSaveAAddress(address, callback, asyncState);
}
private object[] OnEndSaveAAddress(System.IAsyncResult result) {
hypphone.ServiceReference1.addresslist retVal = ((hypphone.ServiceReference1.IService)(this)).EndSaveAAddress(result);
return new object[] {
retVal};
}
private void OnSaveAAddressCompleted(object state) {
if ((this.SaveAAddressCompleted != null)) {
InvokeAsyncCompletedEventArgs e = ((InvokeAsyncCompletedEventArgs)(state));
this.SaveAAddressCompleted(this, new SaveAAddressCompletedEventArgs(e.Results, e.Error, e.Cancelled, e.UserState));
}
}
public void SaveAAddressAsync(hypphone.ServiceReference1.addresslist address) {
this.SaveAAddressAsync(address, null);
}
public void SaveAAddressAsync(hypphone.ServiceReference1.addresslist address, object userState) {
if ((this.onBeginSaveAAddressDelegate == null)) {
this.onBeginSaveAAddressDelegate = new BeginOperationDelegate(this.OnBeginSaveAAddress);
}
if ((this.onEndSaveAAddressDelegate == null)) {
this.onEndSaveAAddressDelegate = new EndOperationDelegate(this.OnEndSaveAAddress);
}
if ((this.onSaveAAddressCompletedDelegate == null)) {
this.onSaveAAddressCompletedDelegate = new System.Threading.SendOrPostCallback(this.OnSaveAAddressCompleted);
}
base.InvokeAsync(this.onBeginSaveAAddressDelegate, new object[] {
address}, this.onEndSaveAAddressDelegate, this.onSaveAAddressCompletedDelegate, userState);
}
[System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
System.IAsyncResult hypphone.ServiceReference1.IService.BeginGetAllBooks(System.AsyncCallback callback, object asyncState) {
return base.Channel.BeginGetAllBooks(callback, asyncState);
}
[System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
System.Collections.ObjectModel.ObservableCollection<hypphone.ServiceReference1.librarylist> hypphone.ServiceReference1.IService.EndGetAllBooks(System.IAsyncResult result) {
return base.Channel.EndGetAllBooks(result);
}
private System.IAsyncResult OnBeginGetAllBooks(object[] inValues, System.AsyncCallback callback, object asyncState) {
return ((hypphone.ServiceReference1.IService)(this)).BeginGetAllBooks(callback, asyncState);
}
private object[] OnEndGetAllBooks(System.IAsyncResult result) {
System.Collections.ObjectModel.ObservableCollection<hypphone.ServiceReference1.librarylist> retVal = ((hypphone.ServiceReference1.IService)(this)).EndGetAllBooks(result);
return new object[] {
retVal};
}
private void OnGetAllBooksCompleted(object state) {
if ((this.GetAllBooksCompleted != null)) {
InvokeAsyncCompletedEventArgs e = ((InvokeAsyncCompletedEventArgs)(state));
this.GetAllBooksCompleted(this, new GetAllBooksCompletedEventArgs(e.Results, e.Error, e.Cancelled, e.UserState));
}
}
public void GetAllBooksAsync() {
this.GetAllBooksAsync(null);
}
public void GetAllBooksAsync(object userState) {
if ((this.onBeginGetAllBooksDelegate == null)) {
this.onBeginGetAllBooksDelegate = new BeginOperationDelegate(this.OnBeginGetAllBooks);
}
if ((this.onEndGetAllBooksDelegate == null)) {
this.onEndGetAllBooksDelegate = new EndOperationDelegate(this.OnEndGetAllBooks);
}
if ((this.onGetAllBooksCompletedDelegate == null)) {
this.onGetAllBooksCompletedDelegate = new System.Threading.SendOrPostCallback(this.OnGetAllBooksCompleted);
}
base.InvokeAsync(this.onBeginGetAllBooksDelegate, null, this.onEndGetAllBooksDelegate, this.onGetAllBooksCompletedDelegate, userState);
}
[System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
System.IAsyncResult hypphone.ServiceReference1.IService.BeginGetBookWithName(string bookname, System.AsyncCallback callback, object asyncState) {
return base.Channel.BeginGetBookWithName(bookname, callback, asyncState);
}
[System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
System.Collections.ObjectModel.ObservableCollection<hypphone.ServiceReference1.librarylist> hypphone.ServiceReference1.IService.EndGetBookWithName(System.IAsyncResult result) {
return base.Channel.EndGetBookWithName(result);
}
private System.IAsyncResult OnBeginGetBookWithName(object[] inValues, System.AsyncCallback callback, object asyncState) {
string bookname = ((string)(inValues[0]));
return ((hypphone.ServiceReference1.IService)(this)).BeginGetBookWithName(bookname, callback, asyncState);
}
private object[] OnEndGetBookWithName(System.IAsyncResult result) {
System.Collections.ObjectModel.ObservableCollection<hypphone.ServiceReference1.librarylist> retVal = ((hypphone.ServiceReference1.IService)(this)).EndGetBookWithName(result);
return new object[] {
retVal};
}
private void OnGetBookWithNameCompleted(object state) {
if ((this.GetBookWithNameCompleted != null)) {
InvokeAsyncCompletedEventArgs e = ((InvokeAsyncCompletedEventArgs)(state));
this.GetBookWithNameCompleted(this, new GetBookWithNameCompletedEventArgs(e.Results, e.Error, e.Cancelled, e.UserState));
}
}
public void GetBookWithNameAsync(string bookname) {
this.GetBookWithNameAsync(bookname, null);
}
public void GetBookWithNameAsync(string bookname, object userState) {
if ((this.onBeginGetBookWithNameDelegate == null)) {
this.onBeginGetBookWithNameDelegate = new BeginOperationDelegate(this.OnBeginGetBookWithName);
}
if ((this.onEndGetBookWithNameDelegate == null)) {
this.onEndGetBookWithNameDelegate = new EndOperationDelegate(this.OnEndGetBookWithName);
}
if ((this.onGetBookWithNameCompletedDelegate == null)) {
this.onGetBookWithNameCompletedDelegate = new System.Threading.SendOrPostCallback(this.OnGetBookWithNameCompleted);
}
base.InvokeAsync(this.onBeginGetBookWithNameDelegate, new object[] {
bookname}, this.onEndGetBookWithNameDelegate, this.onGetBookWithNameCompletedDelegate, userState);
}
[System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
System.IAsyncResult hypphone.ServiceReference1.IService.BeginGetBookWithMark(string marknum, System.AsyncCallback callback, object asyncState) {
return base.Channel.BeginGetBookWithMark(marknum, callback, asyncState);
}
[System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
System.Collections.ObjectModel.ObservableCollection<hypphone.ServiceReference1.librarylist> hypphone.ServiceReference1.IService.EndGetBookWithMark(System.IAsyncResult result) {
return base.Channel.EndGetBookWithMark(result);
}
private System.IAsyncResult OnBeginGetBookWithMark(object[] inValues, System.AsyncCallback callback, object asyncState) {
string marknum = ((string)(inValues[0]));
return ((hypphone.ServiceReference1.IService)(this)).BeginGetBookWithMark(marknum, callback, asyncState);
}
private object[] OnEndGetBookWithMark(System.IAsyncResult result) {
System.Collections.ObjectModel.ObservableCollection<hypphone.ServiceReference1.librarylist> retVal = ((hypphone.ServiceReference1.IService)(this)).EndGetBookWithMark(result);
return new object[] {
retVal};
}
private void OnGetBookWithMarkCompleted(object state) {
if ((this.GetBookWithMarkCompleted != null)) {
InvokeAsyncCompletedEventArgs e = ((InvokeAsyncCompletedEventArgs)(state));
this.GetBookWithMarkCompleted(this, new GetBookWithMarkCompletedEventArgs(e.Results, e.Error, e.Cancelled, e.UserState));
}
}
public void GetBookWithMarkAsync(string marknum) {
this.GetBookWithMarkAsync(marknum, null);
}
public void GetBookWithMarkAsync(string marknum, object userState) {
if ((this.onBeginGetBookWithMarkDelegate == null)) {
this.onBeginGetBookWithMarkDelegate = new BeginOperationDelegate(this.OnBeginGetBookWithMark);
}
if ((this.onEndGetBookWithMarkDelegate == null)) {
this.onEndGetBookWithMarkDelegate = new EndOperationDelegate(this.OnEndGetBookWithMark);
}
if ((this.onGetBookWithMarkCompletedDelegate == null)) {
this.onGetBookWithMarkCompletedDelegate = new System.Threading.SendOrPostCallback(this.OnGetBookWithMarkCompleted);
}
base.InvokeAsync(this.onBeginGetBookWithMarkDelegate, new object[] {
marknum}, this.onEndGetBookWithMarkDelegate, this.onGetBookWithMarkCompletedDelegate, userState);
}
[System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
System.IAsyncResult hypphone.ServiceReference1.IService.BeginGetBookWithAuthor(string author, System.AsyncCallback callback, object asyncState) {
return base.Channel.BeginGetBookWithAuthor(author, callback, asyncState);
}
[System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
System.Collections.ObjectModel.ObservableCollection<hypphone.ServiceReference1.librarylist> hypphone.ServiceReference1.IService.EndGetBookWithAuthor(System.IAsyncResult result) {
return base.Channel.EndGetBookWithAuthor(result);
}
private System.IAsyncResult OnBeginGetBookWithAuthor(object[] inValues, System.AsyncCallback callback, object asyncState) {
string author = ((string)(inValues[0]));
return ((hypphone.ServiceReference1.IService)(this)).BeginGetBookWithAuthor(author, callback, asyncState);
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -