C# Класс Pchp.Library.PerlRegex.RegexMatchTimeoutException

This is the exception that is thrown when a RegEx matching timeout occurs.
Наследование: System.TimeoutException
Показать файл Открыть проект

Открытые методы

Метод Описание
RegexMatchTimeoutException ( ) : System

This constructor is provided in compliance with common NetFx design patterns; developers should prefer using the constructor public RegexMatchTimeoutException(string input, string pattern, TimeSpan matchTimeout).

RegexMatchTimeoutException ( string message ) : System

This constructor is provided in compliance with common NetFx design patterns; developers should prefer using the constructor public RegexMatchTimeoutException(string input, string pattern, TimeSpan matchTimeout).

RegexMatchTimeoutException ( string message, Exception inner ) : System

This constructor is provided in compliance with common NetFx design patterns; developers should prefer using the constructor public RegexMatchTimeoutException(string input, string pattern, TimeSpan matchTimeout).

RegexMatchTimeoutException ( string regexInput, string regexPattern, System.TimeSpan matchTimeout ) : System

Constructs a new RegexMatchTimeoutException.

Описание методов

RegexMatchTimeoutException() публичный Метод

This constructor is provided in compliance with common NetFx design patterns; developers should prefer using the constructor public RegexMatchTimeoutException(string input, string pattern, TimeSpan matchTimeout).
public RegexMatchTimeoutException ( ) : System
Результат System

RegexMatchTimeoutException() публичный Метод

This constructor is provided in compliance with common NetFx design patterns; developers should prefer using the constructor public RegexMatchTimeoutException(string input, string pattern, TimeSpan matchTimeout).
public RegexMatchTimeoutException ( string message ) : System
message string The error message that explains the reason for the exception.
Результат System

RegexMatchTimeoutException() публичный Метод

This constructor is provided in compliance with common NetFx design patterns; developers should prefer using the constructor public RegexMatchTimeoutException(string input, string pattern, TimeSpan matchTimeout).
public RegexMatchTimeoutException ( string message, Exception inner ) : System
message string The error message that explains the reason for the exception.
inner System.Exception The exception that is the cause of the current exception, or a null.
Результат System

RegexMatchTimeoutException() публичный Метод

Constructs a new RegexMatchTimeoutException.
public RegexMatchTimeoutException ( string regexInput, string regexPattern, System.TimeSpan matchTimeout ) : System
regexInput string Matching timeout occurred during matching within the specified input.
regexPattern string Matching timeout occurred during matching to the specified pattern.
matchTimeout System.TimeSpan Matching timeout occurred because matching took longer than the specified timeout.
Результат System