4 writes to Error
dotnet-svcutil-lib (4)
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\ErrorBehavior.cs (1)
165rpc.Error = null;
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\ImmutableDispatchRuntime.cs (1)
339rpc.Error = exception;
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\MessageRpc.cs (2)
80this.Error = null; 312this.Error = e;
9 references to Error
dotnet-svcutil-lib (9)
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\DispatchOperationRuntime.cs (2)
208if (rpc.Error == null) 269if ((rpc.Error == null))
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\ErrorBehavior.cs (6)
28Exception error = rpc.Error; 43if (rpc.Error != null) 58this.ProvideFault(rpc.Error, rpc.Channel.GetProperty<FaultConverter>(), ref rpc.FaultInfo); 75ProvideFaultOfLastResort(rpc.Error, ref rpc.FaultInfo); 154if (rpc.Error != null) 162bool handled = HandleErrorCommon(rpc.Error, ref rpc.FaultInfo);
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\MessageRpc.cs (1)
319return (this.Error == null);