C# Класс Microsoft.OData.OpenAPI.OpenApiException

Exception type representing exceptions in the Open API library.
Наследование: InvalidOperationException
Показать файл Открыть проект

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

Метод Описание
OpenApiException ( ) : System

Creates a new instance of the OpenApiException class with default values.

OpenApiException ( string message ) : System

Creates a new instance of the OpenApiException class with an error message.

OpenApiException ( string message, Exception innerException ) : System

Creates a new instance of the OpenApiException class with an error message and an inner exception.

Описание методов

OpenApiException() публичный Метод

Creates a new instance of the OpenApiException class with default values.
public OpenApiException ( ) : System
Результат System

OpenApiException() публичный Метод

Creates a new instance of the OpenApiException class with an error message.
public OpenApiException ( string message ) : System
message string The plain text error message for this exception.
Результат System

OpenApiException() публичный Метод

Creates a new instance of the OpenApiException class with an error message and an inner exception.
public OpenApiException ( string message, Exception innerException ) : System
message string The plain text error message for this exception.
innerException Exception The inner exception that is the cause of this exception to be thrown.
Результат System