8 references to CreateFault
System.ServiceModel (5)
System\ServiceModel\Channels\Message.cs (1)
252return CreateMessage(version, MessageFault.CreateFault(faultCode, new FaultReason(reason), detail), action);
System\ServiceModel\Dispatcher\DispatchRuntime.cs (1)
847MessageFault fault = MessageFault.CreateFault(code, reason, action);
System\ServiceModel\Dispatcher\ErrorBehavior.cs (2)
85fault = MessageFault.CreateFault(code, new FaultReason(error.Message), new ExceptionDetail(error)); 154faultInfo.Fault = Message.CreateMessage(this.messageVersion, MessageFault.CreateFault(ndfe.Code, ndfe.Reason, detail), ndfe.Action);
System\ServiceModel\FaultException.cs (1)
438return MessageFault.CreateFault(this.Code, this.Reason, this.detail);
System.ServiceModel.Activities (1)
System\ServiceModel\Activities\ToReply.cs (1)
211messageFault = MessageFault.CreateFault(code,
System.ServiceModel.Web (1)
System\ServiceModel\Description\WebScriptEnablingBehavior.cs (1)
395innerFault = MessageFault.CreateFault(code, new FaultReason(error.Message, CultureInfo.CurrentCulture), new ExceptionDetail(error));
System.WorkflowServices (1)
System\ServiceModel\Dispatcher\DurableErrorHandler.cs (1)
49messageFault = MessageFault.CreateFault(code, new FaultReason(toTrace.Message), new ExceptionDetail(toTrace));