Best practice: Override OnDispose(bool disposing) vs Disposed event on Component. - Stack Overflow most recent 30 from stackoverflow.com2009-11-30T14:48:05Zhttp://stackoverflow.com/feeds/question/456299http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/456299/best-practice-override-ondisposebool-disposing-vs-disposed-event-on-component0Best practice: Override OnDispose(bool disposing) vs Disposed event on Component.orj2009-01-19T01:31:16Z2009-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#4563061Answer by Spence for Best practice: Override OnDispose(bool disposing) vs Disposed event on Component.Spence2009-01-19T01:41:58Z2009-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#4563202Answer by bryanbcook for Best practice: Override OnDispose(bool disposing) vs Disposed event on Component.bryanbcook2009-01-19T01:50:43Z2009-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>