17 references to DefaultMatchTimeout
System (17)
regex\system\text\regularexpressions\Regex.cs (15)
196
this.internalMatchTimeout =
DefaultMatchTimeout
;
209
: this(pattern, RegexOptions.None,
DefaultMatchTimeout
, false) {
224
: this(pattern, options,
DefaultMatchTimeout
, false) {
726
return IsMatch(input, pattern, RegexOptions.None,
DefaultMatchTimeout
);
740
return IsMatch(input, pattern, options,
DefaultMatchTimeout
);
799
return Match(input, pattern, RegexOptions.None,
DefaultMatchTimeout
);
813
return Match(input, pattern, options,
DefaultMatchTimeout
);
887
return Matches(input, pattern, RegexOptions.None,
DefaultMatchTimeout
);
900
return Matches(input, pattern, options,
DefaultMatchTimeout
);
960
return Replace(input, pattern, replacement, RegexOptions.None,
DefaultMatchTimeout
);
974
return Replace(input, pattern, replacement, options,
DefaultMatchTimeout
);
1061
return Replace(input, pattern, evaluator, RegexOptions.None,
DefaultMatchTimeout
);
1074
return Replace(input, pattern, evaluator, options,
DefaultMatchTimeout
);
1150
return Split(input, pattern, RegexOptions.None,
DefaultMatchTimeout
);
1162
return Split(input, pattern, options,
DefaultMatchTimeout
);
regex\system\text\regularexpressions\RegexCompilationInfo.cs (2)
33
matchTimeout = Regex.
DefaultMatchTimeout
;
42
: this(pattern, options, name, fullnamespace, ispublic, Regex.
DefaultMatchTimeout
) {