How do I catch FaultException for any Exception derived TDetail?
I tried catch( FaultException<Exception> ) {} but that does not seem to work.
Edit
The purpose is to gain access to the Detail property.
|
How do I catch FaultException for any Exception derived TDetail? Edit
| ||||
|
feedback
|
|
=== Edit === If you need
I advise you do it like that. Otherwise, you're going to dip into reflection.
Reflection is slow, but since exceptions are supposed to be rare... again, I advise breaking them out as you are able to. | |||||||||
feedback
|