I've read this article trying to find : "Which exceptions terminates the entire process" ( iis , so basically the application pool terminates - w3wp.exe
)
I already know (from my experience) that :
- StackOverflow exceptions does terminates
- Outofmemory exceptions also terminates
I already read Hans' answer here which redirects to SSCLI20
source code where he gave an example of the code :
TerminateProcess(GetCurrentProcess(), COR_E_STACKOVERFLOW);
So I downloaded the SSCLI20
and searched for more of TerminateProcess(GetCurrentProcess()...
And found those entries :
But I'm not sure that this is the whole list , and even if so - it is notvery clear.
Question
Where can I find the complete list of exceptions which terminates the process ?