C# 클래스 OpenCl.DotNetCore.OpenClException

Represents an exception, which is thrown when there is an OpenCL error.
상속: Exception
파일 보기 프로젝트 열기: swap-dev/SwapReferenceMiner

공개 메소드들

메소드 설명
OpenClException ( ) : System

Initializes a new OpenClException instance.

OpenClException ( Result result ) : System

Initializes a new OpenClException instance.

OpenClException ( string message ) : System

Initializes a new OpenClException instance.

OpenClException ( string message, Exception inner ) : System

Initializes a new OpenClException instance.

OpenClException ( string message, Exception inner, Result result ) : System

Initializes a new OpenClException instance.

OpenClException ( string message, Result result ) : System

Initializes a new OpenClException instance.

메소드 상세

OpenClException() 공개 메소드

Initializes a new OpenClException instance.
public OpenClException ( ) : System
리턴 System

OpenClException() 공개 메소드

Initializes a new OpenClException instance.
public OpenClException ( Result result ) : System
result Result The error code that was returned by OpenCL.
리턴 System

OpenClException() 공개 메소드

Initializes a new OpenClException instance.
public OpenClException ( string message ) : System
message string An error message.
리턴 System

OpenClException() 공개 메소드

Initializes a new OpenClException instance.
public OpenClException ( string message, Exception inner ) : System
message string An error message.
inner Exception The inner exception, which is the root cause for this exception.
리턴 System

OpenClException() 공개 메소드

Initializes a new OpenClException instance.
public OpenClException ( string message, Exception inner, Result result ) : System
message string An error message.
inner Exception The inner exception, which is the root cause for this exception.
result Result The error code that was returned by OpenCL.
리턴 System

OpenClException() 공개 메소드

Initializes a new OpenClException instance.
public OpenClException ( string message, Result result ) : System
message string An error message.
result Result The error code that was returned by OpenCL.
리턴 System