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)
111factory = 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 77return InfiniteMatchTimeout;
System\Text\RegularExpressions\RegexAssemblyCompiler.cs (3)
79if (matchTimeout != Regex.InfiniteMatchTimeout) 126if (matchTimeout == Regex.InfiniteMatchTimeout) 129_ilg.Emit(OpCodes.Ldsfld, RegexField(nameof(Regex.InfiniteMatchTimeout)));
System\Text\RegularExpressions\RegexRunner.cs (1)
343if (Regex.InfiniteMatchTimeout != timeout)
System\Text\RegularExpressions\Symbolic\SymbolicRegexMatcher.cs (1)
175_checkTimeout = Regex.InfiniteMatchTimeout != matchTimeout;