SolFSStream.Close method
Filter:
Pascal DLL C++ (DLL/Lib) C++ (VCL) C++ (.NET) C# VB.NETOverview
Closes the file.
Declaration
[Pascal]
Not implemented;
[DLL]
long _stdcall StorageCloseFile(unsigned long File);
[C++ (DLL/Lib)]
Not implemented;
[C++ (VCL)]
Not implemented;
[C++ (.NET)]
void Close()
[C#]
void Close()
[VB.NET]
Sub Close
Parameters
[DLL] Return values
0 if the function succeeded or one of Error codes if the function failed.
Description
Use this method to close the file. In VCL and C++ (DLL/Lib) just dispose of the object in order to close the stream.
[.NET] The file is flushed and closed.
Stream object becomes invalid after Close is called and any attempt to call one of the methods leads to ObjectDisposedException error.
[DLL] The file is closed and the handle becomes invalid.
