55 references to CommunicationException
dotnet-svcutil-lib (55)
FrameworkFork\System.ServiceModel\System\ServiceModel\ActionNotSupportedException.cs (1)
14public ActionNotSupportedException(string message, Exception innerException) : base(message, innerException) { }
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\BinaryMessageEncoder.cs (1)
475throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new CommunicationException(message, inner));
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\ClientWebSocketTransportDuplexSessionChannel.cs (3)
159throw FxTrace.Exception.AsError(new CommunicationException(string.Format(SRServiceModel.WebSocketVersionMismatchFromServer, ""), ex)); 161throw FxTrace.Exception.AsError(new CommunicationException(string.Format(SRServiceModel.WebSocketSubProtocolMismatchFromServer, ""), ex)); 166throw FxTrace.Exception.AsError(new CommunicationException(ex.Message, ex));
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\Connection.cs (2)
528return new CommunicationException(ioException.InnerException.Message, ioException); 532return new CommunicationException(SRServiceModel.StreamError, ioException);
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\FramingDecoders.cs (3)
284return new CommunicationException(inner.Message, inner); 297return new CommunicationException(inner.Message, inner); 302return new CommunicationException(inner.Message, inner);
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\HttpChannelHelpers.cs (3)
122throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new CommunicationException(requestException.Message, requestException)); 137return new CommunicationException(string.Format(SRServiceModel.HttpReceiveFailure, request.RequestUri), exception); 143return new CommunicationException(exception.Message, exception);
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\HttpResponseMessageHelper.cs (1)
255throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new CommunicationException(message, inner));
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\MaxMessageSizeStream.cs (2)
74return new CommunicationException(message, inner); 87return new CommunicationException(message, inner);
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\Message.cs (3)
1252new CommunicationException(versionMismatchException.Message, versionMismatchException), 1454new CommunicationException(versionMismatchException.Message, versionMismatchException), 1834throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new CommunicationException(message, inner));
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\MessageFault.cs (3)
91throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new CommunicationException( 96throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new CommunicationException( 101throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new CommunicationException(
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\SocketConnection.cs (5)
236CommunicationException communicationException = new CommunicationException(string.Format(SRServiceModel.TcpConnectionResetError, timeout), originalException); 253CommunicationException communicationException = new CommunicationException(string.Format(SRServiceModel.TcpTransferError, (int)socketException.SocketErrorCode, socketException.Message), originalException); 270return new CommunicationException(timeoutErrorString, originalException); 473return new CommunicationException(string.Format(SRServiceModel.TcpConnectError, remoteUri.AbsoluteUri, (int)socketException.SocketErrorCode, socketException.Message), innerException); 477return new CommunicationException(string.Format(SRServiceModel.TcpConnectErrorWithTimeSpan, remoteUri.AbsoluteUri, (int)socketException.SocketErrorCode, socketException.Message, timeSpent), innerException);
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\WebSocketHelper.cs (1)
186return new CommunicationException(exception.Message, exception);
FrameworkFork\System.ServiceModel\System\ServiceModel\ChannelTerminatedException.cs (1)
11public ChannelTerminatedException(string message, Exception innerException) : base(message, innerException) { }
FrameworkFork\System.ServiceModel\System\ServiceModel\CommunicationObjectAbortedException.cs (1)
11public CommunicationObjectAbortedException(string message, Exception innerException) : base(message, innerException) { }
FrameworkFork\System.ServiceModel\System\ServiceModel\CommunicationObjectFaultedException.cs (1)
11public CommunicationObjectFaultedException(string message, Exception innerException) : base(message, innerException) { }
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\DataContractSerializerOperationFormatter.cs (1)
239throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new CommunicationException(
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\OperationFormatter.cs (4)
143throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new CommunicationException( 148throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new CommunicationException( 153throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new CommunicationException( 219throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new CommunicationException(
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\PrimitiveOperationFormatter.cs (4)
394throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new CommunicationException( 399throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new CommunicationException( 404throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new CommunicationException( 447throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new CommunicationException(
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\XmlSerializerOperationFormatter.cs (4)
126throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new CommunicationException( 239throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new CommunicationException( 300throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new CommunicationException( 386throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new CommunicationException(
FrameworkFork\System.ServiceModel\System\ServiceModel\EndpointNotFoundException.cs (1)
11public EndpointNotFoundException(string message, Exception innerException) : base(message, innerException) { }
FrameworkFork\System.ServiceModel\System\ServiceModel\FaultException.cs (2)
70: base(reason, innerException) 86: base(FaultException.GetSafeReasonText(reason), innerException)
FrameworkFork\System.ServiceModel\System\ServiceModel\ProtocolException.cs (1)
14public ProtocolException(string message, Exception innerException) : base(message, innerException) { }
FrameworkFork\System.ServiceModel\System\ServiceModel\Security\MessageSecurityException.cs (2)
25: base(message, innerException) 30: base(message, innerException)
FrameworkFork\System.ServiceModel\System\ServiceModel\Security\SecurityAccessDeniedException.cs (1)
15: base(message, innerException)
FrameworkFork\System.ServiceModel\System\ServiceModel\Security\SecurityNegotiationException.cs (1)
20: base(message, innerException)
FrameworkFork\System.ServiceModel\System\ServiceModel\Security\TimeBoundedCache.cs (1)
412throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new CommunicationException(message, inner));
FrameworkFork\System.ServiceModel\System\ServiceModel\ServerTooBusyException.cs (1)
14public ServerTooBusyException(string message, Exception innerException) : base(message, innerException) { }
FrameworkFork\System.ServiceModel\System\ServiceModel\ServiceActivationException.cs (1)
14public ServiceActivationException(string message, Exception innerException) : base(message, innerException) { }