7 references to FaultReason
dotnet-svcutil-lib (7)
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\Channels\MessageFault.cs (1)
20return CreateFault(code, new FaultReason(reason));
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\DispatchRuntime.cs (1)
378FaultReason reason = new FaultReason(reasonText);
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\ErrorBehavior.cs (2)
90fault = MessageFault.CreateFault(code, new FaultReason(error.Message), new ExceptionDetail(error)); 95fault = MessageFault.CreateFault(code, new FaultReason(reason));
FrameworkFork\System.ServiceModel\System\ServiceModel\FaultException.cs (2)
128get { return new FaultReason(SRServiceModel.SFxFaultReason); } 190return (reason != null) ? new FaultReason(reason) : DefaultReason;