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

◆ DisposeAsync()

override ValueTask System.IO.IsolatedStorage.IsolatedStorageFileStream.DisposeAsync ( )
inlinevirtual

Reimplemented from System.IO.FileStream.

Definition at line 173 of file IsolatedStorageFileStream.cs.

174 {
175 if (!(GetType() != typeof(IsolatedStorageFileStream)))
176 {
177 if (_fs == null)
178 {
179 return default(ValueTask);
180 }
181 return _fs.DisposeAsync();
182 }
183 return base.DisposeAsync();
184 }
override ValueTask DisposeAsync()

References System.IO.IsolatedStorage.IsolatedStorageFileStream._fs, and System.IO.FileStream.DisposeAsync().