private object[] OnEndGet(System.IAsyncResult result)
 {
     WpfUi.ImageServiceReferense.Image retVal = this.EndGet(result);
     return(new object[] {
         retVal
     });
 }
 public void CreateAsync(WpfUi.ImageServiceReferense.Image image, object userState)
 {
     if ((this.onBeginCreateDelegate == null))
     {
         this.onBeginCreateDelegate = new BeginOperationDelegate(this.OnBeginCreate);
     }
     if ((this.onEndCreateDelegate == null))
     {
         this.onEndCreateDelegate = new EndOperationDelegate(this.OnEndCreate);
     }
     if ((this.onCreateCompletedDelegate == null))
     {
         this.onCreateCompletedDelegate = new System.Threading.SendOrPostCallback(this.OnCreateCompleted);
     }
     base.InvokeAsync(this.onBeginCreateDelegate, new object[] {
         image
     }, this.onEndCreateDelegate, this.onCreateCompletedDelegate, userState);
 }
 public void CreateAsync(WpfUi.ImageServiceReferense.Image image)
 {
     this.CreateAsync(image, null);
 }
 private System.IAsyncResult OnBeginCreate(object[] inValues, System.AsyncCallback callback, object asyncState)
 {
     WpfUi.ImageServiceReferense.Image image = ((WpfUi.ImageServiceReferense.Image)(inValues[0]));
     return(this.BeginCreate(image, callback, asyncState));
 }
 public System.IAsyncResult BeginCreate(WpfUi.ImageServiceReferense.Image image, System.AsyncCallback callback, object asyncState)
 {
     return(base.Channel.BeginCreate(image, callback, asyncState));
 }
 public void Create(WpfUi.ImageServiceReferense.Image image)
 {
     base.Channel.Create(image);
 }