8 references to CreateFault
System.ServiceModel.Primitives (8)
System\ServiceModel\Channels\MessageFault.cs (2)
21return CreateFault(code, new FaultReason(reason)); 132s_defaultMessageFault = MessageFault.CreateFault(new FaultCode("Default"), new FaultReason("", CultureInfo.CurrentCulture));
System\ServiceModel\Channels\ReliableMessagingHelpers.cs (2)
1811MessageFault fault = MessageFault.CreateFault(code, faultReason); 1903MessageFault fault = MessageFault.CreateFault(code, faultReason);
System\ServiceModel\Dispatcher\ErrorBehavior.cs (1)
101fault = MessageFault.CreateFault(code, new FaultReason(reason));
System\ServiceModel\Dispatcher\FaultFormatter.cs (1)
207return MessageFault.CreateFault(faultException.Code, faultException.Reason);
System\ServiceModel\FaultException.cs (1)
189return MessageFault.CreateFault(Code, Reason);
System\ServiceModel\MustUnderstandSoapException.cs (1)
38MessageFault fault = MessageFault.CreateFault(code, reason);