7 writes to Fault
System.ServiceModel (7)
System\ServiceModel\Dispatcher\ChannelHandler.cs (1)
1213
faultInfo.
Fault
= fault;
System\ServiceModel\Dispatcher\ErrorBehavior.cs (6)
40
rpc.FaultInfo.
Fault
= Message.CreateMessage(rpc.RequestVersion, messageFault, action);
93
faultInfo.
Fault
= Message.CreateMessage(this.messageVersion, fault, action);
131
faultInfo.
Fault
= m;
145
faultInfo.
Fault
= faultMessage;
154
faultInfo.
Fault
= Message.CreateMessage(this.messageVersion, MessageFault.CreateFault(ndfe.Code, ndfe.Reason, detail), ndfe.Action);
158
faultInfo.
Fault
= Message.CreateMessage(this.messageVersion, ndfe.CreateMessageFault(), ndfe.Action);
12 references to Fault
System.ServiceModel (12)
System\ServiceModel\Dispatcher\ChannelHandler.cs (2)
1251
if (faultInfo.
Fault
!= null)
1253
Message reply = faultInfo.
Fault
;
System\ServiceModel\Dispatcher\ErrorBehavior.cs (6)
76
if (faultInfo.
Fault
== null)
110
if (rpc.FaultInfo.
Fault
.Headers.Action == null)
112
rpc.FaultInfo.
Fault
.Headers.Action = rpc.RequestVersion.Addressing.DefaultFaultAction;
115
rpc.Reply = rpc.FaultInfo.
Fault
;
129
Message m = faultInfo.
Fault
;
183
if (faultInfo.
Fault
!= null // there is a message
System\ServiceModel\Dispatcher\ImmutableDispatchRuntime.cs (3)
1553
if ((rpc.FaultInfo.
Fault
!= null) && (rpc.FaultInfo.
Fault
.State != MessageState.Closed))
1559
rpc.FaultInfo.
Fault
.Close();
System\ServiceModel\Dispatcher\MessageRpc.cs (1)
643
if (!this.ProcessError(e) && this.FaultInfo.
Fault
== null)