Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ ChooseStrategyCore() [2/2]

static FileStreamStrategy System.IO.Strategies.FileStreamHelpers.ChooseStrategyCore ( string path,
FileMode mode,
FileAccess access,
FileShare share,
FileOptions options,
long preallocationSize )
inlinestaticprivate

Definition at line 217 of file FileStreamHelpers.cs.

218 {
219 if ((options & FileOptions.Asynchronous) == 0)
220 {
221 return new SyncWindowsFileStreamStrategy(path, mode, access, share, options, preallocationSize);
222 }
223 return new AsyncWindowsFileStreamStrategy(path, mode, access, share, options, preallocationSize);
224 }

References System.Runtime.Serialization.Dictionary, and System.options.