How many types of exception handlers are there in .NET?
Answers were Sorted based on User's Feedback
Answer / mayur rathod
The exception information table represents four types of
exception handlers for protected blocks:
A finally handler that executes whenever the block exits,
whether that occurs by normal control flow or by an
unhandled exception.
A fault handler that must execute if an exception occurs,
but does not execute on completion of normal control flow.
A type-filtered handler that handles any exception of a
specified class or any of its derived classes.
A user-filtered handler that runs user-specified code to
determine whether the exception should be handled by the
associated handler or should be passed to the next protected
block.
| Is This Answer Correct ? | 1 Yes | 2 No |
What are the properties of ADO.NET?
Explain about .net?
Explain what do the terms “boxing” and “unboxing” mean?
What is common type system (cts)?
How to view a .NET assembly?
Can we Classic ASP,.Net 1.0, .Net 1.x and .Net 2.0 installed on the same system?
Define code access security (cas)?
What is Method Overriding? How to override a function in C#?
Can we share session between ASP.Net & ASP
3 Answers Accenture, Value Labs,
What is Full trust permission set in .Net
What are the similarities and difference between class and structure in .net?
What is close method? How its different from finalize and dispose?