9 implementations of Closed
System.ServiceModel.Federation (2)
System\ServiceModel\Federation\WSTrustChannel.cs (1)
161event EventHandler ICommunicationObject.Closed
System\ServiceModel\Federation\WSTrustChannelSecurityTokenProvider.cs (1)
506event EventHandler ICommunicationObject.Closed
System.ServiceModel.Primitives (7)
System\ServiceModel\Channels\CommunicationObject.cs (1)
149public event EventHandler Closed;
System\ServiceModel\Channels\ServiceChannelProxy.cs (1)
543event EventHandler ICommunicationObject.Closed
System\ServiceModel\ClientBase.cs (2)
534event EventHandler ICommunicationObject.Closed 1043event EventHandler ICommunicationObject.Closed
System\ServiceModel\Dispatcher\DuplexChannelBinder.cs (1)
1108public event EventHandler Closed
System\ServiceModel\Security\WrapperSecurityCommunicationObject.cs (2)
144public event EventHandler Closed 306public event EventHandler Closed
19 references to Closed
Client.ClientBase.IntegrationTests (4)
ClientBaseTestHelpers.cs (2)
56co.Closed += closed; 64co.Closed -= closed;
SessionTests.cs (2)
254OperationContext.Current.Channel.Closed += (sender, e) => 520ctxChannel.Closed += (sender, e) =>
System.ServiceModel.Federation (2)
System\ServiceModel\Federation\WSTrustChannel.cs (2)
163add { RequestChannel.Closed += value; } 164remove { RequestChannel.Closed -= value; }
System.ServiceModel.Primitives (12)
System\ServiceModel\Channels\CommunicationObjectManager.cs (2)
36item.Closed += OnItemClosed; 83item.Closed -= OnItemClosed;
System\ServiceModel\ClientBase.cs (4)
538InnerChannel.Closed += value; 542InnerChannel.Closed -= value; 1045add { ((ICommunicationObject)_channel).Closed += value; } 1046remove { ((ICommunicationObject)_channel).Closed -= value; }
System\ServiceModel\Dispatcher\DuplexChannelBinder.cs (2)
1110add { _innerChannel.Closed += value; } 1111remove { _innerChannel.Closed -= value; }
System\ServiceModel\Dispatcher\SynchronizedChannelCollection.cs (2)
27channel.Closed += _onChannelClosed; 33channel.Closed -= _onChannelClosed;
System\ServiceModel\ServiceChannelManager.cs (2)
59channel.Closed += OnChannelClosed; 64channel.Closed -= OnChannelClosed;
UnitTests.Common (1)
MockCommunicationObject.cs (1)
313mco.Closed += (s, ea) => eventsFired.Add("Closed");