19 references to CreateFault
System.ServiceModel (16)
System\ServiceModel\Channels\MessageFault.cs (2)
24return CreateFault(code, new FaultReason(reason)); 118defaultMessageFault = MessageFault.CreateFault(new FaultCode("Default"), new FaultReason("", CultureInfo.CurrentCulture));
System\ServiceModel\Channels\ReliableMessagingHelpers.cs (2)
3206MessageFault fault = MessageFault.CreateFault(code, faultReason); 3298MessageFault fault = MessageFault.CreateFault(code, faultReason);
System\ServiceModel\Channels\SecurityChannelListener.cs (1)
782secureConversationCloseNotSupportedFault = MessageFault.CreateFault(faultCode, faultReason);
System\ServiceModel\Dispatcher\ErrorBehavior.cs (1)
90fault = MessageFault.CreateFault(code, new FaultReason(reason));
System\ServiceModel\Dispatcher\FaultFormatter.cs (1)
191return MessageFault.CreateFault(faultException.Code, faultException.Reason);
System\ServiceModel\FaultException.cs (1)
207return MessageFault.CreateFault(this.code, this.reason);
System\ServiceModel\MustUnderstandSoapException.cs (1)
40MessageFault fault = MessageFault.CreateFault(code, reason);
System\ServiceModel\Security\MessageSecurityProtocolFactory.cs (1)
225MessageFault fault = MessageFault.CreateFault(senderCode, reason);
System\ServiceModel\Security\NegotiationTokenAuthenticator.cs (1)
944MessageFault fault = MessageFault.CreateFault(faultCode, reason);
System\ServiceModel\Security\SecuritySessionSecurityTokenAuthenticator.cs (1)
474MessageFault fault = MessageFault.CreateFault(faultCode, reason);
System\ServiceModel\Security\SecuritySessionServerSettings.cs (1)
1892MessageFault renewFault = MessageFault.CreateFault(renewFaultCode, renewFaultReason);
System\ServiceModel\Security\SecurityUtils.cs (3)
1318return MessageFault.CreateFault(senderCode, reason); 1381return MessageFault.CreateFault(faultException.Code, faultException.Reason); 1389return MessageFault.CreateFault(senderCode, reason);
System.ServiceModel.Activities (2)
System\ServiceModel\Activities\ToReply.cs (1)
217messageFault = MessageFault.CreateFault(code,
System\ServiceModel\Activities\WorkflowHostingEndpoint.cs (1)
87MessageFault dispatchFault = MessageFault.CreateFault(code,
System.WorkflowServices (1)
System\ServiceModel\Dispatcher\DurableErrorHandler.cs (1)
54messageFault = MessageFault.CreateFault(code, new FaultReason(reason));