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