示例#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;
 }
示例#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;
 }
示例#3
0
 public LocalFile(RemoteFile remoteFile, string fullPath)
 {
     this.m_FullPath     = fullPath;
     this.m_MemoryStream = remoteFile.MemoryStream;
 }
示例#4
0
 public LocalFile(RemoteFile remoteFile, string fullPath)
 {
     this.m_FullPath = fullPath;
     this.m_MemoryStream = remoteFile.MemoryStream;
 }