9 implementations of Faulted
System.ServiceModel.Federation (2)
System\ServiceModel\Federation\WSTrustChannel.cs (1)
179event EventHandler ICommunicationObject.Faulted
System\ServiceModel\Federation\WSTrustChannelSecurityTokenProvider.cs (1)
518event EventHandler ICommunicationObject.Faulted
System.ServiceModel.Primitives (7)
System\ServiceModel\Channels\CommunicationObject.cs (1)
151public event EventHandler Faulted;
System\ServiceModel\Channels\ServiceChannelProxy.cs (1)
555event EventHandler ICommunicationObject.Faulted
System\ServiceModel\ClientBase.cs (2)
558event EventHandler ICommunicationObject.Faulted 1055event EventHandler ICommunicationObject.Faulted
System\ServiceModel\Dispatcher\DuplexChannelBinder.cs (1)
1114public event EventHandler Faulted
System\ServiceModel\Security\WrapperSecurityCommunicationObject.cs (2)
156public event EventHandler Faulted 318public event EventHandler Faulted
23 references to Faulted
Client.ClientBase.IntegrationTests (2)
SessionTests.cs (2)
262OperationContext.Current.Channel.Faulted += (sender, e) => 528ctxChannel.Faulted += (sender, e) =>
System.ServiceModel.Federation (2)
System\ServiceModel\Federation\WSTrustChannel.cs (2)
181add { RequestChannel.Faulted += value; } 182remove { RequestChannel.Faulted -= value; }
System.ServiceModel.Primitives (19)
System\ServiceModel\Channels\LayeredChannel.cs (2)
23InnerChannel.Faulted += _onInnerChannelFaulted; 42InnerChannel.Faulted -= _onInnerChannelFaulted;
System\ServiceModel\Channels\LayeredChannelFactory.cs (2)
248_innerOutputChannel.Faulted += _onInnerOutputChannelFaulted; 268_innerOutputChannel.Faulted -= _onInnerOutputChannelFaulted;
System\ServiceModel\Channels\ReliableChannelBinder.cs (4)
1124faultedChannel.Faulted -= _onChannelFaulted; 1370channel.Faulted -= _onChannelFaulted; 1435CurrentChannel.Faulted += _onChannelFaulted; 1499CurrentChannel.Faulted -= _onChannelFaulted;
System\ServiceModel\Channels\ServiceChannel.cs (1)
376Binder.Channel.Faulted += OnInnerChannelFaulted;
System\ServiceModel\ClientBase.cs (4)
562InnerChannel.Faulted += value; 566InnerChannel.Faulted -= value; 1057add { ((ICommunicationObject)_channel).Faulted += value; } 1058remove { ((ICommunicationObject)_channel).Faulted -= value; }
System\ServiceModel\Dispatcher\ChannelDispatcher.cs (1)
55_listener.Faulted += new EventHandler(OnListenerFaulted);
System\ServiceModel\Dispatcher\DuplexChannelBinder.cs (3)
36_channel.Faulted += new EventHandler(OnFaulted); 1116add { _innerChannel.Faulted += value; } 1117remove { _innerChannel.Faulted -= value; }
System\ServiceModel\Dispatcher\SynchronizedChannelCollection.cs (2)
26channel.Faulted += _onChannelFaulted; 32channel.Faulted -= _onChannelFaulted;