7 implementations of Faulted
dotnet-svcutil-lib (7)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\CommunicationObject.cs (1)
82public event EventHandler Faulted;
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\ServiceChannelProxy.cs (1)
545event EventHandler ICommunicationObject.Faulted
FrameworkFork\System.ServiceModel\System\ServiceModel\ClientBase.cs (2)
243event EventHandler ICommunicationObject.Faulted 678event EventHandler ICommunicationObject.Faulted
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\DuplexChannelBinder.cs (1)
1095public event EventHandler Faulted
FrameworkFork\System.ServiceModel\System\ServiceModel\Security\WrapperSecurityCommunicationObject.cs (2)
178public event EventHandler Faulted 353public event EventHandler Faulted
15 references to Faulted
dotnet-svcutil-lib (15)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\LayeredChannel.cs (2)
22_innerChannel.Faulted += _onInnerChannelFaulted; 43_innerChannel.Faulted -= _onInnerChannelFaulted;
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\LayeredChannelFactory.cs (2)
181_innerOutputChannel.Faulted += _onInnerOutputChannelFaulted; 201_innerOutputChannel.Faulted -= _onInnerOutputChannelFaulted;
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\ServiceChannel.cs (1)
407_binder.Channel.Faulted += OnInnerChannelFaulted;
FrameworkFork\System.ServiceModel\System\ServiceModel\ClientBase.cs (4)
247InnerChannel.Faulted += value; 251InnerChannel.Faulted -= value; 680add { ((ICommunicationObject)_channel).Faulted += value; } 681remove { ((ICommunicationObject)_channel).Faulted -= value; }
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\ChannelDispatcher.cs (1)
59_listener.Faulted += new EventHandler(OnListenerFaulted);
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\DuplexChannelBinder.cs (3)
38_channel.Faulted += new EventHandler(OnFaulted); 1097add { _innerChannel.Faulted += value; } 1098remove { _innerChannel.Faulted -= value; }
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\SynchronizedChannelCollection.cs (2)
25channel.Faulted += _onChannelFaulted; 31channel.Faulted -= _onChannelFaulted;