15 references to CommunicationException
System.ServiceModel.Federation (1)
System\Runtime\OperationWithTimeoutAsyncResult.cs (1)
194
throw new
CommunicationException
(InternalSR.AsyncCallbackThrewException, e);
System.ServiceModel.NetFramingBase (5)
System\ServiceModel\Channels\Connection.cs (2)
356
return new
CommunicationException
(ioException.InnerException.Message, ioException);
360
return new
CommunicationException
(SR.StreamError, ioException);
System\ServiceModel\Channels\FramingDecoders.cs (3)
293
return new
CommunicationException
(inner.Message, inner);
306
return new
CommunicationException
(inner.Message, inner);
311
return new
CommunicationException
(inner.Message, inner);
System.ServiceModel.NetNamedPipe (4)
System\ServiceModel\AddressAccessDeniedException.cs (1)
13
public AddressAccessDeniedException(string message, Exception innerException) :
base
(message, innerException) { }
System\ServiceModel\Channels\PipeConnection.cs (2)
101
return new
CommunicationException
(_timeoutErrorString, pipeException);
110
return new
CommunicationException
(exceptionMessage, pipeException);
System\ServiceModel\Channels\PipeConnectionInitiator.cs (1)
33
return new
CommunicationException
(
System.ServiceModel.UnixDomainSocket (5)
System\ServiceModel\Channels\SocketConnection.cs (5)
677
CommunicationException communicationException = new
CommunicationException
(SR.Format(SR.UDSConnectionResetError, timeout), originalException);
694
CommunicationException communicationException = new
CommunicationException
(SR.Format(SR.UDSTransferError, socketException.ErrorCode, socketException.Message), originalException);
714
return new
CommunicationException
(timeoutErrorString, originalException);
828
return new
CommunicationException
(SR.Format(SR.UDSConnectError, remoteUri.AbsoluteUri, (int)socketException.SocketErrorCode, socketException.Message), innerException);
832
return new
CommunicationException
(SR.Format(SR.UDSConnectErrorWithTimeSpan, remoteUri.AbsoluteUri, (int)socketException.SocketErrorCode, socketException.Message, timeSpent), innerException);