예제 #1
0
 public int SaveFileStream(byte[] buffer, int index, int count, int n, string SavePath, string FileName, ref string Err, string UserId)
 {
     Copy.UploadFile.SaveFileStreamRequest inValue = new Copy.UploadFile.SaveFileStreamRequest();
     inValue.Body          = new Copy.UploadFile.SaveFileStreamRequestBody();
     inValue.Body.buffer   = buffer;
     inValue.Body.index    = index;
     inValue.Body.count    = count;
     inValue.Body.n        = n;
     inValue.Body.SavePath = SavePath;
     inValue.Body.FileName = FileName;
     inValue.Body.Err      = Err;
     inValue.Body.UserId   = UserId;
     Copy.UploadFile.SaveFileStreamResponse retVal = ((Copy.UploadFile.UploadFileSoap)(this)).SaveFileStream(inValue);
     Err = retVal.Body.Err;
     return(retVal.Body.SaveFileStreamResult);
 }
예제 #2
0
 Copy.UploadFile.SaveFileStreamResponse Copy.UploadFile.UploadFileSoap.SaveFileStream(Copy.UploadFile.SaveFileStreamRequest request)
 {
     return(base.Channel.SaveFileStream(request));
 }