4 writes to FaultInfo
dotnet-svcutil-lib (4)
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\ErrorBehavior.cs (3)
58this.ProvideFault(rpc.Error, rpc.Channel.GetProperty<FaultConverter>(), ref rpc.FaultInfo); 75ProvideFaultOfLastResort(rpc.Error, ref rpc.FaultInfo); 162bool handled = HandleErrorCommon(rpc.Error, ref rpc.FaultInfo);
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\MessageRpc.cs (1)
82this.FaultInfo = new ErrorHandlerFaultInfo(request.Version.Addressing.DefaultFaultAction);
9 references to FaultInfo
dotnet-svcutil-lib (9)
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\ErrorBehavior.cs (4)
37rpc.FaultInfo.Fault = Message.CreateMessage(rpc.RequestVersion, messageFault, action); 65if (rpc.FaultInfo.Fault.Headers.Action == null) 67rpc.FaultInfo.Fault.Headers.Action = rpc.RequestVersion.Addressing.DefaultFaultAction; 70rpc.Reply = rpc.FaultInfo.Fault;
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\ImmutableDispatchRuntime.cs (4)
733if (rpc.FaultInfo.IsConsideredUnhandled) 776if ((rpc.FaultInfo.Fault != null) && (rpc.FaultInfo.Fault.State != MessageState.Closed)) 782rpc.FaultInfo.Fault.Close();
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\MessageRpc.cs (1)
457if (!this.ProcessError(e) && this.FaultInfo.Fault == null)