15 references to FullMatchRequired
System.Text.RegularExpressions (15)
System\Text\RegularExpressions\Match.cs (2)
103r.RunSingleMatch(RegexRunnerMode.FullMatchRequired, Length, Text, _textbeg, _textend - _textbeg, _textpos)! : 290if (mode == RegexRunnerMode.FullMatchRequired)
System\Text\RegularExpressions\MatchCollection.cs (1)
92match = _regex.RunSingleMatch(RegexRunnerMode.FullMatchRequired, _prevlen, _input, 0, _input.Length, _startat)!;
System\Text\RegularExpressions\Regex.Match.cs (3)
145return RunSingleMatch(RegexRunnerMode.FullMatchRequired, -1, input, 0, input.Length, RightToLeft ? input.Length : 0)!; 159return RunSingleMatch(RegexRunnerMode.FullMatchRequired, -1, input, 0, input.Length, startat)!; 172return RunSingleMatch(RegexRunnerMode.FullMatchRequired, -1, input, beginning, length, RightToLeft ? beginning + length : beginning)!;
System\Text\RegularExpressions\Regex.Replace.cs (2)
185}, RegexRunnerMode.FullMatchRequired, reuseMatchObject: false); 204}, RegexRunnerMode.FullMatchRequired, reuseMatchObject: false);
System\Text\RegularExpressions\Regex.Split.cs (2)
108}, RegexRunnerMode.FullMatchRequired, reuseMatchObject: true); 136}, 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)
175RegexRunnerMode 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)