C# 클래스 MultiException, PexFaultLocalization

상속: ArgumentException
파일 보기 프로젝트 열기: lukesandberg/PexFaultLocalization 1 사용 예제들

공개 메소드들

메소드 설명
MultiException ( ) : System

Initializes a new instance of the MultiException class.

MultiException ( IEnumerable innerExceptions ) : System

Create multi exception

MultiException ( string message ) : System

Initializes a new instance of the MultiException class.

MultiException ( string message, ArgumentException innerException ) : System

Initializes a new instance of the MultiException class.

MultiException ( string message, IEnumerable innerExceptions ) : System

Initializes a new instance of the MultiException class.

비공개 메소드들

메소드 설명
BuildMessage ( IEnumerable exceptions ) : string

Builds a message from the exceptions' messages.

MultiException ( SerializationInfo info, StreamingContext context ) : System

Create multi exception

메소드 상세

MultiException() 공개 메소드

Initializes a new instance of the MultiException class.
public MultiException ( ) : System
리턴 System

MultiException() 공개 메소드

Create multi exception
public MultiException ( IEnumerable innerExceptions ) : System
innerExceptions IEnumerable The inner exceptions.
리턴 System

MultiException() 공개 메소드

Initializes a new instance of the MultiException class.
public MultiException ( string message ) : System
message string The message.
리턴 System

MultiException() 공개 메소드

Initializes a new instance of the MultiException class.
public MultiException ( string message, ArgumentException innerException ) : System
message string The message.
innerException ArgumentException The inner exception.
리턴 System

MultiException() 공개 메소드

Initializes a new instance of the MultiException class.
public MultiException ( string message, IEnumerable innerExceptions ) : System
message string The message.
innerExceptions IEnumerable The inner exceptions.
리턴 System