9 instantiations of CommunicationObjectAbortedException
System.ServiceModel.NetFramingBase (3)
System\ServiceModel\Channels\Connection.cs (1)
352return new CommunicationObjectAbortedException(ioException.InnerException.Message, ioException);
System\ServiceModel\Channels\ConnectionPoolHelper.cs (1)
148new CommunicationObjectAbortedException(
System\ServiceModel\Channels\FramingChannels.cs (1)
328new CommunicationObjectAbortedException(SR.Format(SR.DuplexChannelAbortedDuringOpen, Via)));
System.ServiceModel.NetNamedPipe (1)
System\ServiceModel\Channels\PipeConnection.cs (1)
106return new CommunicationObjectAbortedException(exceptionMessage, pipeException);
System.ServiceModel.UnixDomainSocket (5)
System\ServiceModel\Channels\SocketConnection.cs (5)
625return new CommunicationObjectAbortedException(SR.SocketConnectionDisposed, originalException); 651return new CommunicationObjectAbortedException(socketException.Message, socketException); 673return new CommunicationObjectAbortedException(SR.UDSLocalConnectionAborted, originalException); 690return new CommunicationObjectAbortedException(SR.Format(SR.UDSTransferError, socketException.ErrorCode, socketException.Message), originalException); 794return new CommunicationObjectAbortedException(socketException.Message, socketException);
2 references to CommunicationObjectAbortedException
System.ServiceModel (1)
netstandard.cs (1)
105[assembly: TypeForwardedTo(typeof(CommunicationObjectAbortedException))]
System.ServiceModel.NetFramingBase (1)
System\ServiceModel\Channels\Connection.cs (1)
350else if (ioException.InnerException is CommunicationObjectAbortedException)