System\ServiceModel\Channels\SocketConnection.cs (18)
49private TransferOperation _timeoutErrorTransferOperation;
73Abort(null, TransferOperation.Undefined);
76private void Abort(string timeoutErrorString, TransferOperation transferOperation)
82private void Abort(TraceEventType traceEventType, string timeoutErrorString, TransferOperation transferOperation)
208Exception exceptionToThrow = ConvertObjectDisposedException(objectDisposedException, TransferOperation.Read);
287Exception exceptionToThrow = ConvertObjectDisposedException(objectDisposedException, TransferOperation.Write);
396Exception exceptionToThrow = ConvertObjectDisposedException(objectDisposedException, TransferOperation.Undefined);
479GetType().ToString(), SR.SocketConnectionDisposed), TransferOperation.Undefined));
489GetType().ToString(), SR.SocketConnectionDisposed), TransferOperation.Undefined));
604thisPtr.Abort(SR.Format(SR.SocketAbortedReceiveTimedOut, thisPtr._asyncReceiveTimeout), TransferOperation.Read);
613thisPtr.Abort(TraceEventType.Warning, SR.Format(SR.SocketAbortedSendTimedOut, thisPtr._asyncSendTimeout), TransferOperation.Write);
617private Exception ConvertObjectDisposedException(ObjectDisposedException originalException, TransferOperation transferOperation)
636TransferOperation.Write, _aborted, _timeoutErrorString, _timeoutErrorTransferOperation, this, remainingTime);
642TransferOperation.Read, _aborted, _timeoutErrorString, _timeoutErrorTransferOperation, this, remainingTime);
646TransferOperation transferOperation, bool aborted, string timeoutErrorString, TransferOperation timeoutErrorTransferOperation,
701TransferOperation transferOperation, string timeoutErrorString, TransferOperation timeoutErrorTransferOperation)