14 instantiations of CommunicationObjectAbortedException
dotnet-svcutil-lib (14)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\ClientWebSocketTransportDuplexSessionChannel.cs (1)
100CommunicationObjectAbortedException communicationObjectAbortedException = new CommunicationObjectAbortedException(
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\CommunicationObject.cs (1)
254return new CommunicationObjectAbortedException(string.Format(SRServiceModel.CommunicationObjectAborted1, this.GetCommunicationObjectType().ToString()));
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\Connection.cs (1)
524return new CommunicationObjectAbortedException(ioException.InnerException.Message, ioException);
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\ConnectionPoolHelper.cs (1)
232new CommunicationObjectAbortedException(
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\FramingChannels.cs (1)
395new CommunicationObjectAbortedException(string.Format(SRServiceModel.DuplexChannelAbortedDuringOpen, this.Via)));
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\RequestContextBase.cs (1)
195throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new CommunicationObjectAbortedException(SRServiceModel.RequestContextAborted));
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\ServiceChannel.cs (1)
1085Exception error = new CommunicationObjectAbortedException(text);
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\SocketConnection.cs (5)
196return new CommunicationObjectAbortedException(SRServiceModel.SocketConnectionDisposed, originalException); 210return new CommunicationObjectAbortedException(socketException.Message, socketException); 232return new CommunicationObjectAbortedException(SRServiceModel.TcpLocalConnectionAborted, originalException); 249return new CommunicationObjectAbortedException(string.Format(SRServiceModel.TcpTransferError, (int)socketException.SocketErrorCode, socketException.Message), originalException); 439return new CommunicationObjectAbortedException(socketException.Message, socketException);
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\WebSocketHelper.cs (2)
140CommunicationObjectAbortedException communicationObjectAbortedException = new CommunicationObjectAbortedException(ex.Message, ex); 183return new CommunicationObjectAbortedException(exception.Message, exception);
7 references to CommunicationObjectAbortedException
dotnet-svcutil-lib (7)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\ClientWebSocketTransportDuplexSessionChannel.cs (1)
100CommunicationObjectAbortedException communicationObjectAbortedException = new CommunicationObjectAbortedException(
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\Connection.cs (1)
522else if (ioException.InnerException is CommunicationObjectAbortedException)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\WebSocketHelper.cs (2)
140CommunicationObjectAbortedException communicationObjectAbortedException = new CommunicationObjectAbortedException(ex.Message, ex); 159if (communicationException is CommunicationObjectAbortedException)
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\ErrorHandlingReceiver.cs (3)
62catch (CommunicationObjectAbortedException) 102catch (CommunicationObjectAbortedException) 145catch (CommunicationObjectAbortedException)