WebException 본문으로 전체 응답을 얻는 방법은 무엇입니까?
WebException에서 GetResponse의 본문을 볼 수 없습니다. 이것은 C #의 내 코드입니다. try { return GetResponse(url + "." + ext.ToString(), method, headers, bodyParams); } catch (WebException ex) { switch (ex.Status) { case WebExceptionStatus.ConnectFailure: throw new ConnectionException(); case WebExceptionStatus.Timeout: throw new RequestTimeRanOutException(); case WebExceptionStatus.NameResolutionFailure: throw new ConnectionException(); case WebExceptionStatus.ProtocolError: if (ex.Message == …