AspEncodedExprRegex 构造函数

定义

初始化 AspEncodedExprRegex 类的新实例。Initializes a new instance of the AspEncodedExprRegex class.

重载

AspEncodedExprRegex()

此 API 支持产品基础结构,不能在代码中直接使用。

初始化 AspEncodedExprRegex 类的新实例。Initializes a new instance of the AspEncodedExprRegex class.

AspEncodedExprRegex(TimeSpan)

此 API 支持产品基础结构,不能在代码中直接使用。

用指定的超时值初始化 AspEncodedExprRegex 类的新实例。Initializes a new instance of the AspEncodedExprRegex class with a specified time-out value.

AspEncodedExprRegex()

初始化 AspEncodedExprRegex 类的新实例。Initializes a new instance of the AspEncodedExprRegex class.

此 API 支持产品基础结构,不能在代码中直接使用。

public:
 AspEncodedExprRegex();
public AspEncodedExprRegex ();
Public Sub New ()

适用于

AspEncodedExprRegex(TimeSpan)

用指定的超时值初始化 AspEncodedExprRegex 类的新实例。Initializes a new instance of the AspEncodedExprRegex class with a specified time-out value.

此 API 支持产品基础结构,不能在代码中直接使用。

public:
 AspEncodedExprRegex(TimeSpan A_1);
public AspEncodedExprRegex (TimeSpan A_1);
new System.Web.RegularExpressions.AspEncodedExprRegex : TimeSpan -> System.Web.RegularExpressions.AspEncodedExprRegex
Public Sub New (A_1 As TimeSpan)

参数

A_1
TimeSpan

如果匹配操作不应超时,则为超时间隔或 InfiniteMatchTimeoutA time-out interval, or InfiniteMatchTimeout if matching operations should not time out.

注解

A_1参数表示最大时间间隔,在此时间间隔内正则表达式引擎在操作超时之前尝试查找匹配项,并 RegexMatchTimeoutException 引发异常。The A_1 parameter represents the maximum time interval during which the regular expression engine tries to find a match before the operation times out and a RegexMatchTimeoutException exception is thrown.

适用于