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