7 implementations of Closed
dotnet-svcutil-lib (7)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\CommunicationObject.cs (1)
80public event EventHandler Closed;
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\ServiceChannelProxy.cs (1)
533event EventHandler ICommunicationObject.Closed
FrameworkFork\System.ServiceModel\System\ServiceModel\ClientBase.cs (2)
219event EventHandler ICommunicationObject.Closed 666event EventHandler ICommunicationObject.Closed
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\DuplexChannelBinder.cs (1)
1089public event EventHandler Closed
FrameworkFork\System.ServiceModel\System\ServiceModel\Security\WrapperSecurityCommunicationObject.cs (2)
166public event EventHandler Closed 341public event EventHandler Closed
12 references to Closed
dotnet-svcutil-lib (12)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\CommunicationObjectManager.cs (2)
33item.Closed += this.OnItemClosed; 77item.Closed -= this.OnItemClosed;
FrameworkFork\System.ServiceModel\System\ServiceModel\ClientBase.cs (4)
223InnerChannel.Closed += value; 227InnerChannel.Closed -= value; 668add { ((ICommunicationObject)_channel).Closed += value; } 669remove { ((ICommunicationObject)_channel).Closed -= value; }
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\DuplexChannelBinder.cs (2)
1091add { _innerChannel.Closed += value; } 1092remove { _innerChannel.Closed -= value; }
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\SynchronizedChannelCollection.cs (2)
26channel.Closed += _onChannelClosed; 32channel.Closed -= _onChannelClosed;
FrameworkFork\System.ServiceModel\System\ServiceModel\ServiceChannelManager.cs (2)
153channel.Closed += this.OnChannelClosed; 158channel.Closed -= this.OnChannelClosed;