1 write to runregex
System.Text.RegularExpressions (1)
System\Text\RegularExpressions\RegexRunner.cs (1)
281runregex = regex;
8 references to runregex
System.Text.RegularExpressions (8)
System\Text\RegularExpressions\RegexRunner.cs (8)
159InternalScan(runregex!, beginning, beginning + text.Length); 291runmatch = runregex!.caps is null ? 292new Match(runregex, runregex.capsize, runtext, text.Length) : 293new MatchSparse(runregex, runregex.caps, runregex.capsize, runtext, text.Length); 364void ThrowRegexTimeout() => throw new RegexMatchTimeoutException(runtext ?? string.Empty, runregex!.pattern!, TimeSpan.FromMilliseconds(_timeout));