9 implementations of Opening
System.ServiceModel.Federation (2)
System\ServiceModel\Federation\WSTrustChannel.cs (1)
197event EventHandler ICommunicationObject.Opening
System\ServiceModel\Federation\WSTrustChannelSecurityTokenProvider.cs (1)
530event EventHandler ICommunicationObject.Opening
System.ServiceModel.Primitives (7)
System\ServiceModel\Channels\CommunicationObject.cs (1)
153public event EventHandler Opening;
System\ServiceModel\Channels\ServiceChannelProxy.cs (1)
567event EventHandler ICommunicationObject.Opening
System\ServiceModel\ClientBase.cs (2)
582event EventHandler ICommunicationObject.Opening 1067event EventHandler ICommunicationObject.Opening
System\ServiceModel\Dispatcher\DuplexChannelBinder.cs (1)
1126public event EventHandler Opening
System\ServiceModel\Security\WrapperSecurityCommunicationObject.cs (2)
168public event EventHandler Opening 330public event EventHandler Opening
13 references to Opening
Client.ClientBase.IntegrationTests (2)
ClientBaseTestHelpers.cs (2)
53co.Opening += opening; 61co.Opening -= opening;
Client.ExpectedExceptions.IntegrationTests (2)
ExpectedExceptionTests.4.0.0.cs (1)
264((ICommunicationObject)serviceProxy).Opening += (s, e) =>
ExpectedExceptionTests.4.1.0.cs (1)
514((ICommunicationObject)serviceProxy).Opening += (s, e) =>
System.ServiceModel.Federation (2)
System\ServiceModel\Federation\WSTrustChannel.cs (2)
199add { RequestChannel.Opening += value; } 200remove { RequestChannel.Opening -= value; }
System.ServiceModel.Primitives (6)
System\ServiceModel\ClientBase.cs (4)
586InnerChannel.Opening += value; 590InnerChannel.Opening -= value; 1069add { ((ICommunicationObject)_channel).Opening += value; } 1070remove { ((ICommunicationObject)_channel).Opening -= value; }
System\ServiceModel\Dispatcher\DuplexChannelBinder.cs (2)
1128add { _innerChannel.Opening += value; } 1129remove { _innerChannel.Opening -= value; }
UnitTests.Common (1)
MockCommunicationObject.cs (1)
305mco.Opening += (s, ea) => eventsFired.Add("Opening");