50 references to InfiniteMatchTimeout
BuildActionTelemetryTable (3)
RegexGenerator.g.cs (3)
327
/// <summary>Default timeout value set in <see cref="AppContext"/>, or <see cref="Regex.
InfiniteMatchTimeout
"/> if none was set.</summary>
328
internal static readonly TimeSpan s_defaultTimeout = AppContext.GetData("REGEX_DEFAULT_MATCH_TIMEOUT") is TimeSpan timeout ? timeout : Regex.
InfiniteMatchTimeout
;
331
internal static readonly bool s_hasTimeout = s_defaultTimeout != Regex.
InfiniteMatchTimeout
;
illink (3)
RegexGenerator.g.cs (3)
364
/// <summary>Default timeout value set in <see cref="AppContext"/>, or <see cref="Regex.
InfiniteMatchTimeout
"/> if none was set.</summary>
365
internal static readonly TimeSpan s_defaultTimeout = AppContext.GetData("REGEX_DEFAULT_MATCH_TIMEOUT") is TimeSpan timeout ? timeout : Regex.
InfiniteMatchTimeout
;
368
internal static readonly bool s_hasTimeout = s_defaultTimeout != Regex.
InfiniteMatchTimeout
;
Microsoft.CodeAnalysis (3)
RegexGenerator.g.cs (3)
966
/// <summary>Default timeout value set in <see cref="AppContext"/>, or <see cref="Regex.
InfiniteMatchTimeout
"/> if none was set.</summary>
967
internal static readonly TimeSpan s_defaultTimeout = AppContext.GetData("REGEX_DEFAULT_MATCH_TIMEOUT") is TimeSpan timeout ? timeout : Regex.
InfiniteMatchTimeout
;
970
internal static readonly bool s_hasTimeout = s_defaultTimeout != Regex.
InfiniteMatchTimeout
;
System.ComponentModel.TypeConverter (3)
RegexGenerator.g.cs (3)
364
/// <summary>Default timeout value set in <see cref="AppContext"/>, or <see cref="Regex.
InfiniteMatchTimeout
"/> if none was set.</summary>
365
internal static readonly TimeSpan s_defaultTimeout = AppContext.GetData("REGEX_DEFAULT_MATCH_TIMEOUT") is TimeSpan timeout ? timeout : Regex.
InfiniteMatchTimeout
;
368
internal static readonly bool s_hasTimeout = s_defaultTimeout != Regex.
InfiniteMatchTimeout
;
System.Data.Common (3)
RegexGenerator.g.cs (3)
364
/// <summary>Default timeout value set in <see cref="AppContext"/>, or <see cref="Regex.
InfiniteMatchTimeout
"/> if none was set.</summary>
365
internal static readonly TimeSpan s_defaultTimeout = AppContext.GetData("REGEX_DEFAULT_MATCH_TIMEOUT") is TimeSpan timeout ? timeout : Regex.
InfiniteMatchTimeout
;
368
internal static readonly bool s_hasTimeout = s_defaultTimeout != Regex.
InfiniteMatchTimeout
;
System.Data.Odbc (3)
RegexGenerator.g.cs (3)
2934
/// <summary>Default timeout value set in <see cref="AppContext"/>, or <see cref="Regex.
InfiniteMatchTimeout
"/> if none was set.</summary>
2935
internal static readonly TimeSpan s_defaultTimeout = AppContext.GetData("REGEX_DEFAULT_MATCH_TIMEOUT") is TimeSpan timeout ? timeout : Regex.
InfiniteMatchTimeout
;
2938
internal static readonly bool s_hasTimeout = s_defaultTimeout != Regex.
InfiniteMatchTimeout
;
System.Private.DataContractSerialization (3)
RegexGenerator.g.cs (3)
364
/// <summary>Default timeout value set in <see cref="AppContext"/>, or <see cref="Regex.
InfiniteMatchTimeout
"/> if none was set.</summary>
365
internal static readonly TimeSpan s_defaultTimeout = AppContext.GetData("REGEX_DEFAULT_MATCH_TIMEOUT") is TimeSpan timeout ? timeout : Regex.
InfiniteMatchTimeout
;
368
internal static readonly bool s_hasTimeout = s_defaultTimeout != Regex.
InfiniteMatchTimeout
;
System.Private.Xml (3)
RegexGenerator.g.cs (3)
364
/// <summary>Default timeout value set in <see cref="AppContext"/>, or <see cref="Regex.
InfiniteMatchTimeout
"/> if none was set.</summary>
365
internal static readonly TimeSpan s_defaultTimeout = AppContext.GetData("REGEX_DEFAULT_MATCH_TIMEOUT") is TimeSpan timeout ? timeout : Regex.
InfiniteMatchTimeout
;
368
internal static readonly bool s_hasTimeout = s_defaultTimeout != Regex.
InfiniteMatchTimeout
;
System.Text.Json (3)
RegexGenerator.g.cs (3)
364
/// <summary>Default timeout value set in <see cref="AppContext"/>, or <see cref="Regex.
InfiniteMatchTimeout
"/> if none was set.</summary>
365
internal static readonly TimeSpan s_defaultTimeout = AppContext.GetData("REGEX_DEFAULT_MATCH_TIMEOUT") is TimeSpan timeout ? timeout : Regex.
InfiniteMatchTimeout
;
368
internal static readonly bool s_hasTimeout = s_defaultTimeout != Regex.
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)
110
factory = Compile(pattern, tree, options, matchTimeout !=
InfiniteMatchTimeout
);
System\Text\RegularExpressions\Regex.EnumerateMatches.cs (1)
60
/// <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)
85
/// <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
)
125
if (matchTimeout == Regex.
InfiniteMatchTimeout
)
128
_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;
System.Windows.Forms (3)
RegexGenerator.g.cs (3)
144
/// <summary>Default timeout value set in <see cref="AppContext"/>, or <see cref="Regex.
InfiniteMatchTimeout
"/> if none was set.</summary>
145
internal static readonly TimeSpan s_defaultTimeout = AppContext.GetData("REGEX_DEFAULT_MATCH_TIMEOUT") is TimeSpan timeout ? timeout : Regex.
InfiniteMatchTimeout
;
148
internal static readonly bool s_hasTimeout = s_defaultTimeout != Regex.
InfiniteMatchTimeout
;
System.Windows.Forms.Design (3)
RegexGenerator.g.cs (3)
144
/// <summary>Default timeout value set in <see cref="AppContext"/>, or <see cref="Regex.
InfiniteMatchTimeout
"/> if none was set.</summary>
145
internal static readonly TimeSpan s_defaultTimeout = AppContext.GetData("REGEX_DEFAULT_MATCH_TIMEOUT") is TimeSpan timeout ? timeout : Regex.
InfiniteMatchTimeout
;
148
internal static readonly bool s_hasTimeout = s_defaultTimeout != Regex.
InfiniteMatchTimeout
;
System.Windows.Forms.Tests (3)
RegexGenerator.g.cs (3)
158
/// <summary>Default timeout value set in <see cref="AppContext"/>, or <see cref="Regex.
InfiniteMatchTimeout
"/> if none was set.</summary>
159
internal static readonly TimeSpan s_defaultTimeout = AppContext.GetData("REGEX_DEFAULT_MATCH_TIMEOUT") is TimeSpan timeout ? timeout : Regex.
InfiniteMatchTimeout
;
162
internal static readonly bool s_hasTimeout = s_defaultTimeout != Regex.
InfiniteMatchTimeout
;