RegexMatchTimeoutException 构造函数
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
初始化 RegexMatchTimeoutException 类的新实例。
重载
RegexMatchTimeoutException() |
使用由系统提供的消息初始化 RegexMatchTimeoutException 类的新实例。 |
RegexMatchTimeoutException(String) |
使用指定的消息字符串初始化 RegexMatchTimeoutException 类的新实例。 |
RegexMatchTimeoutException(SerializationInfo, StreamingContext) |
已过时.
用序列化数据初始化 RegexMatchTimeoutException 类的新实例。 |
RegexMatchTimeoutException(String, Exception) |
使用指定的错误消息和对作为此异常原因的内部异常的引用来初始化 RegexMatchTimeoutException 类的新实例。 |
RegexMatchTimeoutException(String, String, TimeSpan) |
使用有关正则表达式模式、输入文本和超时间隔的信息初始化 RegexMatchTimeoutException 类的新实例。 |
RegexMatchTimeoutException()
使用由系统提供的消息初始化 RegexMatchTimeoutException 类的新实例。
public:
RegexMatchTimeoutException();
public RegexMatchTimeoutException ();
Public Sub New ()
注解
这是 类的 RegexMatchTimeoutException 无参数构造函数。 此构造函数将新实例的 Message 属性初始化为系统提供的错误描述消息。 此消息针对当前系统区域性进行了本地化。
适用于
RegexMatchTimeoutException(String)
使用指定的消息字符串初始化 RegexMatchTimeoutException 类的新实例。
public:
RegexMatchTimeoutException(System::String ^ message);
public RegexMatchTimeoutException (string message);
new System.Text.RegularExpressions.RegexMatchTimeoutException : string -> System.Text.RegularExpressions.RegexMatchTimeoutException
Public Sub New (message As String)
参数
- message
- String
描述异常的字符串。
注解
字符串 message
分配给 Exception.Message 属性。 应针对当前区域性本地化字符串。
适用于
RegexMatchTimeoutException(SerializationInfo, StreamingContext)
注意
This API supports obsolete formatter-based serialization. It should not be called or extended by application code.
用序列化数据初始化 RegexMatchTimeoutException 类的新实例。
protected:
RegexMatchTimeoutException(System::Runtime::Serialization::SerializationInfo ^ info, System::Runtime::Serialization::StreamingContext context);
protected RegexMatchTimeoutException (System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context);
[System.Obsolete("This API supports obsolete formatter-based serialization. It should not be called or extended by application code.", DiagnosticId="SYSLIB0051", UrlFormat="https://aka.ms/dotnet-warnings/{0}")]
protected RegexMatchTimeoutException (System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context);
new System.Text.RegularExpressions.RegexMatchTimeoutException : System.Runtime.Serialization.SerializationInfo * System.Runtime.Serialization.StreamingContext -> System.Text.RegularExpressions.RegexMatchTimeoutException
[<System.Obsolete("This API supports obsolete formatter-based serialization. It should not be called or extended by application code.", DiagnosticId="SYSLIB0051", UrlFormat="https://aka.ms/dotnet-warnings/{0}")>]
new System.Text.RegularExpressions.RegexMatchTimeoutException : System.Runtime.Serialization.SerializationInfo * System.Runtime.Serialization.StreamingContext -> System.Text.RegularExpressions.RegexMatchTimeoutException
Protected Sub New (info As SerializationInfo, context As StreamingContext)
参数
- info
- SerializationInfo
包含序列化数据的对象。
- context
- StreamingContext
包含序列化数据的流。
- 属性
注解
代码不直接调用此构造函数来实例化 RegexMatchTimeoutException 对象。 相反,当从流反序列化RegexMatchTimeoutException对象时,IFormatter.Deserialize方法会调用它。
适用于
RegexMatchTimeoutException(String, Exception)
使用指定的错误消息和对作为此异常原因的内部异常的引用来初始化 RegexMatchTimeoutException 类的新实例。
public:
RegexMatchTimeoutException(System::String ^ message, Exception ^ inner);
public RegexMatchTimeoutException (string message, Exception inner);
new System.Text.RegularExpressions.RegexMatchTimeoutException : string * Exception -> System.Text.RegularExpressions.RegexMatchTimeoutException
Public Sub New (message As String, inner As Exception)
参数
- message
- String
描述异常的字符串。
- inner
- Exception
导致当前异常的异常。
注解
通常,使用此重载来处理块中的 try/catch
异常。 参数 innerException
应该是对块中 catch
处理的异常对象的引用,也可以是 null
。 然后,此值将 RegexMatchTimeoutException 分配给 对象的 Exception.InnerException 属性。
字符串 message
分配给 Exception.Message 属性。 应针对当前区域性本地化字符串。
适用于
RegexMatchTimeoutException(String, String, TimeSpan)
使用有关正则表达式模式、输入文本和超时间隔的信息初始化 RegexMatchTimeoutException 类的新实例。
public:
RegexMatchTimeoutException(System::String ^ regexInput, System::String ^ regexPattern, TimeSpan matchTimeout);
public RegexMatchTimeoutException (string regexInput, string regexPattern, TimeSpan matchTimeout);
new System.Text.RegularExpressions.RegexMatchTimeoutException : string * string * TimeSpan -> System.Text.RegularExpressions.RegexMatchTimeoutException
Public Sub New (regexInput As String, regexPattern As String, matchTimeout As TimeSpan)
参数
- regexInput
- String
发生超时时由正则表达式引擎处理的输入文本。
- regexPattern
- String
发生超时时由正则表达式引擎使用的模式。
- matchTimeout
- TimeSpan
超时间隔。
注解
、 regexInput
regexPattern
和 matchTimeout
值分配给Input新RegexMatchTimeoutException对象的 、 Pattern和 MatchTimeout 属性。