9 writes to Error
System.ServiceModel (9)
System\ServiceModel\Dispatcher\ErrorBehavior.cs (1)
176
rpc.
Error
= null;
System\ServiceModel\Dispatcher\ImmutableDispatchRuntime.cs (2)
827
rpc.
Error
= exception;
1674
rpc.
Error
= e;
System\ServiceModel\Dispatcher\MessageRpc.cs (2)
99
this.
Error
= null;
472
this.
Error
= e;
System\ServiceModel\Dispatcher\ReceiveContextRPCFacet.cs (1)
163
rpc.
Error
= e;
System\ServiceModel\Dispatcher\TransactionBehavior.cs (3)
404
rpc.Transaction.ThreadEnter(ref rpc.
Error
);
671
rpc.
Error
= TransactionBehavior.CreateFault(SR.GetString(SR.SFxTransactionAsyncAborted), FaultCodeConstants.Codes.TransactionAborted, true);
739
rpc.
Error
= TransactionBehavior.CreateFault(SR.GetString(SR.SFxTransactionAsyncAborted), FaultCodeConstants.Codes.TransactionAborted, true);
22 references to Error
System.ServiceModel (22)
System\ServiceModel\Dispatcher\DispatchOperationRuntime.cs (2)
474
if (rpc.
Error
== null)
680
if ((rpc.
Error
== null) && !this.isSynchronous)
System\ServiceModel\Dispatcher\ErrorBehavior.cs (6)
31
Exception error = rpc.
Error
;
54
if (rpc.
Error
!= null)
69
this.ProvideFault(rpc.
Error
, rpc.Channel.GetProperty<FaultConverter>(), ref rpc.FaultInfo);
120
this.ProvideFaultOfLastResort(rpc.
Error
, ref rpc.FaultInfo);
165
if (rpc.
Error
!= null)
173
bool handled = HandleErrorCommon(rpc.
Error
, ref rpc.FaultInfo);
System\ServiceModel\Dispatcher\ImmutableDispatchRuntime.cs (5)
360
if (reply != null && rpc.
Error
== null)
409
if (reply != null && rpc.
Error
== null)
1665
bool hadError = (rpc.
Error
!= null);
1672
if (rpc.
Error
== null)
1679
if (!hadError && rpc.
Error
!= null)
System\ServiceModel\Dispatcher\InstanceBehavior.cs (1)
124
(rpc.transaction.IsCompleted || (rpc.
Error
!= null)))
System\ServiceModel\Dispatcher\MessageRpc.cs (1)
479
return (this.
Error
== null);
System\ServiceModel\Dispatcher\TransactionBehavior.cs (7)
124
rpc.Transaction.Complete(rpc.
Error
);
669
if (rpc.
Error
== null) //we don't want to mask the initial error
672
DiagnosticUtility.TraceHandledException(rpc.
Error
, TraceEventType.Error);
685
if (rpc.Transaction.IsCompleted || (rpc.
Error
!= null))
689
if (rpc.
Error
!= null)
737
if (rpc.
Error
== null) //we don't want to mask the initial error
740
DiagnosticUtility.TraceHandledException(rpc.
Error
, TraceEventType.Error);