6 references to CreateFault
dotnet-svcutil-lib (6)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\MessageFault.cs (2)
20return CreateFault(code, new FaultReason(reason)); 113s_defaultMessageFault = MessageFault.CreateFault(new FaultCode("Default"), new FaultReason("", CultureInfo.CurrentCulture));
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\ErrorBehavior.cs (1)
95fault = MessageFault.CreateFault(code, new FaultReason(reason));
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\FaultFormatter.cs (1)
187return MessageFault.CreateFault(faultException.Code, faultException.Reason);
FrameworkFork\System.ServiceModel\System\ServiceModel\FaultException.cs (1)
184return MessageFault.CreateFault(_code, _reason);
FrameworkFork\System.ServiceModel\System\ServiceModel\MustUnderstandSoapException.cs (1)
35MessageFault fault = MessageFault.CreateFault(code, reason);