C# 클래스 Pchp.Library.PerlRegex.RegexMatchTimeoutException

This is the exception that is thrown when a RegEx matching timeout occurs.
상속: System.TimeoutException
파일 보기 프로젝트 열기: iolevel/peachpie

공개 메소드들

메소드 설명
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