Avoiding first chance exception messages when the exception is safely handled - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T15:06:52Z http://stackoverflow.com/feeds/question/58380 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/58380/avoiding-first-chance-exception-messages-when-the-exception-is-safely-handled 6 Avoiding first chance exception messages when the exception is safely handled CVertex 2008-09-12T05:48:36Z 2009-08-07T21:23:20Z <p>The following bit of code catches the EOS Exception</p> <pre><code>using (var reader = new BinaryReader(httpRequestBodyStream)) { try { while (true) { bodyByteList.Add(reader.ReadByte()); } } catch (EndOfStreamException) { } } </code></pre> <p>So why do I still receive first-chance exceptions in my console? </p> <blockquote> <p>A first chance exception of type 'System.IO.EndOfStreamException' occurred in mscorlib.dll</p> </blockquote> <p>Is there a way to hide these first chance exception messages?</p> http://stackoverflow.com/questions/58380/avoiding-first-chance-exception-messages-when-the-exception-is-safely-handled/58381#58381 -1 Answer by DevelopingChris for Avoiding first chance exception messages when the exception is safely handled DevelopingChris 2008-09-12T05:50:17Z 2008-09-12T05:50:17Z <p>I think the stream is throwing this exception, so your try is scoped to narrow to catch it.</p> <p>Add a few more try catch combos around the different scopes until you catch it where its actually being thrown, but it appears to be happening either at our outside of your using, since the stream object is not created in the using's scope.</p> http://stackoverflow.com/questions/58380/avoiding-first-chance-exception-messages-when-the-exception-is-safely-handled/58387#58387 10 Answer by Brad Wilson for Avoiding first chance exception messages when the exception is safely handled Brad Wilson 2008-09-12T05:56:34Z 2008-09-12T05:56:34Z <p>The point of "first-chance" exceptions is that you're seeing them pre-handler so that you can stop on them during debugging at the point of throwing. A "second-chance" exception is one that has no appropriate handler. Sometimes you want to catch "first-chance" exceptions because it's important to see what's happening when it's being thrown, even if someone is catching it.</p> <p>There's nothing to be concerned with. This is normal behavior.</p> http://stackoverflow.com/questions/58380/avoiding-first-chance-exception-messages-when-the-exception-is-safely-handled/58392#58392 6 Answer by AlexDuggleby for Avoiding first chance exception messages when the exception is safely handled AlexDuggleby 2008-09-12T06:06:14Z 2008-09-12T06:06:14Z <p>1) In Visual Studio you can change the settings for the way the Debugger handles (breaks on) exceptions.</p> <p>Go to Debug > Exceptions. (Note this may not be in your menu depending on your Visual Studio Environment setting. If not just add it to your menu using the Customize menu.)</p> <p>There you are presented with a dialog of exceptions and when to break on them.</p> <p>In the line "Common Language Runtime Exceptions" you can deselect thrown (which should then stop bothering you about first-chance exceptions) and you can also deselect User-unhandeled (which I would not recommend) if want to.</p> <p>2) The message you are getting should not be in the console, but should be appearing in the 'Output' window of Visual Studio. If the latter is the case, then I have not found a possibility to remove that, but it doesn't appear if you run the app without Visual Studio.</p> <p>Hope that helps.</p> http://stackoverflow.com/questions/58380/avoiding-first-chance-exception-messages-when-the-exception-is-safely-handled/58409#58409 3 Answer by loudej for Avoiding first chance exception messages when the exception is safely handled loudej 2008-09-12T06:32:37Z 2008-09-12T06:32:37Z <p>Unlike Java, Dotnet exceptions are fairly expensive in terms of processing power and handled exceptions should be avoided in the normal and successful execution path. Not only will you avoid clutter in the console window but your performance will improve and it will make performance counters like .NET CLR Exceptions more meaningful.</p> <p>In this example you would use</p> <pre><code>while (reader.PeekChar() != -1) { bodyByteList.Add(reader.ReadByte()); } </code></pre> http://stackoverflow.com/questions/58380/avoiding-first-chance-exception-messages-when-the-exception-is-safely-handled/60765#60765 4 Answer by André Neves for Avoiding first chance exception messages when the exception is safely handled André Neves 2008-09-13T18:48:25Z 2008-09-13T18:48:25Z <p>To avoid seeing the messages, right-click on the output window and uncheck "Show exceptions" (the name may not be exactly that, I don't have VS here right now).</p> <p>However, seeing them happen might be nice, if you're interested in knowing when exceptions are thrown without setting breakpoints and reconfiguring the debugger.</p> http://stackoverflow.com/questions/58380/avoiding-first-chance-exception-messages-when-the-exception-is-safely-handled/229120#229120 0 Answer by Peter for Avoiding first chance exception messages when the exception is safely handled Peter 2008-10-23T09:38:45Z 2008-10-23T09:38:45Z <p>ChanChan ever heard of the stacktrace in a exception? :P that will be atleast 100% faster to use if you want to know where its thrown but i dont think thats the problem here....</p> http://stackoverflow.com/questions/58380/avoiding-first-chance-exception-messages-when-the-exception-is-safely-handled/1247084#1247084 -1 Answer by Hal for Avoiding first chance exception messages when the exception is safely handled Hal 2009-08-07T21:23:20Z 2009-08-07T21:23:20Z <p>in VB.Net...</p> <pre><code>&lt;DebuggerHidden()&gt; _ Public Function Write(ByVal Text As String) As Boolean ... </code></pre>