Visual Basic (Declaration) | |
---|---|
Protected Overloads Overrides Sub Dispose( _ ByVal disposing As Boolean _ ) |
Visual Basic (Usage) | ![]() |
---|---|
Dim instance As GZipStream Dim disposing As Boolean instance.Dispose(disposing) |
Parameters
- disposing
- indicates whether the Dispose method was invoked by user code.
This may or may not result in a Close()
call on the captive stream. See the constructors that have a leaveOpen
parameter for more information.
This method may be invoked in two distinct scenarios. If disposing == true, the method has been called directly or indirectly by a user's code, for example via the public Dispose() method. In this case, both managed and unmanaged resources can be referenced and disposed. If disposing == false, the method has been called by the runtime from inside the object finalizer and this method should not reference other objects; in that case only unmanaged resources must be referenced or disposed.
Target Platforms: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family, Windows Vista, Windows Server 2008 family