26 references to WebException
Microsoft.Extensions.Diagnostics.ExceptionSummarization.Tests (9)
ExceptionSummarizerTests.cs (7)
46var exception = new WebException("test", WebExceptionStatus.RequestCanceled); 64var exception = new WebException("test", WebExceptionStatus.RequestCanceled); 83var exception = new Exception("test", new WebException("Error", (WebExceptionStatus)30)); 104var exception = new WebException("test", WebExceptionStatus.RequestCanceled); 122var exception = new WebException("test", WebExceptionStatus.RequestCanceled); 142var exception = new WebException("test", WebExceptionStatus.ConnectFailure); 161var exception = new Exception("test", new WebException("test", WebExceptionStatus.RequestCanceled));
HttpExceptionSummaryProviderTests.cs (2)
71Exception exception = new WebException("test", webExceptionStatus); 82var exception = new WebException("test", (WebExceptionStatus)12345);
PresentationCore (2)
MS\Internal\WpfWebRequestHelper.cs (1)
77throw new WebException(requestUri.ToString(), WebExceptionStatus.RequestCanceled);
System\IO\Packaging\PackWebResponse.cs (1)
885_responseException = new WebException(SR.Format(SR.WebRequestTimeout, null), WebExceptionStatus.Timeout);
System.Net.Requests (13)
System\Net\FileWebRequest.cs (4)
112new WebException(SR.Format(SR.net_requestaborted, WebExceptionStatus.RequestCanceled), WebExceptionStatus.RequestCanceled); 261throw new WebException(SR.net_webstatus_Timeout, WebExceptionStatus.Timeout); 277throw new WebException(SR.net_webstatus_Timeout, WebExceptionStatus.Timeout); 468throw new WebException(SR.Format(SR.net_requestaborted, WebExceptionStatus.RequestCanceled), WebExceptionStatus.RequestCanceled);
System\Net\FtpControlStream.cs (3)
115throw new WebException(SR.net_ftp_active_address_different, WebExceptionStatus.ProtocolError); 261throw new WebException(SR.net_InvalidStatusCode, WebExceptionStatus.ProtocolError); 748throw new WebException(SR.net_ftp_active_address_different, WebExceptionStatus.ProtocolError);
System\Net\FtpWebRequest.cs (3)
922SetException(ExceptionDispatchInfo.SetCurrentStackTrace(new WebException(SR.net_timeout, WebExceptionStatus.Timeout))); 941return new WebException(SR.net_webstatus_NameResolutionFailure, WebExceptionStatus.NameResolutionFailure); 945return new WebException(SR.net_webstatus_ConnectFailure, WebExceptionStatus.ConnectFailure);
System\Net\HttpWebRequest.cs (3)
1340throw new WebException(SR.CacheEntryNotFound, WebExceptionStatus.CacheEntryNotFound); 1396throw new WebException(SR.CacheEntryNotFound, WebExceptionStatus.CacheEntryNotFound); 1596throw new WebException(SR.net_reqaborted, WebExceptionStatus.RequestCanceled);
System.Net.WebClient (2)
System\Net\WebClient.cs (2)
839throw new WebException(SR.net_webstatus_MessageLengthLimitExceeded, WebExceptionStatus.MessageLengthLimitExceeded); 886throw new WebException(SR.net_webstatus_MessageLengthLimitExceeded, WebExceptionStatus.MessageLengthLimitExceeded);