6 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 (3)
netstandard.cs (3)
485event System.EventHandler System.ServiceModel.ICommunicationObject.Closing { add { } remove { } } 528event System.EventHandler System.ServiceModel.ICommunicationObject.Closing { add { } remove { } } 1384public event System.EventHandler Closing { add { } remove { } }
7 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; }
UnitTests.Common (1)
MockCommunicationObject.cs (1)
312mco.Closing += (s, ea) => eventsFired.Add("Closing");