active questions tagged idisposable - Stack Overflowmost recent 30 from stackoverflow.com2009-12-21T14:58:15Zhttp://stackoverflow.com/feeds/tag/idisposablehttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1939668/how-to-correctly-use-temporary-storage-in-application1How to correctly use temporary storage in ApplicationBeowulfOF2009-12-21T11:47:06Z2009-12-21T12:08:19Z
<p>Hi,</p>
<p>I'm in the need again to manage a temporary folder where parts of our application store documents, e.g. between printing and importing to a dms.</p>
<p>Those files should be deleted on application shutdown and ideally on application start as well, just in case something went wrong.</p>
<p>I just thought of a simple class implementing <code>IDisposable</code> that can be used inside Main() with a using()-statement, but somehow this feels dirty. Using <code>Directory.Delete(path, true);</code> inside a catch block that catches all <code>IOException</code>s didn't really worked reliably in past.</p>
<p>Any opinions on how to implement such a feature the smart way? Any recommendendations?</p>
<p>The actual path to use is not relevant to us, but we do use <code>%AppData%\[Programname]\Temp</code> now.</p>
<p>Is it possible to create really temporary files on Windows which are deleted on shutdown? </p>
<p>thx for your time.</p>
http://stackoverflow.com/questions/1915352/whats-the-best-way-of-returning-constructed-idisposables-safely6What's the best way of returning constructed IDisposables safely?Eamon Nerbonne2009-12-16T15:26:50Z2009-12-16T15:59:09Z
<p>If you're just using the functionality that an IDisposable provides, the aptly named <code>using</code> clause works fine. If you're wrapping an <code>IDisposable</code>, you yourself need to be <code>IDisposable</code> and you need to implement the appropriate pattern (either a sealed <code>IDisposable</code> class, or the messier but <a href="http://msdn.microsoft.com/en-us/library/system.idisposable.aspx" rel="nofollow">standard <code>virtual</code> pattern</a>).</p>
<p>But sometimes you'd just like a helper factory method for cleaner code. If you return an <code>IDisposable</code> directly after construction, you're fine, but if you first construct it and then modify it or otherwise execute code that can throw an exception before returning, you need to safely call <code>.Dispose()</code> - but only if there was an error.</p>
<p>For example, unsafe code could look like this...</p>
<pre><code>DbCommand CreateCommand(string commandText)
{
var newCommand = connection.CreateCommand();
newCommand.CommandText = commandText; //what if this throws?
return newCommand;
}
</code></pre>
<p>And a safe variant as follows...</p>
<pre><code>DbCommand CreateCommand(string commandText)
{
DbCommand newCommand = null;
try {
newCommand = connection.CreateCommand();
newCommand.CommandText = commandText; //if this throws...
return newCommand;
} catch {
if (newCommand != null)
newCommand.Dispose(); //...we'll clean up here.
throw;
}
}
</code></pre>
<p>But that safe variant has a catch clause (which I try to avoid), and it's much longer and pretty messy once you have several IDisposables to deal with. I suppose that the extra <code>throw;</code> clause also doubles the cost of the exception (which probably rarely matters, but certainly isn't a good thing in a common pattern).</p>
<p>The code-bloat is particularly aggravating with code that originally looked like...</p>
<pre><code>return new MyDisposableThing {
OptionA = "X",
OptionB = B.Blabla,
Values = src.Values.Where(priority => priority > 1.0),
};
</code></pre>
<p>So, is there a better (meaning: more readable, shorter, faster or more natural) way of writing <code>IDisposable</code>-returning methods?</p>
http://stackoverflow.com/questions/113267/vb-net-should-a-finalize-method-be-added-when-implementing-idisposable1VB.NET - Should a Finalize method be added when implementing IDisposable?Laurent2008-09-22T05:07:43Z2009-12-12T06:55:24Z
<p>In Visual Studio, when I type the line "<code>Implements IDisposable</code>", the IDE automatically adds:</p>
<ul>
<li>a <code>disposedValue</code> member variable</li>
<li>a <code>Sub Dispose() Implements IDisposable.Dispose</code></li>
<li>a <code>Sub Dispose(ByVal disposing As Boolean)</code></li>
</ul>
<p>The <code>Dispose()</code> should be left alone, and the clean up code should be put in <code>Dispose(disposing)</code>.</p>
<p>However the <a href="http://msdn.microsoft.com/en-us/library/s9bwddyx.aspx" rel="nofollow" title="Dispose Finalize Pattern">Dispose Finalize Pattern</a> says you should also override <code>Sub Finalize()</code> to call <code>Dispose(False)</code>. Why doesn't the IDE also add this? Must I add it myself, or is it somehow called implicitly?</p>
<p><strike><strong>EDIT:</strong> Any idea why the IDE automatically adds 80% of the required stuff but leaves out the Finalize method? Isn't the whole point of this kind of feature to help you <em>not</em> forget these things?</strike></p>
<p><strong>EDIT2:</strong> Thank you all for your excellent answers, this now makes perfect sense!</p>
http://stackoverflow.com/questions/1887314/how-to-properly-dispose-of-a-webresponse-instance1How to properly dispose of a WebResponse instance?Marcus2009-12-11T10:57:40Z2009-12-11T11:20:46Z
<p>Normally, one writes code something like this to download some data using a WebRequest.</p>
<pre><code>using(WebResponse resp = request.GetResponse()) // WebRequest request...
using(Stream str = resp.GetResponseStream())
; // do something with the stream str
</code></pre>
<p>Now if a WebException is thrown, the WebException has a reference to the WebResponse object, which may or may not have Dispose called (depending on where the exception has happened, or how the response class is implemented) - I don't know.</p>
<p>My question is how one is supposed to deal with this. Is one supposed to be coding very defensively, and dispose of the response in the WebException object (that would be a little weird, as WebException is not IDisposable). Or is one supposed to ignore this, potentially accessing a disposed object or never disposing an IDisposable object?
The example given in the MSDN documentation for WebException.Response is wholly inadequate.</p>
http://stackoverflow.com/questions/1870469/c-what-does-destructors-are-not-inherited-actually-mean4C# - What does "destructors are not inherited" actually mean?Secret Squirrel2009-12-08T22:52:47Z2009-12-09T21:51:05Z
<p>Section 10.13, Destructors, of the <a href="http://msdn.microsoft.com/en-gb/vcsharp/aa336809.aspx" rel="nofollow">C# Language Specification 3.0</a> states the following:</p>
<blockquote>
<p>Destructors are not inherited. Thus, a class has no destructors other than the one which may be declared in that class.</p>
</blockquote>
<p>The Destructors section of the <a href="http://msdn.microsoft.com/en-us/library/66x5fx1b.aspx" rel="nofollow">C# Programming Guide</a> contains an example demonstrating how destructors in an inheritance hierarchy are called, including the following statement:</p>
<blockquote>
<p>...the destructors for the ... classes are called automatically, and in order, from the most-derived to the least-derived.</p>
</blockquote>
<p>I have investigated this with various practical examples, including one with a base class that defines a destructor, with a derived class that inherits from the base class and does not define a destructor. Creating an instance of the derived class, allowing all references to the instance to go out of scope and then forcing a garbage collection demonstrates that the destructor defined in the base class is called when the instance of the derived class is finalized.</p>
<p><strong>My question is what does "destructors are not inherited" actually mean, since although you can't call a destructor explicitly, destructors in an inheritance chain are called automatically, and base class destructors are called even if the derived class does not define a destructor?</strong></p>
<p>Does it relate to some subtle semantic distinction that finalization is implemented by the garbage collector rather than the C# language/compiler?</p>
<p>Edit 1:</p>
<p>While the C# language spec also states that "instance constructors are not inherited", the behaviour in relation to constructors is significantly different from desctructors, and fits better IMO with the "not inherited" terminology, as demonstrated in the example below:</p>
<pre><code> public class ConstructorTestBase
{
public ConstructorTestBase(string exampleParam)
{
}
}
public class ConstructorTest: ConstructorTestBase
{
public ConstructorTest(int testParam)
: base(string.Empty)
{
}
}
...
// The following is valid since there is a derived class constructor defined that
// accepts an integer parmameter.
ConstructorTest test1 = new ConstructorTest(5);
// The following is not valid since the base class constructor is not inherited
// by the derived class and the derived class does not define a constructor that
// takes a string parameter.
ConstructorTest test2 = new ConstructorTest("Test");
</code></pre>
<p>The behaviour in relation to destructors is very different from this, as demonstrated in the following example, which extends the previous constructor example by adding a desctructor only to the base class.</p>
<pre><code> public class ConstructorTestBase
{
public ConstructorTestBase(string exampleParam)
{
}
~ConstructorTestBase()
{
Console.WriteLine("~ConstructorTestBase()");
}
}
...
ConstructorTest test1 = new ConstructorTest(5);
test1 = null;
GC.Collect();
</code></pre>
<p>The example above demonstrates that base class constructors will be called when an instance of a derived class is finalized, even if the derived class does not explicitly define a destructor.</p>
<p><strong>My point is simply that I have encountered many people who do not realise or understand that this what happens, and a significant part of the reason for this is the "destructors are not inherited" statement.</strong></p>
<p>Edit 2:</p>
<p>The C# language spec also states the following and gives a code example of the under-the-hood implementation:</p>
<blockquote>
<p>Destructors are implemented by overriding the virtual method Finalize on System.Object.
C# programs are not permitted to override this method or call it
(or overrides of it) directly.</p>
</blockquote>
<p>Since the under-the-hood implementation is, in fact, based on inheritance, as stated above, I think my question is valid and I don't think any of the responses I've received so far have addressed the question properly - What does "destructors are not inherited" actually mean?</p>
http://stackoverflow.com/questions/1868097/net-idisposable-inline-temps0.NET IDisposable inline tempspetebob7962009-12-08T16:25:33Z2009-12-08T20:29:55Z
<p>I use code rush and refactor pro (highlight possible code issues and so on like ReSharper) and they were telling me I had undisposed locals (that implemented IDisposable). So I changed the code to this with two using statements:</p>
<pre><code>using (Reports.StudentRegisters.StudentQueriesDataTable studentDataTable = new Reports.StudentRegisters.StudentQueriesDataTable())
{
using (StudentQueriesTableAdapter studentTableAdapter = new StudentQueriesTableAdapter())
{
try
{
studentTableAdapter.FillByQAbsenceRegRow(studentDataTable, year, school, division, progArea, sinceWeek, missedLessons, includeWdlTrn, ageMin, ageMax, studentGLH);
ds = new DataSet();
ds.Tables.Add((DataTable)studentDataTable);
ReportDocument.SetDataSource(ds.Tables[0]);
}
catch (Exception err)
{
LogReportError(err, this.CrystalViewer, null, ErrorType.Reporting);
}
}
}
</code></pre>
<p>Since the studentTableAdapter is used once I could in line it like below:</p>
<pre><code>using (Reports.StudentRegisters.StudentQueriesDataTable studentDataTable = new Reports.StudentRegisters.StudentQueriesDataTable())
{
try
{
(new StudentQueriesTableAdapter()).FillByQAbsenceRegRow(studentDataTable, year, school, division, progArea, sinceWeek, missedLessons, includeWdlTrn, ageMin, ageMax, studentGLH);
ds = new DataSet();
ds.Tables.Add((DataTable)studentDataTable);
ReportDocument.SetDataSource(ds.Tables[0]);
}
catch (Exception err)
{
LogReportError(err, this.CrystalViewer, null, ErrorType.Reporting);
}
}
</code></pre>
<p>Obviously in this solution I now have no way to call dispose on the StudentQueriesTableAdapter. Is this called automatically as there is no reference to the object anymore or would this potentially leave something not disposed properly.</p>
<p>I will stress i'm not interested in whether I actually need to use dispose on the two objects, I know some things implement it and it's not really required (Although should always be done). I'm specifically interested in if it is called.</p>
http://stackoverflow.com/questions/1834263/how-should-i-inherit-idisposable2How should I inherit IDisposable?Andy West2009-12-02T16:52:16Z2009-12-02T17:00:29Z
<p><em>Class names have been changed to protect the innocent</em>.</p>
<p>If I have an interface named ISomeInterface. I also have classes that inherit the interface, FirstClass and SecondClass. FirstClass uses resources that must be disposed. SecondClass does not.</p>
<p>So the question is, where should I inherit from IDisposable? Both of the following options seem less than ideal:</p>
<p>1) <strong>Make FirstClass inherit IDisposable</strong>. Then, any code that deals with ISomeInterfaces will have to know whether or not to dispose of them. This smells like tight coupling to me.</p>
<p>2) <strong>Make ISomeInterface inherit IDisposable</strong>. Then, any class that inherits from it must implement IDisposable, even if there is nothing to dispose. The Dispose method would essentially be blank except for comments.</p>
<p>#2 seems like the correct choice to me, but I'm wondering if there are alternatives.</p>
http://stackoverflow.com/questions/1832992/calling-dispose-vs-when-an-object-goes-out-scope-method-finishes1Calling Dispose() vs when an object goes out scope/method finishescsharpdev2009-12-02T13:41:14Z2009-12-02T14:09:32Z
<p>Hi,</p>
<p>I have a method, which has a try/catch/finall block inside. Within the try block, I declare SqlDataReader as follows:</p>
<pre><code> SqlDataReader aReader = null;
aReader = aCommand.ExecuteReader();
</code></pre>
<p>In the finally block, the objects which are manually disposed of are those which are set at the class level. So objects in the method which implement IDisposable, such as SqlDataReader above, do they get automatically disposed of? Close() is called on aReader after a while loop executes to get the contents of the reader (which should be Dispose() as that calls Close()). If there is no call to Close(), would this object be closed/disposed of automatically when the method finishes or the object goes out of scope?</p>
<p>EDIT: I am aware of the using() statement but there are scenarios which are confusing me. Thanks</p>
<p>Thanks</p>
http://stackoverflow.com/questions/913228/should-i-dispose-dataset-and-datatable13Should I Dispose() DataSet and DataTable?mbeckish2009-05-26T23:08:09Z2009-12-01T16:24:00Z
<p>DataSet and DataTable both implement IDisposable, so, by conventional best practices, I should call their Dispose() methods.</p>
<p>However, from what I've read so far, DataSet and DataTable don't actually have any unmanaged resources, so Dispose() doesn't actually do much.</p>
<p>Plus, I can't just use <code>using(DataSet myDataSet...)</code> because DataSet has a collection of DataTables.</p>
<p>So, to be safe, I'd need to iterate through myDataSet.Tables, dispose of each of the DataTables, then dispose of the DataSet.</p>
<p>So, is it worth the hassle to call Dispose() on all of my DataSets and DataTables?</p>
<p><strong>Addendum:</strong></p>
<p>For those of you who think that DataSet should be disposed:
In general, the pattern for disposing is to use <code>using</code> or <code>try..finally</code>, because you want to guarantee that Dispose() will be called.</p>
<p>However, this gets ugly real fast for a collection. For example, what do you do if one of the calls to Dispose() thrown an exception? Do you swallow it (which is "bad") so that you can continue on to dispose the next element?</p>
<p>Or, do you suggest that I just call myDataSet.Dispose(), and forget about disposing the DataTables in myDataSet.Tables? </p>
http://stackoverflow.com/questions/1819096/is-it-important-to-dispose-solidbrush-and-pen2Is it important to dispose SolidBrush and Pen?Joe2009-11-30T10:51:06Z2009-11-30T13:39:24Z
<p>I recently came across <a href="http://www.codeproject.com/KB/miscctrl/Vertical%5FLabel%5FControl.aspx" rel="nofollow">this VerticalLabel control on CodeProject</a>.</p>
<p>I notice that the OnPaint method creates but doesn't dispose Pen and SolidBrush objects.</p>
<p>Does this matter, and if so how can I demonstrate whatever problems it can cause?</p>
<p><strong>EDIT</strong> </p>
<p>This isn't a question about the IDisposable pattern in general. I understand that callers should normally call Dispose on any class that implements IDisposable.</p>
<p>What I want to know is what problems (if any) can be expected when GDI+ object are not disposed as in the above example. It's clear that, in the linked example, OnPaint may be called many times before the garbage collector kicks in, so there's the potential to run out of handles.</p>
<p>However I suspect that GDI+ internally reuses handles in some circumstances (for example if you use a pen of a specific color from the Pens class, it is cached and reused). </p>
<p>What I'm trying to understand is whether code like that in the linked example will be able to get away with neglecting to call Dispose. </p>
<p>And if not, to see a sample that demonstrated what problems it can cause.</p>
<p>I should add that I have very often (<a href="http://msdn.microsoft.com/en-us/library/cksxshce.aspx" rel="nofollow">including the OnPaint documentation on MSDN</a>) seen WinForms code samples that fail to dispose GDI+ objects.</p>
http://stackoverflow.com/questions/1785453/do-you-have-to-dispose-of-idisposable-objects-before-you-repopulate-them1Do you have to dispose of IDisposable objects before you repopulate them?blesh2009-11-23T19:39:17Z2009-11-23T19:47:28Z
<p>Assuming I have a method in my command architecture pattern that alters the contents of graphics path like so: (GraphicsPath is IDisposable)</p>
<p>(this is purely an untested, quick example)</p>
<pre><code>public void DoSomething(ref GraphicsPath path)
{
if(path != null)
{
List<PointF> pts = new List<PointF>();
foreach(PointF pt in path.PathPoints)
{
//again, just a silly example.
float y = pt.X;
float x = pt.Y;
pts.Add(new PointF(x, y));
}
path.Dispose(); //<-- Do I need this?
path = new GraphicsPath(pts.ToArray(), path.PathTypes);
}
}
</code></pre>
<p>Do I need to dispose the path before setting the path equal to the new path? If so, why? </p>
http://stackoverflow.com/questions/1737038/how-to-dispose-aspobjectdatasource0How to dispose <asp:ObjectDataSource>_simon_2009-11-15T09:00:42Z2009-11-15T09:22:15Z
<p>Hello,</p>
<p>how can I dispose an <code><asp:ObjectDataSource></code>? I mean, there is no code behind and in aspx file there is this:</p>
<pre><code><asp:ObjectDataSource ID="CategoryDataSource" runat="server"
SelectMethod="GetCategoriesFilter"
TypeName="BLL.CategoryBLL">
</asp:ObjectDataSource>
</code></pre>
<p>Class BLL.CategoryBll implements IDisposable. Do I have to dispose it?</p>
http://stackoverflow.com/questions/1726417/how-can-disposable-class-detect-whether-there-is-an-exception-in-progress0How can disposable class detect whether there is an exception in progress?AngryHacker2009-11-13T00:40:44Z2009-11-13T00:49:38Z
<p>I have a class that implements IDisposable</p>
<pre><code>public class Foo: IDisposable {
public void Dispose() {
// do the disposing
}
}
</code></pre>
<p>Then I have a method that uses the class in the following manner:</p>
<pre><code>void Bar() {
using (var f = new Foo()) {
// do whatever
}
}
</code></pre>
<p>When the code leaves the using {...} boundary, the Dispose method on the Foo class gets called. How can I detect in the Dispose method whether the code is leaving using block voluntarily or as a result of an exception?</p>
http://stackoverflow.com/questions/1716896/why-doesnt-thread-implement-idisposable5Why doesn't Thread implement IDisposable?Special Touch2009-11-11T17:45:55Z2009-11-11T17:51:12Z
<p>I noticed that System.Threading.Thread implements a finalizer but not IDisposable. The recommended practice is to always implement IDisposable when a finalizer is implemented. Jeffrey Richter <a href="http://www.bluebytesoftware.com/blog/CategoryView,category,DesignGuideline.aspx" rel="nofollow">wrote</a> that the guideline is "very important and should always be followed without exception".</p>
<p>So why doesn't Thread implement IDisposable? It seem like implementing IDisposable would be a non-breaking change that would allow deterministic cleanup of Thread's finalizable resources.</p>
<p>And a related question: since thread is finalizable, do I have to hold references to running Threads to prevent them from being finalized during execution?</p>
http://stackoverflow.com/questions/1697427/c-inheritance-and-idisposable-strange-issue-1C#: Inheritance and IDisposable - strange issuemark smith2009-11-08T18:24:45Z2009-11-08T19:04:57Z
<p>Hi there,</p>
<p>can anyone help, i have a small issue, i have an interface and also a base interface, when i try to do</p>
<pre><code> .Dispose()
</code></pre>
<p>It doesn't find the method as its implemented on my sub class NOT base.. and it always seems to want to call the base - even though i specifically put the namespace in front of the parameter on the constructor.</p>
<p>Here is some code to explain it better, basically there are 2 IhouseRepository (interfaces), 1 is the base interface and one is the subclass interface.</p>
<p>In the constructor i have specifically said its MarkSmith.Data (and not MarkSmith.DataBase) but it keeps pickup up the DataBase version where Dispose is not implemented.</p>
<p>My idea was to implement IDisposable in all subclasses and should be there responsibility to dispose.</p>
<p>In the constructor i have a put a single line that calls the IhouseRepository and i "CAN" access Dispose - so it does work - Why it works here on not on the param passed to the constructor is a mystery :-)</p>
<p>But the param on the constructor seems to be forcing the namespace DataBase and not Data</p>
<p>I suppose i could rename all my Interfaces on the base project to IHouseRepositoryBase but i don't understand why this is happening.</p>
<p>Any help really appreciated</p>
<pre><code>public class HouseService : ServiceBase.HouseService, IHouseService
{
public HouseService(MarkSmith.Data.IHouseRepository repository)
: base(repository)
{
MarkSmith.Data.IHouseRepository test =
new MarkSmith.Data.HouseRepository(new MyDataContext);
test.Dispose(); // THIS WORKS! NO PROBLEMS
}
// Dispose() calls Dispose(true)
public void Dispose()
{
Dispose(true);
GC.SuppressFinalize(this);
}
protected virtual void Dispose(bool disposing)
{
if (disposing)
{
// free managed resources
if (repository != null)
{
repository.Dispose(); // THIS FAILS .. IT IS CALLING NS DATABASE
}
}
</code></pre>
http://stackoverflow.com/questions/672980/dispose-on-user-controls-really-meant-to-edit-the-designer-cs-file1Dispose on user controls, really meant to edit the .designer.cs file?Lasse V. Karlsen2009-03-23T11:12:57Z2009-11-07T11:31:32Z
<p>For a user control with internal data structures that must be disposed, is the correct place to add that code to the Dispose method in the .designer.cs file, or is there an event or something we're meant to use instead?</p>
<p><strong>Edit</strong>: This is a winforms user control.</p>
http://stackoverflow.com/questions/1671919/when-doing-a-process-start-do-you-need-to-wrap-it-in-a-using4When doing a Process.Start() do you need to wrap it in a using?Simon2009-11-04T05:59:02Z2009-11-05T00:08:32Z
<p>When you are starting a process and dont care about the result is this ok?</p>
<pre><code>Process.Start(xxx);
</code></pre>
<p>Or should you do this</p>
<pre><code>using (Process.Start(xxx)){}
</code></pre>
http://stackoverflow.com/questions/1033987/can-i-dispose-of-these-unmanged-resources-without-requiring-a-reference-to-each1Can I dispose of these unmanged resources without requiring a reference to each?Maslow2009-06-23T17:27:56Z2009-11-04T19:57:45Z
<p>I have a class bMainframe that manages the connections to 4 different mainframes. It allows for the same underlying unmanaged library to be opened in specific ways and more than one mainframe to be connected to at a time. Each library has its own disposal code for the unmanaged mainframe connection resource. The wrapper also has code that calls the individual mainframe connection's disposal code.</p>
<p>This causes an error if someone's project does not make use of all 4 mainframes, but calls the disposal on the wrapper. (FileLoadException could not load assembly X of the 4 managed mainframes) Since that disposal code checks to see which of the 4 are not nothing/null. Even if nothing/null this is causing .net to try to load the assembly and crash.</p>
<p>Is the disposal code in the outer wrapper helpful or necessary? is there a way to check if the assembly for a type is even loaded that doesn't trigger.net to load the type/assembly?</p>
<p>I modified the code below to block the fileloadexception, but I don't believe this is the best way.</p>
<pre><code>Protected Overridable Sub Dispose(ByVal disposing As Boolean)
If Not Me.disposedValue Then
If disposing Then
' TODO: free managed resources when explicitly called
End If
Try
If Me._Linx IsNot Nothing Then
If _Linx.cnLinx IsNot Nothing Then
Try
_Linx.Disconnect()
Catch ex As Exception
Trace.WriteLine("Error doing linx.disconnectSession")
End Try
Try
_Linx.Dispose()
Catch ex As Exception
Trace.WriteLine("Error doing linx.dispose")
End Try
End If
End If
Catch ex As IO.FileLoadException
Debug.WriteLine("Failed to load LinxFile")
End Try
Try
If Me._Acaps IsNot Nothing Then
_Acaps.Disconnect()
_Acaps.Dispose()
End If
Catch ex As IO.FileLoadException
Debug.WriteLine("Failed to load AcapsFile")
End Try
Try
If Me._Dart IsNot Nothing Then
Try
_Dart.Dispose()
Catch ex As Exception
Trace.WriteLine("Error disposing of Dart")
End Try
End If
Catch ex As IO.FileLoadException
Debug.WriteLine("Failed to load DartFile")
End Try
Try
If LpsOpen Then
Try
_Lps.Dispose()
Catch ex As Exception
Trace.WriteLine("Error disposing of Lps")
End Try
End If
Catch ex As IO.FileLoadException
Debug.WriteLine("Failed to load LpsFile")
End Try
' TODO: free shared unmanaged resources
End If
Me.disposedValue = True
End Sub
</code></pre>
http://stackoverflow.com/questions/1030455/how-to-handle-exception-thrown-from-dispose1How to handle exception thrown from Dispose?Morgan Cheng2009-06-23T03:04:17Z2009-10-24T06:46:22Z
<p>Recently, I was researching some tricky bugs about object not disposed.</p>
<p>I found some pattern in code. It is reported that some m_foo is not disposed, while it seems all instances of SomeClass has been disposed.</p>
<pre><code>public class SomeClass: IDisposable
{
void Dispose()
{
if (m_foo != null)
{
m_foo.Dispose();
}
if (m_bar != null)
{
m_bar.Dispose();
}
}
private Foo m_foo;
private Bar m_bar;
}
</code></pre>
<p>I suspects that Foo.Dispose might throw a exception, so that following code is not executed so m_bar is not disposed. </p>
<p>Since Foo/Bar might be from third party, so it is not guaranteed to not throwing exception. </p>
<p>If just wrap all Dispose invocation with try-catch, the code will turn to be clumsy.</p>
<p>What's best practice to handle this?</p>
http://stackoverflow.com/questions/1606857/c-interop-marshalling-and-disposing3c# interop marshalling and disposingentro2009-10-22T12:26:00Z2009-10-22T12:42:27Z
<p>I have a DLL, which is designed in C++, included in a C# project and I have strange AccessViolationExceptions happening unrationally. I suspect that my garbage isn't collected correctly. I have an unmanaged method apiGetSettings (from the DLL) which should copy data to a Settings object (actually a struct in the original code, but .NET InterOp only allowed importing the data as class objects. I use the System.Runtime.InteropServices.Marshal methods to allocate and deallocate memory, but it might leave garbage behind that crashes everything.</p>
<p>Now, should I implement IDisposable methods in the Settings class (is it unmanaged?). If so, how do I dispose of the strings marshalled as UnmanagedType.ByValTStr and how do I dispose of the Settings objects?</p>
<pre><code>using System.Runtime.InteropServices;
[StructLayout(LayoutKind.Sequential, CharSet = CharSet.Ansi)]
class Settings
{
[MarshalAs(UnmanagedType.ByValTStr, SizeConst = 33)]
internal string d;
[MarshalAs(UnmanagedType.ByValTStr, SizeConst = 6)]
internal string t;
internal int b;
}
[DllImport(".\\foobar.dll", EntryPoint = "getSettings")]
private static extern int apiGetSettings(IntPtr pointerToSettings);
void GetSettings(ref Settings settings)
{
int debug = 0;
// Initialize a pointer for the structure and allocate memory
IntPtr pointerToSettings = Marshal.AllocHGlobal(43);
// Connect the pointer to the structure
Marshal.StructureToPtr(settings, pointerToSettings, true);
// Point the pointer
debug = apiGetSettings(pointerToSettings);
// Copy the pointed data to the structure
Marshal.PtrToStructure(pointerToSettings, settings);
// Free the allocated memory
Marshal.FreeHGlobal(pointerToSettings);
}
</code></pre>
http://stackoverflow.com/questions/1598192/testing-finalizers-and-idisposable1Testing Finalizers and IDisposableDmitriy Nagirnyak2009-10-21T00:57:06Z2009-10-21T01:48:17Z
<p>Hi,</p>
<p>The question is how can I test the fact that object disposes resources when finalise is called.
The code for the class:</p>
<pre><code>public class TestClass : IDisposable {
public bool HasBeenDisposed {get; private set; }
public void Dispose() {
HasBeenDisposed = true;
}
~TestClass() {
Dispose();
}
}
</code></pre>
<p><strong>Please note</strong> that I don't care about the correct implementation of Dispose/Finalize just now as I want to find the way to test it first. At this stage it is enough to assume the <strong><em>HasBeenDisposed</em></strong> will be set to true if Dispose/Finalize ware called. </p>
<p>The actual test I wrote looks like:<br />
<strong>UPDATED WITH WEAKREFERENCE</strong>:</p>
<pre><code>[Test]
public void IsCleanedUpOnGarbadgeCollection() {
var o = new TestClass();
o.HasBeenDisposed.Should().Be.False();
**var weak = new WeakReference(o, true); // true =Track after finalisation
o = null; // Make eligible for GC**
GC.Collect(0, GCCollectionMode.Forced);
GC.WaitForPendingFinalizers();
**((TestClass)weak.Target)**.HasBeenDisposed.Should().Be.True();
}
</code></pre>
<p>or the code I like better (<strong>ADDED AFTER UPDATE</strong>):</p>
<pre><code>[Test]
public void IsCleanedUpOnGarbadgeCollection() {
WeakReference weak = null;
// Use action to isolate instance and make them eligible for GC
// Use WeakReference to track the object after finalisaiton
Action act = () = {
var o = new TestClass();
o.HasBeenDisposed.Should().Be.False();
weak = new WeakReference(o, true); // True=Track reference AFTER Finalize
};
act();
GC.Collect(0, GCCollectionMode.Forced);
GC.WaitForPendingFinalizers();
// No access to o variable here which forces us to use WeakReference only to avoid error
((TestClass)weak.Target).HasBeenDisposed.Should().Be.True();
}
</code></pre>
<p>This test fails (<strong>PASSES AFTER UPDATE</strong>) but I observe following (<strong>UPDATED</strong>):</p>
<ol>
<li>GC.WaitForPendingFinalizers() does suspend the thread and finalises instance in <strong><em>o</em></strong>, but only if is not rooted. Assigned NULL to it and used WeakReference to get it AFTER finalisation.</li>
<li>Finilize (destructor) code is executed at correct point when the <strong><em>o</em></strong> does not hold the instance.</li>
</ol>
<p>So what is the correct way of testing this. What do I miss? </p>
<p>I suppose it is the variable <strong><em>o</em></strong> that prevents GC from collection it.<br />
<strong>UPDATE</strong>: Yes it is the issue. Had to use WeakReference instead.</p>
http://stackoverflow.com/questions/1592728/storing-memorystream-in-cache0Storing MemoryStream in CacheHeavyWave2009-10-20T06:01:42Z2009-10-20T06:12:27Z
<p>I've come across this code in one of my projects, which has a static function to return a MemoryStream from a file, which is then stored in Cache. Now the same class has a constructor which allows to store a MemoryStream in a private variable and later use it. So it looks like this:</p>
<pre><code>private MemoryStream memoryStream;
public CountryLookup(MemoryStream ms)
{
memoryStream = ms;
}
public static MemoryStream FileToMemory(string filePath)
{
MemoryStream memoryStream = new MemoryStream();
ReadFileToMemoryStream(filePath, memoryStream);
return memoryStream;
}
</code></pre>
<p>Usage:</p>
<pre><code>Context.Cache.Insert("test",
CountryLookup.FileToMemory(
ConfigurationSettings.AppSettings["test"]),
new CacheDependency(someFileName)
);
</code></pre>
<p>And then:</p>
<pre><code>CountryLookup cl = new CountryLookup(
((MemoryStream)Context.Cache.Get("test"))
);
</code></pre>
<p>So I was wondering who should dispose the memoryStream and when? Ideally CountryLookup should implement IDisposable.</p>
<p>Should I even care about it?</p>
http://stackoverflow.com/questions/1591455/am-i-responsible-for-disposing-a-backgroundimage0Am I responsible for Disposing a BackgroundImage?Keith Moore2009-10-19T22:21:02Z2009-10-19T22:31:16Z
<p>Hi, I have a windows form where I set the BackgroundImage property to a custom bitmap image.</p>
<pre>
private Image MakeCustomBackground()
{
Bitmap result = new Bitmap(100, 100);
using(Graphics canvas = Graphics.FromImage(result))
{
// draw the custom image
}
return result;
}
private void UpdateFromBackground()
{
this.BackgroundImage = MakeCustomBackground();
}
</pre>
<p>My question is, Image is disposable and I am creating it, does that mean that I must dispose of it? Or when I pass the image to the form, via BackgroundImage, does it take ownership and dispose of it when it no longer needs it?</p>
http://stackoverflow.com/questions/1566252/why-doesnt-the-debugger-hit-this-breakpoint-consistently-am-i-neglecting-a-file1Why doesn't the debugger hit this breakpoint consistently? Am I neglecting a file handle?Jim G.2009-10-14T13:31:57Z2009-10-14T15:08:58Z
<p>Consider the following code:</p>
<pre><code>static void Main(string[] args)
{
using (MemoryStream memoryStream = new MemoryStream(Resources.SampleXMLFile)) // Breakpoint set here
{
using (XmlTextReader xmlTextReader = new XmlTextReader(memoryStream))
{
var z = XElement.Load(xmlTextReader);
}
}
Console.ReadLine();
}
</code></pre>
<p>I have a breakpoint set on the first using statement. Yet, the debugger does not hit it consistently.</p>
<p>My question:</p>
<blockquote>
<p>Why does this happen? Am I neglecting a file handle?</p>
</blockquote>
<p>Also:</p>
<blockquote>
<p>Is this the best way to open an embedded resource XML file?</p>
</blockquote>
http://stackoverflow.com/questions/1552571/why-isnt-sqlconnection-disposed-closed3Why isn't SqlConnection disposed/closed?choudeshell2009-10-12T03:34:37Z2009-10-12T22:08:57Z
<p>Given the method:</p>
<pre><code>internal static DataSet SelectDataSet(String commandText, DataBaseEnum dataBase)
{
var dataset = new DataSet();
SqlConnection sqlc = dataBase == DataBaseEnum.ZipCodeDb
? new SqlConnection(ConfigurationManager.AppSettings["ZipcodeDB"])
: new SqlConnection(ConfigurationManager.AppSettings["WeatherDB"]);
SqlCommand sqlcmd = sqlc.CreateCommand();
sqlcmd.CommandText = commandText;
var adapter = new SqlDataAdapter(sqlcmd.CommandText, sqlc);
adapter.Fill(dataset);
return dataset;
}
</code></pre>
<p>Why is sqlc (the SqlConnection) not disposed/close after the calling method goes out of scope or sqlc has no more references?</p>
<p><strong>EDIT 1:</strong>
Even wrapping it in using, I can still seeing the connection using (I have connection pooling turned off): </p>
<pre><code>SELECT DB_NAME(dbid) as 'Database Name',
COUNT(dbid) as 'Total Connections'
FROM sys.sysprocesses WITH (nolock)
WHERE dbid > 0
GROUP BY dbid
</code></pre>
<p><strong>EDIT 2:</strong>
Have some more debugging with help I got from here - the answer was the someone hard coded a connection string with pooling. Thanks for all the help - if I could, I would mark all the responses as answers.</p>
http://stackoverflow.com/questions/1443515/unity-to-dispose-of-object0Unity to dispose of objectJohan Levin2009-09-18T09:41:08Z2009-10-11T20:00:03Z
<p>Is there a way to make Unit dispose property-injected objects as part of the Teardown?</p>
<p>The background is that I am working on an application that uses ASP.NET MVC 2, Unity and WCF. We have written our own MVC controller factory that uses unity to instantiate the controller and WCF proxies are injected using the [Dependency] attribute on public properties of the controller. At the end of the page life cycle the ReleaseController method of the controller factory is called and we call IUnityContainer.Teardown(theMvcController). At that point the controller is disposed as expected but I also need to dispose the injected wcf-proxies. (Actually I need to call Close and/or Abort on them and not Dispose but that is a later problem.)</p>
<p>I could of course override the controllers' Dispose methods and clean up the proxies there, but I don't want the controllers to have to know about the lifecycles of the injected interfaces or even that they refer to WCF proxies.</p>
<p>If I need to write code myself for this - what would be the best extension point? I'd appreciate any pointer.</p>
http://stackoverflow.com/questions/1539503/how-to-handle-disposable-objects-we-dont-have-a-reference-to6How to handle disposable objects we don't have a reference to?Joan Venge2009-10-08T18:01:28Z2009-10-08T18:59:18Z
<p>If you have a brush and pen as in:</p>
<pre><code>Brush b = new SolidBrush(color);
Pen p = new Pen(b);
</code></pre>
<p>and dispose them like so:</p>
<pre><code>b.Dispose();
p.Dispose();
</code></pre>
<p>How would you dispose it if it was:</p>
<p><code>Pen p = CreatePenFromColor(color)</code> which would create the brush and pen for you? I can't dispose the brush inside this method, right?</p>
<p>Is this a method not to be used with disposable objects?</p>
<p>EDIT: What I mean is, how do you dispose the BRUSH?</p>
http://stackoverflow.com/questions/1539114/yield-return-statement-inside-a-using-block-disposes-before-executing5yield return statement inside a using() { } block Disposes before executingNeil2009-10-08T16:53:50Z2009-10-08T17:14:33Z
<p>I've written my own custom data layer to persist to a specific file and I've abstracted it with a custom DataContext pattern.</p>
<p>This is all based on the .NET 2.0 Framework (given constraints for the target server), so even though some of it might look like LINQ-to-SQL, its not! I've just implemented a similar data pattern.</p>
<p>See example below for example of a situation that I cannot yet explain.</p>
<p>To get all instances of Animal - I do this and it works fine</p>
<pre><code>public static IEnumerable<Animal> GetAllAnimals() {
AnimalDataContext dataContext = new AnimalDataContext();
return dataContext.GetAllAnimals();
}
</code></pre>
<p>And the implementation of the GetAllAnimals() method in the AnimalDataContext() below</p>
<pre><code>public IEnumerable<Animal> GetAllAnimals() {
foreach (var animalName in AnimalXmlReader.GetNames())
{
yield return GetAnimal(animalName);
}
}
</code></pre>
<p>The AnimalDataContext() implements IDisposable because I've got an XmlTextReader in there and I want to make sure it gets cleaned up quickly. </p>
<p>Now if I wrap the first call inside a using statement like so</p>
<pre><code>public static IEnumerable<Animal> GetAllAnimals() {
using(AnimalDataContext dataContext = new AnimalDataContext()) {
return dataContext.GetAllAnimals();
}
}
</code></pre>
<p>and put a break-point at the first line of the AnimalDataContext.GetAllAnimals() method and another break-point at the first line in the AnimalDataContext.Dispose() method, and execute...</p>
<p><strong>the Dispose() method is called FIRST so that AnimalXmlReader.GetNames() gives "object reference not set to instance of object" exception because AnimalXmlReader has been set to null in the Dispose() ???</strong></p>
<p>Any ideas? I have a hunch that its related to <strong>yield return</strong> not being allowed to be called inside a try-catch block, which <strong>using</strong> effectively represents, once compiled... </p>
http://stackoverflow.com/questions/1147993/is-the-httpcontext-current-disposed-even-if-an-exception-is-thrown0Is the HttpContext.Current disposed even if an exception is thrown?mkelley332009-07-18T16:47:34Z2009-10-04T03:36:09Z
<p>The reason I ask is because the HttpContext.Current.Items collection seems like it would be a good place to put IDisposable objects such as a DataContext so that a Repository might access it transparently without having to to inject any dependencies related to a specific ORM technology into the Repository. This would also allow the repository to decide whether to engage in a UnitOfWork or take on the additional responsibility of actually persisting any changes.</p>
<p>For example:</p>
<p>The Page:</p>
<pre><code>protected void Page_Load(...)
{
Items[KeyValueFromConfigurationFile] = new DataContext();
var repo = new Repository();
var rootEntity = repo.GetById(1);
}
</code></pre>
<p>The Repository:</p>
<pre><code>public virtual TEntity GetById(int id)
{
var ctx = HttpContext.Current.Items[KeyValueFromConfigurationFile] as DataContext;
return ctx.TEntities.SingleOrDefault(p => p.Id == id);
}
</code></pre>
<p>Of course, I would check for nulls and perform the steps needed to get a DataContext if it wasn't available in the HttpContext.Current.Items collection.</p>
<p>So, back to my original question given the above code: Will the HttpContext.Current be disposed along with any of the objects contained in its Items collection even if an exception is thrown?</p>
<p>Thanks for all the help.</p>
http://stackoverflow.com/questions/1477563/is-mutex-correctly-implemented-and-how-do-i-dispose-it1Is mutex correctly implemented and how do I dispose it?Robert MacLean2009-09-25T14:18:24Z2009-09-25T14:32:18Z
<p>I am reviewing some code and one of the code analysis (fxCop) warnings has gotten me very confused. The code implements a few <a href="http://msdn.microsoft.com/en-us/library/system.threading.mutex.aspx" rel="nofollow">mutex</a>'s by creating variables at the start of the class, similar to this:</p>
<pre><code>private Mutex myMutex = new Mutex();
</code></pre>
<p>fxCop is popping up with a message saying that I must implement IDisposable for the class as the Mutex class implements it - this is warning <a href="http://msdn.microsoft.com/en-us/library/ms182172.aspx" rel="nofollow">CA1001</a>. However looking at Mutex it has no dispose method.</p>
<p>Turns out that Mutex uses a <a href="http://msdn.microsoft.com/en-us/library/microsoft.win32.safehandles.safewaithandle.aspx" rel="nofollow">SafeWaitHandle</a> (which implements IDisposable - guessing this is what fxCop is picking up), but mutex doesn't actually dispose it via the standard disposable pattern. It has a private method which is assigned to a delegate using the <a href="http://msdn.microsoft.com/en-us/library/system.runtime.compilerservices.runtimehelpers.cleanupcode.aspx" rel="nofollow">RuntimeHelpers.CleanupCode</a>, which as I understand it means it will be run on an exception. </p>
<p>This brings up two questions:</p>
<ol>
<li>Is Mutex implemented correctly? If there is no exception in the Mutex then the SafeWaitHandle will never be disposed. </li>
<li>What should I call in my dispose to cleanup the mutex?</li>
</ol>