Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is there a method, or some other light-weight way, to check if a reference is to a disposed object?

P.S. - This is just a curiousity (sleep well, not in production code). Yes, I know I can catch the ObjectDisposedException upon trying to access a member of the object.

share|improve this question
2  
Dunno. It seems curious that there isn't an bool IsDisposed { get; } declaration on System.IDisposable. – nicodemus13 Aug 9 '12 at 12:30

5 Answers

up vote -2 down vote accepted

It depends, there are IDisposable objects that allow to call the Dispose method as much as you want, and there are IDisposable objects that throw ObjectDisposedException. In such a case these objects must track the state (usually implemented with a private boolean field isDisposed).

share|improve this answer
6  
No this is wrong: the MSDN documentation for IDisposable.Dispose states that implementations must not throw an exception if Dispose is called multiple times. ObjectDisposedException can be thrown when other instance methods are called after Dispose. – Joe Oct 10 '08 at 17:22
2  
Allow a Dispose method to be called more than once without throwing an exception. The method should do nothing after the first call: msdn.microsoft.com/en-us/library/b1yfkh5e.aspx – Dandikas Oct 10 '08 at 18:44
3  
Dispose (and also finalizers) should be callable multiple times without throwing an exception. The ObjectDisposedExcpetions should only occur when you try to use that object (access other properties or methods) after it has been disposed. – Scott Dorman Oct 17 '08 at 8:43
1  
The question is not about disposing an object multiple times. The question is about accessing any other field/property/method of a disposed object (which MAY raise an ObjectDisposedException according to how the pattern has been implemented). – Stefano Ricciardi Jul 27 '11 at 16:04
3  
The question is not about how to imlement the IDisposable properly. The question is how to deal with already implemented classes. – Michael Damatov Nov 7 '11 at 13:33
show 1 more comment

System.Windows.Forms.Control has an IsDisposed property which is set to true after Dispose() is called. In your own IDisposable objects, you can easily create a similar property.

share|improve this answer

No - default implementation of IDisposable pattern does not support it

share|improve this answer

If it is not your class and it doesn't provide an IsDisposed property (or something similar - the name is just a convention), then you have no way of knowing.

But if it is your class and you are following the canonical IDisposable implementation, then just expose the _disposed or _isDisposed field as a property and check that.

share|improve this answer

There is nothing built in that will allow this. You would need to expose an IsDisposed boolean property that reflects an internal disposed flag.

public class SimpleCleanup : IDisposable
{
    private bool disposed = false;

    public bool IsDisposed
    {
       get
       {
          return disposed;
       }
    }

    public SimpleCleanup()
    {
        this.handle = /*...*/;
    }

    protected virtual void Dispose(bool disposing)
    {
        if (!disposed)
        {
            if (disposing)
            {
               // free only managed resources here
            }

            // free unmanaged resources here
            disposed = true;
        }
    }

    public void Dispose()
    {
        Dispose(true);
    }
}
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.