Ejemplo n.º 1
0
 public System.IAsyncResult BeginUpload(Chucksoft.Silverlight.Controls.PhotoService.UploadRequest request, System.AsyncCallback callback, object asyncState)
 {
     object[] _args = new object[1];
     _args[0] = request;
     System.IAsyncResult _result = base.BeginInvoke("Upload", _args, callback, asyncState);
     return(_result);
 }
Ejemplo n.º 2
0
 private System.IAsyncResult BeginUpload(string token, byte[] image, int galleryId, string imageFormat, System.AsyncCallback callback, object asyncState)
 {
     Chucksoft.Silverlight.Controls.PhotoService.UploadRequest inValue = new Chucksoft.Silverlight.Controls.PhotoService.UploadRequest();
     inValue.Body             = new Chucksoft.Silverlight.Controls.PhotoService.UploadRequestBody();
     inValue.Body.token       = token;
     inValue.Body.image       = image;
     inValue.Body.galleryId   = galleryId;
     inValue.Body.imageFormat = imageFormat;
     return(((Chucksoft.Silverlight.Controls.PhotoService.PhotoServiceSoap)(this)).BeginUpload(inValue, callback, asyncState));
 }
Ejemplo n.º 3
0
 System.IAsyncResult Chucksoft.Silverlight.Controls.PhotoService.PhotoServiceSoap.BeginUpload(Chucksoft.Silverlight.Controls.PhotoService.UploadRequest request, System.AsyncCallback callback, object asyncState)
 {
     return(base.Channel.BeginUpload(request, callback, asyncState));
 }