7 references to Fault
System.ServiceModel (7)
System\ServiceModel\Dispatcher\ErrorBehavior.cs (5)
99
if (e != null && e.
Fault
!= null && e.
Fault
.Code != null && e.
Fault
.Code.SubCode != null &&
100
string.Compare(e.
Fault
.Code.SubCode.Namespace, FaultCodeConstants.Namespaces.NetDispatch, StringComparison.Ordinal) == 0 &&
101
string.Compare(e.
Fault
.Code.SubCode.Name, FaultCodeConstants.Codes.InternalServiceFault, StringComparison.Ordinal) == 0)
System\ServiceModel\Dispatcher\FaultFormatter.cs (2)
189
if (faultException.
Fault
!= null)
190
return faultException.
Fault
;