7 writes to Fault
dotnet-svcutil-lib (7)
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\ChannelHandler.cs (1)
870faultInfo.Fault = fault;
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\ErrorBehavior.cs (6)
37rpc.FaultInfo.Fault = Message.CreateMessage(rpc.RequestVersion, messageFault, action); 98faultInfo.Fault = Message.CreateMessage(_messageVersion, fault, action); 120faultInfo.Fault = m; 134faultInfo.Fault = faultMessage; 143faultInfo.Fault = Message.CreateMessage(_messageVersion, MessageFault.CreateFault(ndfe.Code, ndfe.Reason, detail), ndfe.Action); 147faultInfo.Fault = Message.CreateMessage(_messageVersion, ndfe.CreateMessageFault(), ndfe.Action);
12 references to Fault
dotnet-svcutil-lib (12)
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\ChannelHandler.cs (2)
908if (faultInfo.Fault != null) 910Message reply = faultInfo.Fault;
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\ErrorBehavior.cs (6)
65if (rpc.FaultInfo.Fault.Headers.Action == null) 67rpc.FaultInfo.Fault.Headers.Action = rpc.RequestVersion.Addressing.DefaultFaultAction; 70rpc.Reply = rpc.FaultInfo.Fault; 81if (faultInfo.Fault == null) 118Message m = faultInfo.Fault; 172if (faultInfo.Fault != null // there is a message
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\ImmutableDispatchRuntime.cs (3)
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)