ParamEqEffect.Disposing Event (Microsoft.DirectX.DirectSound)
Occurs when the Dispose method is called or when the ParamEqEffect object is finalized and collected by the garbage collector of the Microsoft .NET common language runtime.
Definition
Visual Basic Public Event Disposing As EventHandler C# public event EventHandler Disposing; C++ public:
event EventHandler^ Disposing;JScript In JScript, you can use events, but you cannot define your own.
Remarks
To add an event handler that listens for the ParamEqEffect.Disposing event, use the following code.
obj.Disposing += new System.EventHandler(this.OnDisposing);
The Disposed property of the ParamEqEffect object indicates whether that object has been disposed.