コード例 #1
0
ファイル: LocalFile.cs プロジェクト: waffle-iron/YPILIS
 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
ファイル: LocalFile.cs プロジェクト: WilliamCopland/YPILIS
 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
ファイル: LocalFile.cs プロジェクト: waffle-iron/YPILIS
 public LocalFile(RemoteFile remoteFile, string fullPath)
 {
     this.m_FullPath     = fullPath;
     this.m_MemoryStream = remoteFile.MemoryStream;
 }
コード例 #4
0
ファイル: LocalFile.cs プロジェクト: WilliamCopland/YPILIS
 public LocalFile(RemoteFile remoteFile, string fullPath)
 {
     this.m_FullPath = fullPath;
     this.m_MemoryStream = remoteFile.MemoryStream;
 }