Example #1
0
 public void GetAllAsync(UnitTesting.Lookup.GetAllRequest request, object userState)
 {
     if ((this.onBeginGetAllDelegate == null))
     {
         this.onBeginGetAllDelegate = new BeginOperationDelegate(this.OnBeginGetAll);
     }
     if ((this.onEndGetAllDelegate == null))
     {
         this.onEndGetAllDelegate = new EndOperationDelegate(this.OnEndGetAll);
     }
     if ((this.onGetAllCompletedDelegate == null))
     {
         this.onGetAllCompletedDelegate = new System.Threading.SendOrPostCallback(this.OnGetAllCompleted);
     }
     base.InvokeAsync(this.onBeginGetAllDelegate, new object[] {
         request
     }, this.onEndGetAllDelegate, this.onGetAllCompletedDelegate, userState);
 }
Example #2
0
 public void GetAllAsync(UnitTesting.Lookup.GetAllRequest request)
 {
     this.GetAllAsync(request, null);
 }
Example #3
0
 public System.IAsyncResult BeginGetAll(UnitTesting.Lookup.GetAllRequest request, System.AsyncCallback callback, object asyncState)
 {
     return(base.Channel.BeginGetAll(request, callback, asyncState));
 }
Example #4
0
 private System.IAsyncResult OnBeginGetAll(object[] inValues, System.AsyncCallback callback, object asyncState)
 {
     UnitTesting.Lookup.GetAllRequest request = ((UnitTesting.Lookup.GetAllRequest)(inValues[0]));
     return(this.BeginGetAll(request, callback, asyncState));
 }
Example #5
0
 public UnitTesting.Lookup.GetAllResponse GetAll(UnitTesting.Lookup.GetAllRequest request)
 {
     return(base.Channel.GetAll(request));
 }