RegexMatchTimeoutException.MatchTimeout Property
Definition
Gets the time-out interval for a regular expression match.
public:
property TimeSpan MatchTimeout { TimeSpan get(); };
public TimeSpan MatchTimeout { get; }
member this.MatchTimeout : TimeSpan
Public ReadOnly Property MatchTimeout As TimeSpan
Property Value
The time-out interval.
Remarks
This property reflects the value of the matchTimeout
parameter of the RegexMatchTimeoutException(String, String, TimeSpan) constructor. If the parameter is not properly initialized in a constructor call, its value is Timespan.FromTicks(-1)
.
The value of this property reflects the time-out interval set in the call to the Regex constructor or static method. It does not reflect the exact interval that has elapsed from the beginning of the method call to the time the exception is thrown.