Can no longer get response from HttpWebRequest when 400 returned at Unity 2020,2021

I recently upgraded Unity Version to 2020.3.14f1
then my web request routine cannot get webrequest’s response body when request code is 400 (BadRequest)

It was working fine with Unity 2018,Unity 2019.
but not working with Unity 2020.3.0f1,2020.3.14f1,2021.1.15f1

It crashed when I read WebException’s response stream.

 IAsyncResult asyncResult = httpWebRequest.BeginGetResponse( new AsyncCallback( (IAsyncResult iarres) => {
                string resultText = "";
                System.Net.HttpStatusCode code = 0;
                try
                {                 
                    using ( System.Net.HttpWebResponse response = (System.Net.HttpWebResponse)httpWebRequest.EndGetResponse( iarres ) )
                    {
                        using ( System.IO.StreamReader streamReader = new System.IO.StreamReader( response.GetResponseStream() ) )
                        {
                            resultText = streamReader.ReadToEnd();
                        }
                        code = response.StatusCode;              
                        response.Close();
                    }
                }
                catch ( WebException ex )
                {                 
                    if ( ex.Status == WebExceptionStatus.ProtocolError )
                    {              
                        using ( var stream = ex.Response.GetResponseStream() )
                        {                  
                            using ( System.IO.StreamReader streamReader = new StreamReader( stream ) )
                            {
                                resultText = streamReader.ReadToEnd();  // Crashed at this line.                           
                            }
                            code = ((HttpWebResponse)ex.Response).StatusCode;                                                    
                            ex.Response.Close();
                        }                     
                        return;
                    }
                 
                }
}

It’s almost same issue described at below links

https://stackoverflow.com/questions/55463460/can-no-longer-get-response-from-web-request-when-400-returne

https://github.com/mono/mono/issues/10645

Any help will be appreciated!

Thanks!

Networking, UnityWebRequest, WWW, Postman, curl, WebAPI, etc:

And setting up a proxy can be very helpful too, in order to compare traffic:

I tried postman and curl and all these worked well.

Anyway Thanks for response!