7 instantiations of EndpointNotFoundException
System.ServiceModel.Federation (1)
System\ServiceModel\Security\SecurityUtils.cs (1)
28throw new EndpointNotFoundException(SR.Format(SR.SecurityEndpointNotFound, target), faultException);
System.ServiceModel.NetFramingBase (2)
System\ServiceModel\Channels\FramingDecoders.cs (2)
272return new EndpointNotFoundException(SR.Format(SR.EndpointNotFound, via)); 288return new EndpointNotFoundException(SR.Format(SR.Sharing_EndpointUnavailable, via));
System.ServiceModel.NetNamedPipe (2)
System\ServiceModel\Channels\PipeConnectionInitiator.cs (2)
125throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new EndpointNotFoundException(SR.Format( 137new EndpointNotFoundException(SR.Format(SR.EndpointNotFound, uri.AbsoluteUri),
System.ServiceModel.UnixDomainSocket (2)
System\ServiceModel\Channels\SocketConnection.cs (2)
807return new EndpointNotFoundException(SR.Format(SR.UDSConnectError, remoteUri.AbsoluteUri, (int)socketException.SocketErrorCode, socketException.Message), innerException); 811return new EndpointNotFoundException(SR.Format(SR.UDSConnectErrorWithTimeSpan, remoteUri.AbsoluteUri, (int)socketException.SocketErrorCode, socketException.Message, timeSpent), innerException);
6 references to EndpointNotFoundException
Binding.UDS.IntegrationTests (1)
UDSBindingTests.cs (1)
197Assert.Throws<EndpointNotFoundException>(() => ((IChannel)serviceProxy).Open());
Client.ExpectedExceptions.IntegrationTests (4)
ExpectedExceptionTests.4.1.0.cs (4)
28EndpointNotFoundException exception = Assert.Throws<EndpointNotFoundException>(() => 160EndpointNotFoundException exception = Assert.Throws<EndpointNotFoundException>(() =>
System.ServiceModel (1)
netstandard.cs (1)
153[assembly: TypeForwardedTo(typeof(EndpointNotFoundException))]