5 references to CreateFault
dotnet-svcutil-lib (5)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\Message.cs (1)
210return CreateMessage(version, MessageFault.CreateFault(faultCode, new FaultReason(reason), detail), action);
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\DispatchRuntime.cs (1)
407MessageFault fault = MessageFault.CreateFault(code, reason, action);
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\ErrorBehavior.cs (2)
90fault = MessageFault.CreateFault(code, new FaultReason(error.Message), new ExceptionDetail(error)); 143faultInfo.Fault = Message.CreateMessage(_messageVersion, MessageFault.CreateFault(ndfe.Code, ndfe.Reason, detail), ndfe.Action);
FrameworkFork\System.ServiceModel\System\ServiceModel\FaultException.cs (1)
379return MessageFault.CreateFault(this.Code, this.Reason, _detail);