6 implementations of Opening
System.ServiceModel.Federation (3)
System\IdentityModel\Security\WrapperSecurityCommunicationObject.cs (1)
349public event EventHandler Opening
System\ServiceModel\Federation\WSTrustChannel.cs (1)
197event EventHandler ICommunicationObject.Opening
System\ServiceModel\Federation\WSTrustChannelSecurityTokenProvider.cs (1)
512event EventHandler ICommunicationObject.Opening
System.ServiceModel.Primitives (3)
netstandard.cs (3)
488event System.EventHandler System.ServiceModel.ICommunicationObject.Opening { add { } remove { } } 531event System.EventHandler System.ServiceModel.ICommunicationObject.Opening { add { } remove { } } 1387public event System.EventHandler Opening { add { } remove { } }
7 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; }
UnitTests.Common (1)
MockCommunicationObject.cs (1)
305mco.Opening += (s, ea) => eventsFired.Add("Opening");