Esempio 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;
 }
Esempio n. 2
0
 public System.IO.Stream DownloadContent(ref Controle_Tranche.CWS.ContentService.OTAuthentication OTAuthentication, string contextID)
 {
     Controle_Tranche.CWS.ContentService.DownloadContentRequest inValue = new Controle_Tranche.CWS.ContentService.DownloadContentRequest();
     inValue.OTAuthentication = OTAuthentication;
     inValue.contextID        = contextID;
     Controle_Tranche.CWS.ContentService.DownloadContentResponse retVal = ((Controle_Tranche.CWS.ContentService.ContentService)(this)).DownloadContent(inValue);
     OTAuthentication = retVal.OTAuthentication;
     return(retVal.DownloadContentResult);
 }
Esempio n. 3
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);
 }
Esempio n. 4
0
 public UploadContentResponse(Controle_Tranche.CWS.ContentService.OTAuthentication OTAuthentication, string UploadContentResult)
 {
     this.OTAuthentication    = OTAuthentication;
     this.UploadContentResult = UploadContentResult;
 }
Esempio n. 5
0
 public DownloadContentResponse(Controle_Tranche.CWS.ContentService.OTAuthentication OTAuthentication, System.IO.Stream DownloadContentResult)
 {
     this.OTAuthentication      = OTAuthentication;
     this.DownloadContentResult = DownloadContentResult;
 }
Esempio n. 6
0
 public DownloadContentRequest(Controle_Tranche.CWS.ContentService.OTAuthentication OTAuthentication, string contextID)
 {
     this.OTAuthentication = OTAuthentication;
     this.contextID        = contextID;
 }