Пример #1
0
 public System.IAsyncResult BeginRegisterAttendee(WCFRegistration.RegistrationService.Attendee attendee, System.AsyncCallback callback, object asyncState)
 {
     object[] _args = new object[1];
     _args[0] = attendee;
     System.IAsyncResult _result = base.BeginInvoke("RegisterAttendee", _args, callback, asyncState);
     return(_result);
 }
Пример #2
0
 public void RegisterAttendeeAsync(WCFRegistration.RegistrationService.Attendee attendee, object userState)
 {
     if ((this.onBeginRegisterAttendeeDelegate == null))
     {
         this.onBeginRegisterAttendeeDelegate = new BeginOperationDelegate(this.OnBeginRegisterAttendee);
     }
     if ((this.onEndRegisterAttendeeDelegate == null))
     {
         this.onEndRegisterAttendeeDelegate = new EndOperationDelegate(this.OnEndRegisterAttendee);
     }
     if ((this.onRegisterAttendeeCompletedDelegate == null))
     {
         this.onRegisterAttendeeCompletedDelegate = new System.Threading.SendOrPostCallback(this.OnRegisterAttendeeCompleted);
     }
     base.InvokeAsync(this.onBeginRegisterAttendeeDelegate, new object[] {
         attendee
     }, this.onEndRegisterAttendeeDelegate, this.onRegisterAttendeeCompletedDelegate, userState);
 }
Пример #3
0
 private System.IAsyncResult OnBeginRegisterAttendee(object[] inValues, System.AsyncCallback callback, object asyncState)
 {
     WCFRegistration.RegistrationService.Attendee attendee = ((WCFRegistration.RegistrationService.Attendee)(inValues[0]));
     return(((WCFRegistration.RegistrationService.IRegistrationService)(this)).BeginRegisterAttendee(attendee, callback, asyncState));
 }
Пример #4
0
 public void RegisterAttendeeAsync(WCFRegistration.RegistrationService.Attendee attendee)
 {
     this.RegisterAttendeeAsync(attendee, null);
 }
Пример #5
0
 System.IAsyncResult WCFRegistration.RegistrationService.IRegistrationService.BeginRegisterAttendee(WCFRegistration.RegistrationService.Attendee attendee, System.AsyncCallback callback, object asyncState)
 {
     return(base.Channel.BeginRegisterAttendee(attendee, callback, asyncState));
 }