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

◆ IsolatedStorageFileStream() [9/9]

System.IO.IsolatedStorage.IsolatedStorageFileStream.IsolatedStorageFileStream ( string path,
FileMode mode,
FileAccess access,
FileShare share,
int bufferSize,
InitialiationData initializationData )
inlineprivate

Definition at line 100 of file IsolatedStorageFileStream.cs.

101 : base(new SafeFileHandle(initializationData.NestedStream.SafeFileHandle.DangerousGetHandle(), ownsHandle: false), access, bufferSize)
102 {
103 _isf = initializationData.StorageFile;
104 _givenPath = path;
105 _fullPath = initializationData.FullPath;
106 _fs = initializationData.NestedStream;
107 }

References System.IO.IsolatedStorage.IsolatedStorageFileStream._fs, System.IO.IsolatedStorage.IsolatedStorageFileStream._fullPath, System.IO.IsolatedStorage.IsolatedStorageFileStream._givenPath, System.IO.IsolatedStorage.IsolatedStorageFileStream._isf, System.IO.IsolatedStorage.IsolatedStorageFileStream.InitialiationData.FullPath, System.IO.IsolatedStorage.IsolatedStorageFileStream.InitialiationData.NestedStream, and System.IO.IsolatedStorage.IsolatedStorageFileStream.InitialiationData.StorageFile.