我有一个调用 asmx Web 服务的 WCF 服务。该 Web 服务会引发如下所示的异常:
<soap:Body>
<soap:Fault>
<faultcode>soap:Server</faultcode>
<faultstring>System.Web.Services.Protocols.SoapException: error
service.method()</faultstring>
<faultactor>https://WEBADDRESS</faultactor>
<detail>
<message>Invalid ID</message>
<code>00</code>
</detail>
</soap:Fault>
</soap:Body>
在 c# 中,我可以将其作为 FaultException 捕获,但它没有 details 属性。如何获得此异常的详细信息?