7 references to Fault
dotnet-svcutil-lib (7)
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\ErrorBehavior.cs (5)
104
if (e != null && e.
Fault
!= null && e.
Fault
.Code != null && e.
Fault
.Code.SubCode != null &&
105
string.Compare(e.
Fault
.Code.SubCode.Namespace, FaultCodeConstants.Namespaces.NetDispatch, StringComparison.Ordinal) == 0 &&
106
string.Compare(e.
Fault
.Code.SubCode.Name, FaultCodeConstants.Codes.InternalServiceFault, StringComparison.Ordinal) == 0)
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\FaultFormatter.cs (2)
185
if (faultException.
Fault
!= null)
186
return faultException.
Fault
;