Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
SyncWindowsFileStreamStrategy.cs
Go to the documentation of this file.
2
4
6{
7 internal override bool IsAsync => false;
8
10 : base(handle, access)
11 {
12 }
13
14 internal SyncWindowsFileStreamStrategy(string path, FileMode mode, FileAccess access, FileShare share, FileOptions options, long preallocationSize)
15 : base(path, mode, access, share, options, preallocationSize)
16 {
17 }
18}
SyncWindowsFileStreamStrategy(SafeFileHandle handle, FileAccess access)
SyncWindowsFileStreamStrategy(string path, FileMode mode, FileAccess access, FileShare share, FileOptions options, long preallocationSize)