10 implementations of Closing
System.ServiceModel.Federation (3)
System\IdentityModel\Security\WrapperSecurityCommunicationObject.cs (1)
331public event EventHandler Closing
System\ServiceModel\Federation\WSTrustChannel.cs (1)
170event EventHandler ICommunicationObject.Closing
System\ServiceModel\Federation\WSTrustChannelSecurityTokenProvider.cs (1)
494event EventHandler ICommunicationObject.Closing
System.ServiceModel.Primitives (7)
System\ServiceModel\Channels\CommunicationObject.cs (1)
150public event EventHandler Closing;
System\ServiceModel\Channels\ServiceChannelProxy.cs (1)
549event EventHandler ICommunicationObject.Closing
System\ServiceModel\ClientBase.cs (2)
566event EventHandler ICommunicationObject.Closing 1069event EventHandler ICommunicationObject.Closing
System\ServiceModel\Dispatcher\DuplexChannelBinder.cs (1)
1102public event EventHandler Closing
System\ServiceModel\Security\WrapperSecurityCommunicationObject.cs (2)
150public event EventHandler Closing 312public event EventHandler Closing
13 references to Closing
Client.ClientBase.IntegrationTests (4)
ClientBaseTestHelpers.cs (2)
55co.Closing += closing; 63co.Closing -= closing;
SessionTests.cs (2)
258OperationContext.Current.Channel.Closing += (sender, e) => 524ctxChannel.Closing += (sender, e) =>
System.ServiceModel.Federation (2)
System\ServiceModel\Federation\WSTrustChannel.cs (2)
172add { RequestChannel.Closing += value; } 173remove { RequestChannel.Closing -= value; }
System.ServiceModel.Primitives (6)
System\ServiceModel\ClientBase.cs (4)
570InnerChannel.Closing += value; 574InnerChannel.Closing -= value; 1071add { ((ICommunicationObject)_channel).Closing += value; } 1072remove { ((ICommunicationObject)_channel).Closing -= value; }
System\ServiceModel\Dispatcher\DuplexChannelBinder.cs (2)
1104add { _innerChannel.Closing += value; } 1105remove { _innerChannel.Closing -= value; }
UnitTests.Common (1)
MockCommunicationObject.cs (1)
312mco.Closing += (s, ea) => eventsFired.Add("Closing");