System\ServiceModel\Channels\SocketConnection.cs (25)
72TransferOperation timeoutErrorTransferOperation;
162Exception exceptionToThrow = ConvertObjectDisposedException(objectDisposedException, TransferOperation.Undefined);
252thisPtr.Abort(SR.GetString(SR.SocketAbortedReceiveTimedOut, thisPtr.asyncReceiveTimeout), TransferOperation.Read);
259SR.GetString(SR.SocketAbortedSendTimedOut, thisPtr.asyncSendTimeout), TransferOperation.Write);
279Abort(null, TransferOperation.Undefined);
282void Abort(string timeoutErrorString, TransferOperation transferOperation)
297Abort(traceEventType, null, TransferOperation.Undefined);
300void Abort(TraceEventType traceEventType, string timeoutErrorString, TransferOperation transferOperation)
574Exception exceptionToThrow = ConvertObjectDisposedException(objectDisposedException, TransferOperation.Undefined);
592this.GetType().ToString(), SR.GetString(SR.SocketConnectionDisposed)), TransferOperation.Undefined), ExceptionEventType);
602this.GetType().ToString(), SR.GetString(SR.SocketConnectionDisposed)), TransferOperation.Undefined), ExceptionEventType);
684TransferOperation.Write, this.aborted, this.timeoutErrorString, this.timeoutErrorTransferOperation, this, remainingTime);
690TransferOperation.Read, this.aborted, this.timeoutErrorString, this.timeoutErrorTransferOperation, this, remainingTime);
696TransferOperation.Undefined, false, null, TransferOperation.Undefined, null, TimeSpan.MaxValue);
699Exception ConvertObjectDisposedException(ObjectDisposedException originalException, TransferOperation transferOperation)
716TransferOperation transferOperation, bool aborted, string timeoutErrorString, TransferOperation timeoutErrorTransferOperation,
805TransferOperation transferOperation, string timeoutErrorString, TransferOperation timeoutErrorTransferOperation)
894Exception exceptionToThrow = ConvertObjectDisposedException(objectDisposedException, TransferOperation.Write);
1053Exception exceptionToThrow = ConvertObjectDisposedException(objectDisposedException, TransferOperation.Write);
1117Exception exceptionToThrow = ConvertObjectDisposedException(objectDisposedException, TransferOperation.Read);
1214Exception exceptionToThrow = ConvertObjectDisposedException(objectDisposedException, TransferOperation.Read);
1283this.asyncReadException = ConvertObjectDisposedException(objectDisposedException, TransferOperation.Read);