Suppose I have a bit of a particular exception message generated by the framework while running in standard English-US culture, e.g. "This failure occured while attempting to connect to the Principle server." How can I figure out which code in the framework generates an exception containing this text in the message?
The stack trace does not always help, because the framework code often uses several levels of helper methods to generate the exception before finally throwing it.
I would imagine that the string is localized, which is why I can't find it within any constants in ILSpy. I suppose the string would be stored with a unique resource ID or something to that effect, and then referenced by that ID, but I'm not sure where to start in finding the ID...