C# Класс Dapr.Actors.ActorMethodInvocationException

Наследование: DaprApiException
Показать файл Открыть проект

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

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

Initializes a new instance of the ActorMethodInvocationException class.

ActorMethodInvocationException ( string message, Exception innerException, bool isTransient ) : System

Initializes a new instance of the ActorMethodInvocationException class with a specified error message and a reference to the inner exception that is the cause of this exception.

ActorMethodInvocationException ( string message, bool isTransient ) : System

Initializes a new instance of the ActorMethodInvocationException class.

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

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

Initializes a new instance of the ActorMethodInvocationException class.
public ActorMethodInvocationException ( ) : System
Результат System

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

Initializes a new instance of the ActorMethodInvocationException class with a specified error message and a reference to the inner exception that is the cause of this exception.
public ActorMethodInvocationException ( string message, Exception innerException, bool isTransient ) : System
message string The error message that explains the reason for the exception.
innerException Exception The exception that is the cause of the current exception.
isTransient bool True, if the exception is to be treated as an transient exception.
Результат System

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

Initializes a new instance of the ActorMethodInvocationException class.
public ActorMethodInvocationException ( string message, bool isTransient ) : System
message string The error message that explains the reason for the exception.
isTransient bool True, if the exception is to be treated as an transient exception.
Результат System