11 implementations of Closed
System.ServiceModel (9)
System\ServiceModel\Channels\CommunicationObject.cs (1)
93public event EventHandler Closed;
System\ServiceModel\ClientBase.cs (2)
643event EventHandler ICommunicationObject.Closed 1258event EventHandler ICommunicationObject.Closed
System\ServiceModel\Dispatcher\DuplexChannelBinder.cs (1)
1155public event EventHandler Closed
System\ServiceModel\Security\Tokens\IssuedSecurityTokenProvider.cs (1)
54public event EventHandler Closed
System\ServiceModel\Security\WrappedSessionSecurityTokenAuthenticator.cs (1)
191public event System.EventHandler Closed
System\ServiceModel\Security\WrapperSecurityCommunicationObject.cs (2)
139public event EventHandler Closed 316public event EventHandler Closed
System\ServiceModel\Security\WSTrustChannel.cs (1)
839public event EventHandler Closed
System.ServiceModel.Discovery (2)
System\ServiceModel\Discovery\AnnouncementClient.cs (1)
97event EventHandler ICommunicationObject.Closed
System\ServiceModel\Discovery\DiscoveryClient.cs (1)
142event EventHandler ICommunicationObject.Closed
32 references to Closed
SMSvcHost (1)
System\ServiceModel\Activation\WorkerProcess.cs (1)
260channel.Closed += new EventHandler(WorkerProcess_Closed);
System.ServiceModel (25)
System\ServiceModel\Channels\ChannelTracker.cs (2)
53channel.Closed += this.onInnerChannelClosed; 67channel.Closed -= this.onInnerChannelClosed;
System\ServiceModel\Channels\CommunicationObjectManager.cs (2)
36item.Closed += this.OnItemClosed; 80item.Closed -= this.OnItemClosed;
System\ServiceModel\Channels\DatagramAdapter.cs (3)
385this.channel.Closed += new EventHandler(this.ClosedCallback); 590channel.Closed += this.onChannelClosed; 596channel.Closed -= this.onChannelClosed;
System\ServiceModel\Channels\MsmqInputChannelListenerBase.cs (1)
30inputChannel.Closed += OnNewChannelNeeded;
System\ServiceModel\Channels\OneWayChannelListener.cs (2)
827channel.Closed += this.onInnerChannelClosed; 910channel.Closed -= this.onInnerChannelClosed;
System\ServiceModel\Channels\PeerNeighborManager.cs (1)
1242this.proxyChannel.Closed += OnChannelClosed;
System\ServiceModel\ClientBase.cs (4)
647this.InnerChannel.Closed += value; 651this.InnerChannel.Closed -= value; 1260add { ((ICommunicationObject)this.channel).Closed += value; } 1261remove { ((ICommunicationObject)this.channel).Closed -= value; }
System\ServiceModel\Dispatcher\DuplexChannelBinder.cs (2)
1157add { this.innerChannel.Closed += value; } 1158remove { this.innerChannel.Closed -= value; }
System\ServiceModel\Dispatcher\SynchronizedChannelCollection.cs (2)
27channel.Closed += this.onChannelClosed; 33channel.Closed -= this.onChannelClosed;
System\ServiceModel\Security\WrappedSessionSecurityTokenAuthenticator.cs (2)
193add { _communicationObject.Closed += value; } 194remove { _communicationObject.Closed -= value; }
System\ServiceModel\Security\WSTrustChannel.cs (2)
843Channel.Closed += value; 847Channel.Closed -= value;
System\ServiceModel\ServiceChannelManager.cs (2)
153channel.Closed += this.OnChannelClosed; 158channel.Closed -= this.OnChannelClosed;
System.ServiceModel.Channels (2)
System\ServiceModel\Channels\UdpChannelListener.cs (2)
451channel.Closed += this.onChannelClosed; 717closingChannel.Closed -= this.onChannelClosed;
System.ServiceModel.Discovery (4)
System\ServiceModel\Discovery\AnnouncementClient.cs (2)
103this.InnerCommunicationObject.Closed += OnInnerCommunicationObjectClosed; 113this.InnerCommunicationObject.Closed -= OnInnerCommunicationObjectClosed;
System\ServiceModel\Discovery\DiscoveryClient.cs (2)
148this.InnerCommunicationObject.Closed += OnInnerCommunicationObjectClosed; 158this.InnerCommunicationObject.Closed -= OnInnerCommunicationObjectClosed;