11 references to FaultReason
ScenarioTests.Common.Tests (1)
ScenarioTestTypes.cs (1)
730new FaultReason("Reason: Testing FaultException returned from Duplex Callback"),
System.ServiceModel.Primitives (7)
System\ServiceModel\Channels\Message.cs (1)
264return CreateMessage(version, MessageFault.CreateFault(faultCode, new FaultReason(reason), detail), action);
System\ServiceModel\Channels\MessageFault.cs (1)
21return CreateFault(code, new FaultReason(reason));
System\ServiceModel\Dispatcher\DispatchRuntime.cs (1)
367FaultReason reason = new FaultReason(reasonText);
System\ServiceModel\Dispatcher\ErrorBehavior.cs (2)
96fault = MessageFault.CreateFault(code, new FaultReason(error.Message), new ExceptionDetail(error)); 101fault = MessageFault.CreateFault(code, new FaultReason(reason));
System\ServiceModel\FaultException.cs (2)
134get { return new FaultReason(SRP.SFxFaultReason); } 195return (reason != null) ? new FaultReason(reason) : DefaultReason;
System.ServiceModel.Primitives.Tests (2)
ServiceModel\FaultExceptionTest.cs (2)
20var reason = new FaultReason("Fault reason"); 105var reason = new FaultReason("Fault reason");
UnitTests.Common (1)
TestTypes.cs (1)
709new FaultReason("Reason: Testing FaultException returned from Duplex Callback"),