11 implementations of Closing
System.ServiceModel (9)
System\ServiceModel\Channels\CommunicationObject.cs (1)
94public event EventHandler Closing;
System\ServiceModel\ClientBase.cs (2)
655event EventHandler ICommunicationObject.Closing 1264event EventHandler ICommunicationObject.Closing
System\ServiceModel\Dispatcher\DuplexChannelBinder.cs (1)
1149public event EventHandler Closing
System\ServiceModel\Security\Tokens\IssuedSecurityTokenProvider.cs (1)
60public event EventHandler Closing
System\ServiceModel\Security\WrappedSessionSecurityTokenAuthenticator.cs (1)
197public event System.EventHandler Closing
System\ServiceModel\Security\WrapperSecurityCommunicationObject.cs (2)
145public event EventHandler Closing 322public event EventHandler Closing
System\ServiceModel\Security\WSTrustChannel.cs (1)
854public event EventHandler Closing
System.ServiceModel.Discovery (2)
System\ServiceModel\Discovery\AnnouncementClient.cs (1)
118event EventHandler ICommunicationObject.Closing
System\ServiceModel\Discovery\DiscoveryClient.cs (1)
121event EventHandler ICommunicationObject.Closing
14 references to Closing
System.ServiceModel (10)
System\ServiceModel\ClientBase.cs (4)
659this.InnerChannel.Closing += value; 663this.InnerChannel.Closing -= value; 1266add { ((ICommunicationObject)this.channel).Closing += value; } 1267remove { ((ICommunicationObject)this.channel).Closing -= value; }
System\ServiceModel\Dispatcher\DuplexChannelBinder.cs (2)
1151add { this.innerChannel.Closing += value; } 1152remove { this.innerChannel.Closing -= value; }
System\ServiceModel\Security\WrappedSessionSecurityTokenAuthenticator.cs (2)
199add { _communicationObject.Closing += value; } 200remove { _communicationObject.Closing -= value; }
System\ServiceModel\Security\WSTrustChannel.cs (2)
858Channel.Closing += value; 862Channel.Closing -= value;
System.ServiceModel.Discovery (4)
System\ServiceModel\Discovery\AnnouncementClient.cs (2)
124this.InnerCommunicationObject.Closing += OnInnerCommunicationObjectClosing; 134this.InnerCommunicationObject.Closing -= OnInnerCommunicationObjectClosing;
System\ServiceModel\Discovery\DiscoveryClient.cs (2)
127this.InnerCommunicationObject.Closing += OnInnerCommunicationObjectClosing; 137this.InnerCommunicationObject.Closing -= OnInnerCommunicationObjectClosing;