System\ServiceModel\Channels\HttpChannelHelpers.cs (6)
3397result = uri.AbsoluteUri;
3525throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new EndpointNotFoundException(SR.GetString(SR.EndpointNotFound, request.RequestUri.AbsoluteUri), webException));
3530throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new ServerTooBusyException(SR.GetString(SR.HttpServerTooBusy, request.RequestUri.AbsoluteUri), webException));
3580throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new EndpointNotFoundException(SR.GetString(SR.EndpointNotFound, request.RequestUri.AbsoluteUri), webException));
3595return new EndpointNotFoundException(SR.GetString(SR.EndpointNotFound, request.RequestUri.AbsoluteUri), webException);
3711return new EndpointNotFoundException(SR.GetString(SR.EndpointNotFound, request.RequestUri.AbsoluteUri), webException);
System\ServiceModel\Channels\PipeConnection.cs (9)
1647SR.GetString(SR.PipeConnectFailed, remoteUri.AbsoluteUri), innerException);
1746SR.EndpointNotFound, uri.AbsoluteUri), exception));
1757new EndpointNotFoundException(SR.GetString(SR.EndpointNotFound, uri.AbsoluteUri),
1758new PipeException(SR.GetString(SR.PipeEndpointNotFound, uri.AbsoluteUri))));
1840string endpoint = remoteUri.AbsoluteUri;
2091pipeUri.AbsoluteUri, PipeError.GetErrorString(error)), error);
2572pipeUri.AbsoluteUri, PipeError.GetErrorString(error)), error);
2713Exception innerException = new PipeException(SR.GetString(SR.PipeNameInUse, pipeUri.AbsoluteUri), error);
2721return new AddressAccessDeniedException(SR.GetString(SR.PipeNameCanNotBeAccessed2, pipeUri.AbsoluteUri), innerException);
System\ServiceModel\Channels\SocketConnection.cs (5)
1598return new EndpointNotFoundException(SR.GetString(SR.TcpConnectError, remoteUri.AbsoluteUri, socketException.ErrorCode, socketException.Message), innerException);
1602return new EndpointNotFoundException(SR.GetString(SR.TcpConnectErrorWithTimeSpan, remoteUri.AbsoluteUri, socketException.ErrorCode, socketException.Message, timeSpent), innerException);
1619return new CommunicationException(SR.GetString(SR.TcpConnectError, remoteUri.AbsoluteUri, socketException.ErrorCode, socketException.Message), innerException);
1623return new CommunicationException(SR.GetString(SR.TcpConnectErrorWithTimeSpan, remoteUri.AbsoluteUri, socketException.ErrorCode, socketException.Message, timeSpent), innerException);
1677SR.GetString(SR.TcpConnectingToViaTimedOut, uri.AbsoluteUri, timeout.ToString(),