Example #1
0
 public LocalFile(RemoteFile remoteFile, Identity.WebServiceAccount webServiceAccount)
 {
     this.m_FullPath     = System.IO.Path.Combine(webServiceAccount.LocalFileDownloadDirectory, remoteFile.FileName);
     this.m_MemoryStream = remoteFile.MemoryStream;
 }
Example #2
0
 public LocalFile(RemoteFile remoteFile, Identity.WebServiceAccount webServiceAccount)
 {
     this.m_FullPath = System.IO.Path.Combine(webServiceAccount.LocalFileDownloadDirectory, remoteFile.FileName);
     this.m_MemoryStream = remoteFile.MemoryStream;
 }
Example #3
0
 public LocalFile(RemoteFile remoteFile, string fullPath)
 {
     this.m_FullPath     = fullPath;
     this.m_MemoryStream = remoteFile.MemoryStream;
 }
Example #4
0
 public LocalFile(RemoteFile remoteFile, string fullPath)
 {
     this.m_FullPath = fullPath;
     this.m_MemoryStream = remoteFile.MemoryStream;
 }