5 references to RegexMatchTimeoutException
System.Text.RegularExpressions (5)
System\Text\RegularExpressions\RegexMatchTimeoutException.cs (3)
161/// <see cref="RegexMatchTimeoutException(string, string, TimeSpan)"/> constructor. If this 182/// <see cref="RegexMatchTimeoutException(string, string, TimeSpan)"/> constructor. If the 193/// <see cref="RegexMatchTimeoutException(string, string, TimeSpan)"/> constructor. If the
System\Text\RegularExpressions\RegexRunner.cs (1)
367void 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));