Example #1
0
 public void Get(string remotename, System.IO.Stream stream)
 {
     // FileOpenRead has flags System.IO.FileMode.Open, System.IO.FileAccess.Read, System.IO.FileShare.Read
     using (System.IO.FileStream readstream = systemIO.FileOpenRead(GetRemoteName(remotename)))
         Utility.Utility.CopyStream(readstream, stream, true, m_copybuffer);
 }