14 references to InfiniteMatchTimeout
System.Text.RegularExpressions (14)
System\Text\RegularExpressions\Regex.Count.cs (2)
83
/// <param name="matchTimeout">A time-out interval, or <see cref="
InfiniteMatchTimeout
"/> to indicate that the method should not time out.</param>
119
/// <param name="matchTimeout">A time-out interval, or <see cref="
InfiniteMatchTimeout
"/> to indicate that the method should not time out.</param>
System\Text\RegularExpressions\Regex.cs (1)
111
factory = Compile(pattern, tree, options, matchTimeout !=
InfiniteMatchTimeout
);
System\Text\RegularExpressions\Regex.EnumerateMatches.cs (1)
58
/// <param name="matchTimeout">A time-out interval, or <see cref="
InfiniteMatchTimeout
"/> to indicate that the method should not time out.</param>
System\Text\RegularExpressions\Regex.EnumerateSplits.cs (1)
83
/// <param name="matchTimeout">A time-out interval, or <see cref="
InfiniteMatchTimeout
"/> to indicate that the method should not time out.</param>
System\Text\RegularExpressions\Regex.Match.cs (1)
59
/// <param name="matchTimeout">A time-out interval, or <see cref="Regex.
InfiniteMatchTimeout
"/> to indicate that the method should not time out.</param>
System\Text\RegularExpressions\Regex.Timeout.cs (3)
24
/// <summary>Number of ticks represented by <see cref="
InfiniteMatchTimeout
"/>.</summary>
41
/// The default defaults to <see cref="
InfiniteMatchTimeout
"/> but can be overridden by setting
77
return
InfiniteMatchTimeout
;
System\Text\RegularExpressions\RegexAssemblyCompiler.cs (3)
79
if (matchTimeout != Regex.
InfiniteMatchTimeout
)
126
if (matchTimeout == Regex.
InfiniteMatchTimeout
)
129
_ilg.Emit(OpCodes.Ldsfld, RegexField(nameof(Regex.
InfiniteMatchTimeout
)));
System\Text\RegularExpressions\RegexRunner.cs (1)
343
if (Regex.
InfiniteMatchTimeout
!= timeout)
System\Text\RegularExpressions\Symbolic\SymbolicRegexMatcher.cs (1)
175
_checkTimeout = Regex.
InfiniteMatchTimeout
!= matchTimeout;