2 instantiations of RegexMatchTimeoutException
System.Text.RegularExpressions (2)
System\Text\RegularExpressions\RegexRunner.cs (1)
364void ThrowRegexTimeout() => throw new RegexMatchTimeoutException(runtext ?? string.Empty, runregex!.pattern!, TimeSpan.FromMilliseconds(_timeout));
System\Text\RegularExpressions\Symbolic\SymbolicRegexMatcher.cs (1)
346void ThrowRegexTimeout() => throw new RegexMatchTimeoutException(string.Empty, string.Empty, TimeSpan.FromMilliseconds(_timeout));
9 references to RegexMatchTimeoutException
Microsoft.Build (1)
BackEnd\Components\SdkResolution\SdkResolverService.cs (1)
188catch (RegexMatchTimeoutException ex)
netstandard (1)
netstandard.cs (1)
2053[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Text.RegularExpressions.RegexMatchTimeoutException))]
System (1)
src\libraries\shims\System\ref\System.cs (1)
909[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Text.RegularExpressions.RegexMatchTimeoutException))]
System.Text.RegularExpressions (6)
System\Text\RegularExpressions\Regex.Match.cs (5)
24/// <exception cref="RegexMatchTimeoutException">A time-out occurred.</exception> 45/// <exception cref="RegexMatchTimeoutException">A time-out occurred.</exception> 63/// <exception cref="RegexMatchTimeoutException">A time-out occurred.</exception> 102/// <exception cref="RegexMatchTimeoutException">A time-out occurred.</exception> 112/// <exception cref="RegexMatchTimeoutException">A time-out occurred.</exception>
System\Text\RegularExpressions\Regex.Timeout.cs (1)
52/// operation before the operation times out. The regular expression engine throws a <see cref="RegexMatchTimeoutException"/> exception during