9 implementations of Opened
System.ServiceModel.Federation (2)
System\ServiceModel\Federation\WSTrustChannel.cs (1)
188event EventHandler ICommunicationObject.Opened
System\ServiceModel\Federation\WSTrustChannelSecurityTokenProvider.cs (1)
524event EventHandler ICommunicationObject.Opened
System.ServiceModel.Primitives (7)
System\ServiceModel\Channels\CommunicationObject.cs (1)
152public event EventHandler Opened;
System\ServiceModel\Channels\ServiceChannelProxy.cs (1)
561event EventHandler ICommunicationObject.Opened
System\ServiceModel\ClientBase.cs (2)
570event EventHandler ICommunicationObject.Opened 1061event EventHandler ICommunicationObject.Opened
System\ServiceModel\Dispatcher\DuplexChannelBinder.cs (1)
1120public event EventHandler Opened
System\ServiceModel\Security\WrapperSecurityCommunicationObject.cs (2)
162public event EventHandler Opened 324public event EventHandler Opened
11 references to Opened
Client.ClientBase.IntegrationTests (2)
ClientBaseTestHelpers.cs (2)
54co.Opened += opened; 62co.Opened -= opened;
System.ServiceModel.Federation (2)
System\ServiceModel\Federation\WSTrustChannel.cs (2)
190add { RequestChannel.Opened += value; } 191remove { RequestChannel.Opened -= value; }
System.ServiceModel.Primitives (6)
System\ServiceModel\ClientBase.cs (4)
574InnerChannel.Opened += value; 578InnerChannel.Opened -= value; 1063add { ((ICommunicationObject)_channel).Opened += value; } 1064remove { ((ICommunicationObject)_channel).Opened -= value; }
System\ServiceModel\Dispatcher\DuplexChannelBinder.cs (2)
1122add { _innerChannel.Opened += value; } 1123remove { _innerChannel.Opened -= value; }
UnitTests.Common (1)
MockCommunicationObject.cs (1)
306mco.Opened += (s, ea) => eventsFired.Add("Opened");