C# Класс GoogleCloudExtension.Utils.ErrorHandlerUtils

This class implements an event handler for the exceptions that escape the given Action.
Показать файл Открыть проект Примеры использования класса

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

Метод Описание
HandleExceptions ( System.Action action ) : void

Runs the given Action and handles all non-critical exceptions by showing an error dialog to the user. If the exception is critical, as determiend by ErrorHandler.IsCriticalException(Exception) then it is re-thrown as this could be that the process is not in a good state to continue executing.

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

HandleExceptions() публичный статический Метод

Runs the given Action and handles all non-critical exceptions by showing an error dialog to the user. If the exception is critical, as determiend by ErrorHandler.IsCriticalException(Exception) then it is re-thrown as this could be that the process is not in a good state to continue executing.
public static HandleExceptions ( System.Action action ) : void
action System.Action
Результат void