1 write to handlers
System.ServiceModel (1)
System\ServiceModel\Dispatcher\ErrorBehavior.cs (1)
23
this.
handlers
= EmptyArray<IErrorHandler>.ToArray(channelDispatcher.ErrorHandlers);
7 references to handlers
System.ServiceModel (7)
System\ServiceModel\Dispatcher\ErrorBehavior.cs (7)
48
return
handlers
;
127
for (int i = 0; i < this.
handlers
.Length; i++)
130
handlers
[i].ProvideFault(e, this.messageVersion, ref m);
134
TD.FaultProviderInvoked(
handlers
[i].GetType().FullName, e.Message);
199
for (int i = 0; i < this.
handlers
.Length; i++)
201
bool handledByThis =
handlers
[i].HandleError(error);
205
TD.ErrorHandlerInvoked(
handlers
[i].GetType().FullName, handledByThis, error.GetType().FullName);