ExceptionMapper.FromException Method   
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Translates the input exception to a fault.
Overloads
| FromException(Exception) | Translates the input exception to a fault. | 
| FromException(Exception, String, String) | Translates the input exception to a fault. | 
FromException(Exception)
Translates the input exception to a fault.
public:
 virtual System::ServiceModel::FaultException ^ FromException(Exception ^ ex);public virtual System.ServiceModel.FaultException FromException(Exception ex);abstract member FromException : Exception -> System.ServiceModel.FaultException
override this.FromException : Exception -> System.ServiceModel.FaultExceptionPublic Overridable Function FromException (ex As Exception) As FaultExceptionParameters
- ex
- Exception
The exception to be mapped to a fault.
Returns
The fault corresponding to the input exception.
Applies to
FromException(Exception, String, String)
Translates the input exception to a fault.
public:
 virtual System::ServiceModel::FaultException ^ FromException(Exception ^ ex, System::String ^ soapNamespace, System::String ^ trustNamespace);public virtual System.ServiceModel.FaultException FromException(Exception ex, string soapNamespace, string trustNamespace);abstract member FromException : Exception * string * string -> System.ServiceModel.FaultException
override this.FromException : Exception * string * string -> System.ServiceModel.FaultExceptionPublic Overridable Function FromException (ex As Exception, soapNamespace As String, trustNamespace As String) As FaultExceptionParameters
- ex
- Exception
The exception to be mapped to a fault.
- soapNamespace
- String
The SOAP Namespace to be used when generating the mapped fault.
- trustNamespace
- String
The WS-Trust Namespace to be used when generating the mapped fault.
Returns
The fault corresponding to the input exception.