If you are using components in your application, how can you
handle exceptions raised in a component ?
Answer Posted / parag
A method call in a COM server that has generated an
exception creates an instance of the COM error object using
the ICreateErrorInfo interface. The server then populates
the error object with information about the source and cause
of an error. When program control returns to the COM client,
the client can retrieve the error object, find the
information, and use this information determine how to
handle the error.
Unlike exceptions thrown within a program, COM exceptions do
not stop the flow of execution; instead, a COM error object
is created within the current thread. The error object
supports the IErrorInfo interface, which has methods
allowing the client to get the name of the class and
interface that created the error and a description of the error.
COM defines another interface, ISupportErrorInfo, which is
used to indicate that a class may create a COM error object.
Many ArcObjects classes implement the ISupportErrorInfo
interface.
| Is This Answer Correct ? | 12 Yes | 0 No |
Post New Answer View All Answers
What are the Core features of ASP.NET MVC?
how can you enhance the performance of entity framework?
Explain the new features added in version 4 of mvc (mvc4)?
What is a model in android?
What is .net framework & its benefits?
Can I add asp.net mvc testcases in visual studio express?
What is the advantage of mvc?
explain lazy loading, eager loading, and explicit loading?
What is the use of action filters in an mvc application?
What are Validation Annotations?
Do you know about the new features in ASP.Net MVC 4 ?
What are the main features of asp.net mvc 4 used by asp.net web api?
Explain the methods used to render the views in ASP.Net MVC?
What is viewstart page in mvc?
What are the difference between asynchronous controller implementation between asp.net mvc 3 & asp.net mvc 4?