11 implementations of Opened
System.ServiceModel (9)
System\ServiceModel\Channels\CommunicationObject.cs (1)
96public event EventHandler Opened;
System\ServiceModel\ClientBase.cs (2)
679event EventHandler ICommunicationObject.Opened 1276event EventHandler ICommunicationObject.Opened
System\ServiceModel\Dispatcher\DuplexChannelBinder.cs (1)
1167public event EventHandler Opened
System\ServiceModel\Security\Tokens\IssuedSecurityTokenProvider.cs (1)
72public event EventHandler Opened
System\ServiceModel\Security\WrappedSessionSecurityTokenAuthenticator.cs (1)
229public event System.EventHandler Opened
System\ServiceModel\Security\WrapperSecurityCommunicationObject.cs (2)
157public event EventHandler Opened 334public event EventHandler Opened
System\ServiceModel\Security\WSTrustChannel.cs (1)
921public event EventHandler Opened
System.ServiceModel.Discovery (2)
System\ServiceModel\Discovery\AnnouncementClient.cs (1)
160event EventHandler ICommunicationObject.Opened
System\ServiceModel\Discovery\DiscoveryClient.cs (1)
100event EventHandler ICommunicationObject.Opened
15 references to Opened
System.ServiceModel (11)
System\ServiceModel\Channels\PeerNeighborManager.cs (1)
1241this.proxyChannel.Opened += OnChannelOpened;
System\ServiceModel\ClientBase.cs (4)
683this.InnerChannel.Opened += value; 687this.InnerChannel.Opened -= value; 1278add { ((ICommunicationObject)this.channel).Opened += value; } 1279remove { ((ICommunicationObject)this.channel).Opened -= value; }
System\ServiceModel\Dispatcher\DuplexChannelBinder.cs (2)
1169add { this.innerChannel.Opened += value; } 1170remove { this.innerChannel.Opened -= value; }
System\ServiceModel\Security\WrappedSessionSecurityTokenAuthenticator.cs (2)
231add { _communicationObject.Opened += value; } 232remove { _communicationObject.Opened -= value; }
System\ServiceModel\Security\WSTrustChannel.cs (2)
925Channel.Opened += value; 929Channel.Opened -= value;
System.ServiceModel.Discovery (4)
System\ServiceModel\Discovery\AnnouncementClient.cs (2)
166this.InnerCommunicationObject.Opened += OnInnerCommunicationObjectOpened; 176this.InnerCommunicationObject.Opened -= OnInnerCommunicationObjectOpened;
System\ServiceModel\Discovery\DiscoveryClient.cs (2)
106this.InnerCommunicationObject.Opened += OnInnerCommunicationObjectOpened; 116this.InnerCommunicationObject.Opened -= OnInnerCommunicationObjectOpened;