Ejemplo n.º 1
0
 public UploadContentRequest(Controle_Tranche.CWS.ContentService.OTAuthentication OTAuthentication, string contextID, Controle_Tranche.CWS.ContentService.FileAtts fileAtts, System.IO.Stream contents)
 {
     this.OTAuthentication = OTAuthentication;
     this.contextID        = contextID;
     this.fileAtts         = fileAtts;
     this.contents         = contents;
 }
Ejemplo n.º 2
0
 public string UploadContent(ref Controle_Tranche.CWS.ContentService.OTAuthentication OTAuthentication, string contextID, Controle_Tranche.CWS.ContentService.FileAtts fileAtts, System.IO.Stream contents)
 {
     Controle_Tranche.CWS.ContentService.UploadContentRequest inValue = new Controle_Tranche.CWS.ContentService.UploadContentRequest();
     inValue.OTAuthentication = OTAuthentication;
     inValue.contextID        = contextID;
     inValue.fileAtts         = fileAtts;
     inValue.contents         = contents;
     Controle_Tranche.CWS.ContentService.UploadContentResponse retVal = ((Controle_Tranche.CWS.ContentService.ContentService)(this)).UploadContent(inValue);
     OTAuthentication = retVal.OTAuthentication;
     return(retVal.UploadContentResult);
 }