Example #1
0
 public string UploadImage(string userName, string password, string appOrDocRelativePath, byte[] imageBytes, bool createThumbnail, bool overwriteIfExists)
 {
     GrinGlobal.Zone.GGService.UploadImageRequest inValue = new GrinGlobal.Zone.GGService.UploadImageRequest();
     inValue.userName             = userName;
     inValue.password             = password;
     inValue.appOrDocRelativePath = appOrDocRelativePath;
     inValue.imageBytes           = imageBytes;
     inValue.createThumbnail      = createThumbnail;
     inValue.overwriteIfExists    = overwriteIfExists;
     GrinGlobal.Zone.GGService.UploadImageResponse retVal = ((GrinGlobal.Zone.GGService.GUISoap)(this)).UploadImage(inValue);
     return(retVal.UploadImageResult);
 }
Example #2
0
 GrinGlobal.Zone.GGService.UploadImageResponse GrinGlobal.Zone.GGService.GUISoap.UploadImage(GrinGlobal.Zone.GGService.UploadImageRequest request)
 {
     return(base.Channel.UploadImage(request));
 }