15 references to FullMatchRequired
System.Text.RegularExpressions (15)
System\Text\RegularExpressions\Match.cs (2)
166r.RunSingleMatch(RegexRunnerMode.FullMatchRequired, Length, Text, _textbeg, _textend - _textbeg, _textpos)! : 376if (mode == RegexRunnerMode.FullMatchRequired)
System\Text\RegularExpressions\MatchCollection.cs (1)
205match = _regex.RunSingleMatch(RegexRunnerMode.FullMatchRequired, _prevlen, _input, 0, _input.Length, _startat)!;
System\Text\RegularExpressions\Regex.Match.cs (3)
430return RunSingleMatch(RegexRunnerMode.FullMatchRequired, -1, input, 0, input.Length, RightToLeft ? input.Length : 0)!; 457return RunSingleMatch(RegexRunnerMode.FullMatchRequired, -1, input, 0, input.Length, startat)!; 511return RunSingleMatch(RegexRunnerMode.FullMatchRequired, -1, input, beginning, length, RightToLeft ? beginning + length : beginning)!;
System\Text\RegularExpressions\Regex.Replace.cs (2)
640}, RegexRunnerMode.FullMatchRequired, reuseMatchObject: false); 659}, RegexRunnerMode.FullMatchRequired, reuseMatchObject: false);
System\Text\RegularExpressions\Regex.Split.cs (2)
314}, RegexRunnerMode.FullMatchRequired, reuseMatchObject: true); 342}, RegexRunnerMode.FullMatchRequired, reuseMatchObject: true);
System\Text\RegularExpressions\RegexReplacement.cs (2)
308}, _hasBackreferences ? RegexRunnerMode.FullMatchRequired : RegexRunnerMode.BoundsRequired, reuseMatchObject: true); 328}, _hasBackreferences ? RegexRunnerMode.FullMatchRequired : RegexRunnerMode.BoundsRequired, reuseMatchObject: true);
System\Text\RegularExpressions\RegexRunner.cs (1)
177RegexRunnerMode mode = quick ? RegexRunnerMode.ExistenceRequired : RegexRunnerMode.FullMatchRequired;
System\Text\RegularExpressions\Symbolic\SymbolicRegexMatcher.cs (1)
471if (!HasSubcaptures || mode < RegexRunnerMode.FullMatchRequired)
System\Text\RegularExpressions\Symbolic\SymbolicRegexRunnerFactory.cs (1)
84if (_mode == RegexRunnerMode.FullMatchRequired && pos.CaptureStarts != null)