7 implementations of Closing
dotnet-svcutil-lib (7)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\CommunicationObject.cs (1)
81public event EventHandler Closing;
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\ServiceChannelProxy.cs (1)
539event EventHandler ICommunicationObject.Closing
FrameworkFork\System.ServiceModel\System\ServiceModel\ClientBase.cs (2)
231event EventHandler ICommunicationObject.Closing 672event EventHandler ICommunicationObject.Closing
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\DuplexChannelBinder.cs (1)
1083public event EventHandler Closing
FrameworkFork\System.ServiceModel\System\ServiceModel\Security\WrapperSecurityCommunicationObject.cs (2)
172public event EventHandler Closing 347public event EventHandler Closing
6 references to Closing
dotnet-svcutil-lib (6)
FrameworkFork\System.ServiceModel\System\ServiceModel\ClientBase.cs (4)
235InnerChannel.Closing += value; 239InnerChannel.Closing -= value; 674add { ((ICommunicationObject)_channel).Closing += value; } 675remove { ((ICommunicationObject)_channel).Closing -= value; }
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\DuplexChannelBinder.cs (2)
1085add { _innerChannel.Closing += value; } 1086remove { _innerChannel.Closing -= value; }