C# 클래스 CsDebugScript.Exceptions.WrongCodeTypeException

Exception that is thrown when variable of unexpected code type has been given as an argument.
상속: System.Exception
파일 보기 프로젝트 열기: southpolenator/WinDbgCs

공개 메소드들

메소드 설명
WrongCodeTypeException ( CodeType codeType, string argumentName, string expectedText ) : System

Initializes a new instance of the WrongCodeTypeException class.

WrongCodeTypeException ( Variable variable, string argumentName, string expectedText ) : System

Initializes a new instance of the WrongCodeTypeException class.

메소드 상세

WrongCodeTypeException() 공개 메소드

Initializes a new instance of the WrongCodeTypeException class.
public WrongCodeTypeException ( CodeType codeType, string argumentName, string expectedText ) : System
codeType CodeType The code type.
argumentName string Name of the argument.
expectedText string The expected text.
리턴 System

WrongCodeTypeException() 공개 메소드

Initializes a new instance of the WrongCodeTypeException class.
public WrongCodeTypeException ( Variable variable, string argumentName, string expectedText ) : System
variable Variable The variable.
argumentName string Name of the argument.
expectedText string The expected text.
리턴 System