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