Adding GetStream(FileMode) to get the stream of a file

This commit is contained in:
Nathan Adams
2012-05-12 18:36:46 -05:00
parent f152fc2978
commit e74c663c02
6 changed files with 32 additions and 0 deletions

View File

@@ -6,5 +6,6 @@ namespace Axios.Engine.Interfaces
{
void WriteData(string data, FileMode mode);
string ReadData();
FileStream GetStream(FileMode mode);
}
}