Hi All,
I am working on a sub project(.NET) which deals with exceptions. Below is my requirement
When an exception occurs, the exception assembly must capture
- CPU information
- Method which caused the issue
- Data which caused the issue
- Environment details (path and other information)
In above all these, the toughest part would be getting the data which caused the issue.
The data could be stored anywhere within the method body. it could be method parameters, local variables, objects etc. I believe there is no interface available in .Net which can expose the data in the memory at the time of exception. so I was thinking of taking mini dumps during the exception. Is it possible in .Net to create mini dumps.
my software env is. .Net 3.5, WCF, Silverlight
do pass me some links.
thanks