EventChain.Dispose Method

[This documentation is for preview only, and is subject to change in later releases. Blank topics are included as placeholders.]

Releases all resources used by the current instance of the EventChain class.

Namespace:  Microsoft.VisualStudio.TraceLog
Assembly:  Microsoft.VisualStudio.TraceLog (in Microsoft.VisualStudio.TraceLog.dll)

Syntax

'Declaration
Public Sub Dispose
'Usage
Dim instance As EventChain

instance.Dispose()
public void Dispose()
public:
virtual void Dispose() sealed
abstract Dispose : unit -> unit 
override Dispose : unit -> unit 
public final function Dispose()

Implements

IDisposable.Dispose()

Remarks

Call Dispose when you are finished using the EventChain. The Dispose method leaves the EventChain in an unusable state. After calling Dispose, you must release all references to the EventChain so the garbage collector can reclaim the memory that the EventChain was occupying.

For more information, see Cleaning Up Unmanaged Resources and Implementing a Dispose Method.

Note

Always call Dispose before you release your last reference to the EventChain. Otherwise, the resources it is using will not be freed until the garbage collector calls the EventChain object's Finalize method.

.NET Framework Security

See Also

Reference

EventChain Class

EventChain Members

Dispose Overload

Microsoft.VisualStudio.TraceLog Namespace