I have

void foo1()
{
   using(...){...}
}

void foo2()
{
   using(...){...}
}

void foo3()
{
   using(...){...}
}

and I have

void foo()
{
    ...
    backgroundWorker.DoWork += (s, ev) =>
                                           {
                                               try
                                               {
                                                   foo1();
                                                   foo2();
                                                   foo3();
                                               }
                                               catch (Exception ex)
                                               {
                                                   // log ex
                                               }
                                           };
      ...    
}

and I just read that using blocks swallow exceptions. It there an elegant way to handle exceptions from foo1(), foo2() and foo3() in foo(). I don't want to have a try/catch inside of each using block in the methods. I did stumble into this post where an extension method is suggested but I'm just checking to see if there is anything better.

FYI, Network disconnection causes the logic inside the using block to throw an exception and that's what I'm trying to handle in one common place.

Thanks,

link|improve this question
6  
What on earth are you talking about? Using does not block exceptions. It interacts with exceptions in the sense that using places an implicit try..finally around the statement block, but using does not kill exceptions raised within the statement block. – dthorpe Jun 23 '11 at 17:16
2  
I think your problem is that it's your background worker thread throwing the exception and you don't have anything checking in on that to bubble it up to your main thread. Your using block shouldn't have anything to do with it. However, I'm making some assumptions here as well. A using block is just syntactic sugar for creating an IDisposable variable, running code, then calling Dispose() on that object at the end if I recall correctly. – Jaxidian Jun 23 '11 at 17:16
@SethO the msdn page states that the compiler translates using to a try-finally block where the finally block calls Dispose() but there is no catch block so any exceptions that may be thrown are lost. – TheOtherGuy Jun 23 '11 at 17:17
3  
@TheOtherGuy try/finally without a catch still throws the exception, it just executes finally before throwing it. – Jaxidian Jun 23 '11 at 17:18
1  
@Jaxidian but the exception does not bubble up to my catch block (even if it's not in backgroundworker's thread). see the linked post that has an example to prove it digitallycreated.net/Blog/51/… – TheOtherGuy Jun 23 '11 at 17:20
show 5 more comments
feedback

2 Answers

up vote 2 down vote accepted

I think I understand the confusion. Here's some pseudo-code (it may actually execute?) explaining your scenario more simply:

public class Foo
{
    public void DoStuff()
    {
        using (var x = new Thing())
        {
            throw new ApplicationException("This code breaks");
        }
    }

    private class Thing : IDisposable
    {
        public override Dispose()
        {
            throw new ApplicationException("Help, I can't dispose!");
        }
    }
}

This code can be thought of as the same as this code:

public class Foo
{
    public void DoStuff()
    {
        var x = new Thing();
        try
        {
            throw new ApplicationException("This code breaks");
            x.Dispose();
        }
        catch (Exception err)
        {
            x.Dispose();
            rethrow;
        }
    }

    private class Thing : IDisposable
    {
        public override Dispose()
        {
            throw new ApplicationException("Help, I can't dispose!");
        }
    }
}

By using a using block, you are essentially saying, "No matter what you do, execute Dispose() on this object before moving on." However, the using block doesn't gracefully handle the case when Dispose() fails. Because of this, it never gets around to throwing the inside exception because there was another exception that pre-empted it, even if it occurred afterwards.

Does this make sense? Did I even answer your question? I'm not sure if you're looking for help understanding this or what.

link|improve this answer
Does a using block even have a catch? I thought it was just a try/finally. – 0A0D Jun 23 '11 at 17:37
Actually I understand what's going on. In my case I'm using SqlDataReader's Dispose() so there is no rethrow or any exception thrown. I'm trying to see if there is a way to detect the failure in the caller. – TheOtherGuy Jun 23 '11 at 17:39
@0A0D: No but I was being a bit verbose to emphasize how to expect it to act. When that finally block executes code that in turn throws an exception, well, you don't get all of that finally block's code to execute because an exception is thrown midway through it. This post was not meant to show what code it generates but rather to show how it acts and to emphasize that point. – Jaxidian Jun 23 '11 at 17:40
@TheOtherGuy: Then I would say the "best" way (easiest to read/maintain code without over-architecting a solution, although this is very much a judgement call and I'm far to ignorant to make that judgement for you) is that you should not use using blocks but rather roll your own try/catch/finally blocks so you can more more explicit in how you want it to react (perhaps with try/catch blocks inside your own finally block. – Jaxidian Jun 23 '11 at 17:43
@TheOtherGuy: You can also stack using statements, which may work in your case. – 0A0D Jun 23 '11 at 17:46
show 2 more comments
feedback

My fear is that Microsoft went down the same rabbit hole here as they did with WCF.

See Avoiding Problems with the Using Statement.

Maybe they should follow their own guidelines.

In almost every (other) case a using block is a best practice.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown