Best practice: Override OnDispose(bool disposing) vs Disposed event on Component. - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T14:48:05Z http://stackoverflow.com/feeds/question/456299 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/456299/best-practice-override-ondisposebool-disposing-vs-disposed-event-on-component 0 Best practice: Override OnDispose(bool disposing) vs Disposed event on Component. orj 2009-01-19T01:31:16Z 2009-09-16T03:37:22Z <p>In .Net the <code>Component</code> class exposes a <code>Disposed</code> event. It also provides a protected member <code>OnDispose(bool disposing)</code>.</p> <p>What is the best practice for a custom component that extends <code>Component</code>? Override <code>OnDispose(bool)</code> or attach an event handler to <code>Disposed</code> on construction? </p> <p>My feeling is that one should override <code>OnDispose(bool)</code> and seal the class.</p> <p>Thoughts?</p> http://stackoverflow.com/questions/456299/best-practice-override-ondisposebool-disposing-vs-disposed-event-on-component/456306#456306 1 Answer by Spence for Best practice: Override OnDispose(bool disposing) vs Disposed event on Component. Spence 2009-01-19T01:41:58Z 2009-01-19T01:41:58Z <p>I would recommend overriding the behaviour, as an implementer of your component has access to the event handler and as such could deregister your disposer implementation by accident. I believe that you may also need to do this depending on what your custom component is doing, as you may need to run your disposing tasks before calling to the base disposer if you have stateful objects or external interfaces etc.</p> http://stackoverflow.com/questions/456299/best-practice-override-ondisposebool-disposing-vs-disposed-event-on-component/456320#456320 2 Answer by bryanbcook for Best practice: Override OnDispose(bool disposing) vs Disposed event on Component. bryanbcook 2009-01-19T01:50:43Z 2009-09-16T03:37:22Z <p>Typically events are used by consumers so that they can be notified when events occur. If you're extending the Type and need to clean up resources you should override Dispose(bool disposing)</p> <p>Spence is partly right about the Event handler, multiple events can be assigned but the issue is that you can't guarantee the order in which the Events are handled.</p> <p>Sealing the class often depends on what you're designing.</p> <p>The FxCop rule also has some good info: <a href="http://msdn.microsoft.com/en-us/library/ms244737%28VS.80%29.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/ms244737%28VS.80%29.aspx</a></p>