11 implementations of Faulted
System.ServiceModel (9)
System\ServiceModel\Channels\CommunicationObject.cs (1)
95public event EventHandler Faulted;
System\ServiceModel\ClientBase.cs (2)
667event EventHandler ICommunicationObject.Faulted 1270event EventHandler ICommunicationObject.Faulted
System\ServiceModel\Dispatcher\DuplexChannelBinder.cs (1)
1161public event EventHandler Faulted
System\ServiceModel\Security\Tokens\IssuedSecurityTokenProvider.cs (1)
66public event EventHandler Faulted
System\ServiceModel\Security\WrappedSessionSecurityTokenAuthenticator.cs (1)
213public event System.EventHandler Faulted
System\ServiceModel\Security\WrapperSecurityCommunicationObject.cs (2)
151public event EventHandler Faulted 328public event EventHandler Faulted
System\ServiceModel\Security\WSTrustChannel.cs (1)
887public event EventHandler Faulted
System.ServiceModel.Discovery (2)
System\ServiceModel\Discovery\AnnouncementClient.cs (1)
139event EventHandler ICommunicationObject.Faulted
System\ServiceModel\Discovery\DiscoveryClient.cs (1)
163event EventHandler ICommunicationObject.Faulted
42 references to Faulted
SMSvcHost (1)
System\ServiceModel\Activation\WorkerProcess.cs (1)
259channel.Faulted += new EventHandler(WorkerProcess_Faulted);
System.ServiceModel (33)
System\ServiceModel\Channels\ChannelTracker.cs (2)
52channel.Faulted += this.onInnerChannelFaulted; 66channel.Faulted -= this.onInnerChannelFaulted;
System\ServiceModel\Channels\DatagramAdapter.cs (3)
384this.channel.Faulted += DatagramAdapterReceiver.faultedDelegate; 589channel.Faulted += this.onChannelFaulted; 595channel.Faulted -= this.onChannelFaulted;
System\ServiceModel\Channels\LayeredChannel.cs (2)
24this.innerChannel.Faulted += this.onInnerChannelFaulted; 45this.innerChannel.Faulted -= this.onInnerChannelFaulted;
System\ServiceModel\Channels\LayeredChannelFactory.cs (2)
182this.innerOutputChannel.Faulted += this.onInnerOutputChannelFaulted; 202this.innerOutputChannel.Faulted -= this.onInnerOutputChannelFaulted;
System\ServiceModel\Channels\LayeredChannelListener.cs (4)
41this.innerChannelListener.Faulted += onInnerListenerFaulted; 58this.innerChannelListener.Faulted -= onInnerListenerFaulted; 63this.innerChannelListener.Faulted += onInnerListenerFaulted; 136channelListener.Faulted -= onInnerListenerFaulted;
System\ServiceModel\Channels\PeerNeighborManager.cs (1)
1243this.proxyChannel.Faulted += OnChannelFaulted;
System\ServiceModel\Channels\ReliableChannelBinder.cs (4)
1589faultedChannel.Faulted -= this.onChannelFaulted; 1842channel.Faulted -= this.onChannelFaulted; 1907this.currentChannel.Faulted += this.onChannelFaulted; 1971this.currentChannel.Faulted -= this.onChannelFaulted;
System\ServiceModel\Channels\ServiceChannel.cs (1)
437this.binder.Channel.Faulted += OnInnerChannelFaulted;
System\ServiceModel\ClientBase.cs (4)
671this.InnerChannel.Faulted += value; 675this.InnerChannel.Faulted -= value; 1272add { ((ICommunicationObject)this.channel).Faulted += value; } 1273remove { ((ICommunicationObject)this.channel).Faulted -= value; }
System\ServiceModel\Dispatcher\ChannelDispatcher.cs (1)
102this.listener.Faulted += new EventHandler(OnListenerFaulted);
System\ServiceModel\Dispatcher\DuplexChannelBinder.cs (3)
41this.channel.Faulted += new EventHandler(OnFaulted); 1163add { this.innerChannel.Faulted += value; } 1164remove { this.innerChannel.Faulted -= value; }
System\ServiceModel\Dispatcher\SynchronizedChannelCollection.cs (2)
26channel.Faulted += this.onChannelFaulted; 32channel.Faulted -= this.onChannelFaulted;
System\ServiceModel\Security\WrappedSessionSecurityTokenAuthenticator.cs (2)
215add { _communicationObject.Faulted += value; } 216remove { _communicationObject.Faulted -= value; }
System\ServiceModel\Security\WSTrustChannel.cs (2)
891Channel.Faulted += value; 895Channel.Faulted -= value;
System.ServiceModel.Discovery (7)
System\ServiceModel\Discovery\AnnouncementClient.cs (2)
145this.InnerCommunicationObject.Faulted += OnInnerCommunicationObjectFaulted; 155this.InnerCommunicationObject.Faulted -= OnInnerCommunicationObjectFaulted;
System\ServiceModel\Discovery\DiscoveryClient.cs (2)
169this.InnerCommunicationObject.Faulted += OnInnerCommunicationObjectFaulted; 179this.InnerCommunicationObject.Faulted -= OnInnerCommunicationObjectFaulted;
System\ServiceModel\Discovery\DiscoveryClientChannelBase.cs (3)
83this.innerChannel.Faulted += new EventHandler(OnInnerChannelFaulted); 98this.innerChannel.Faulted += new EventHandler(OnInnerChannelFaulted); 105this.innerChannel.Faulted -= new EventHandler(OnInnerChannelFaulted);
System.ServiceModel.Routing (1)
System\ServiceModel\Routing\ClientFactory.cs (1)
148((ICommunicationObject)channel).Faulted += this.InnerChannelFaulted;