예제 #1
0
 public byte[] EndDownloadCaptureImageBy(System.IAsyncResult result, out string ChildPath, out string FileName, out long Length)
 {
     Masco.Display.ILSValidator.Client.Common.ServiceReferenceFileTransfer.DownloadStreamInfo retVal = ((Masco.Display.ILSValidator.Client.Common.ServiceReferenceFileTransfer.IFileTransfer)(this)).EndDownloadCaptureImageBy(result);
     ChildPath = retVal.ChildPath;
     FileName  = retVal.FileName;
     Length    = retVal.Length;
     return(retVal.Bytes);
 }
예제 #2
0
 public byte[] DownloadCaptureImageBy(int captureImagePk, out string ChildPath, out string FileName, out long Length)
 {
     Masco.Display.ILSValidator.Client.Common.ServiceReferenceFileTransfer.DownloadStreamRequest inValue = new Masco.Display.ILSValidator.Client.Common.ServiceReferenceFileTransfer.DownloadStreamRequest();
     inValue.captureImagePk = captureImagePk;
     Masco.Display.ILSValidator.Client.Common.ServiceReferenceFileTransfer.DownloadStreamInfo retVal = ((Masco.Display.ILSValidator.Client.Common.ServiceReferenceFileTransfer.IFileTransfer)(this)).DownloadCaptureImageBy(inValue);
     ChildPath = retVal.ChildPath;
     FileName  = retVal.FileName;
     Length    = retVal.Length;
     return(retVal.Bytes);
 }