Example #1
0
 public System.IAsyncResult BeginGetMobileMatch(WcfServiceHost.Model.MobileQuery query, System.AsyncCallback callback, object asyncState)
 {
     object[] _args = new object[1];
     _args[0] = query;
     System.IAsyncResult _result = base.BeginInvoke("GetMobileMatch", _args, callback, asyncState);
     return(_result);
 }
Example #2
0
 public void GetMobileMatchAsync(WcfServiceHost.Model.MobileQuery query, object userState)
 {
     if ((this.onBeginGetMobileMatchDelegate == null))
     {
         this.onBeginGetMobileMatchDelegate = new BeginOperationDelegate(this.OnBeginGetMobileMatch);
     }
     if ((this.onEndGetMobileMatchDelegate == null))
     {
         this.onEndGetMobileMatchDelegate = new EndOperationDelegate(this.OnEndGetMobileMatch);
     }
     if ((this.onGetMobileMatchCompletedDelegate == null))
     {
         this.onGetMobileMatchCompletedDelegate = new System.Threading.SendOrPostCallback(this.OnGetMobileMatchCompleted);
     }
     base.InvokeAsync(this.onBeginGetMobileMatchDelegate, new object[] {
         query
     }, this.onEndGetMobileMatchDelegate, this.onGetMobileMatchCompletedDelegate, userState);
 }
Example #3
0
 private System.IAsyncResult OnBeginGetMobileMatch(object[] inValues, System.AsyncCallback callback, object asyncState)
 {
     WcfServiceHost.Model.MobileQuery query = ((WcfServiceHost.Model.MobileQuery)(inValues[0]));
     return(((IMobileService)(this)).BeginGetMobileMatch(query, callback, asyncState));
 }
Example #4
0
 public void GetMobileMatchAsync(WcfServiceHost.Model.MobileQuery query)
 {
     this.GetMobileMatchAsync(query, null);
 }
Example #5
0
 System.IAsyncResult IMobileService.BeginGetMobileMatch(WcfServiceHost.Model.MobileQuery query, System.AsyncCallback callback, object asyncState)
 {
     return(base.Channel.BeginGetMobileMatch(query, callback, asyncState));
 }