1 write to MatchTimeoutInMilliseconds
System.ComponentModel.Annotations (1)
System\ComponentModel\DataAnnotations\RegularExpressionAttribute.cs (1)
25
MatchTimeoutInMilliseconds
= 2000;
4 references to MatchTimeoutInMilliseconds
System.ComponentModel.Annotations (4)
System\ComponentModel\DataAnnotations\RegularExpressionAttribute.cs (4)
37
public TimeSpan MatchTimeout => TimeSpan.FromMilliseconds(
MatchTimeoutInMilliseconds
);
100
/// <exception cref="ArgumentOutOfRangeException"> thrown if <see cref="
MatchTimeoutInMilliseconds
" /> is negative (except -1),
112
Regex =
MatchTimeoutInMilliseconds
== -1
114
: new Regex(Pattern, default(RegexOptions), TimeSpan.FromMilliseconds(
MatchTimeoutInMilliseconds
));