8 references to TimeoutException
System (1)
regex\System\Text\RegularExpressions\RegexMatchTimeoutException.cs (1)
85: base(message, inner) {
System.ServiceModel (7)
System\ServiceModel\Channels\Connection.cs (1)
630return new TimeoutException(ioException.InnerException.Message, ioException);
System\ServiceModel\Channels\HttpChannelHelpers.cs (3)
3548throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new TimeoutException(webException.Message, webException)); 3601return new TimeoutException(CreateRequestTimedOutMessage(request), webException); 3658return new TimeoutException(CreateRequestTimedOutMessage(request), webException);
System\ServiceModel\Channels\PipeConnection.cs (1)
213return new TimeoutException(this.timeoutErrorString, pipeException);
System\ServiceModel\Channels\SocketConnection.cs (1)
814return new TimeoutException(timeoutErrorString, originalException);
System\ServiceModel\Channels\WebSocketHelper.cs (1)
359return innerException == null ? new TimeoutException(errorMsg) : new TimeoutException(errorMsg, innerException);