System.Net.Connection.HandleConnectStreamException C# (CSharp) Method

HandleConnectStreamException() private method

private HandleConnectStreamException ( bool writeDone, bool readDone, WebExceptionStatus webExceptionStatus, ConnectionReturnResult &returnResult, Exception e ) : void
writeDone bool
readDone bool
webExceptionStatus WebExceptionStatus
returnResult ConnectionReturnResult
e System.Exception
return void
        internal void HandleConnectStreamException(bool writeDone, bool readDone, WebExceptionStatus webExceptionStatus, ref ConnectionReturnResult returnResult, Exception e)
        {
            if (m_InnerException == null)
            {
                m_InnerException = e;
                if (e is ObjectDisposedException)
                {
                    webExceptionStatus = WebExceptionStatus.RequestCanceled;
                }
            }
            HandleError(writeDone, readDone, webExceptionStatus, ref returnResult);
        }
        //