IFileSystem: Added FileOptions parameter to OpenFile

This commit is contained in:
Tal Aloni 2017-05-19 13:37:11 +03:00
parent 340f55c26e
commit 03cff5e469
6 changed files with 74 additions and 238 deletions

View file

@ -48,7 +48,7 @@ namespace Utilities
/// <exception cref="System.IO.FileNotFoundException"></exception>
/// <exception cref="System.IO.IOException"></exception>
/// <exception cref="System.UnauthorizedAccessException"></exception>
Stream OpenFile(string path, FileMode mode, FileAccess access, FileShare share);
Stream OpenFile(string path, FileMode mode, FileAccess access, FileShare share, FileOptions options);
/// <exception cref="System.ArgumentException"></exception>
/// <exception cref="System.IO.FileNotFoundException"></exception>