C# Класс OpenCl.DotNetCore.OpenClException

Represents an exception, which is thrown when there is an OpenCL error.
Наследование: Exception
Показать файл Открыть проект

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

Метод Описание
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