RegexMatchTimeoutException.Input 属性

定义

获取超时发生时正则表达式引擎正在处理的输入文本。

public:
 property System::String ^ Input { System::String ^ get(); };
public string Input { get; }
member this.Input : string
Public ReadOnly Property Input As String

属性值

正则表达式输入文本。

注解

此属性反映构造函数的 参数RegexMatchTimeoutException(String, String, TimeSpan)的值regexInput。 如果未在构造函数调用中显式初始化此参数,则其值为 String.Empty

当正则表达式引擎引发异常时,属性的值 Input 将反映传递给正则表达式引擎的整个输入字符串。 它不反映部分字符串,例如引擎在调用方法(如 Regex.Match(String, Int32))时搜索的子字符串。

适用于