Show / Hide Table of Contents

Enum ExceptionHandling

How to handle exceptions from calls.

Namespace: Google.Cloud.Diagnostics.Common
Assembly: Google.Cloud.Diagnostics.Common.dll
Syntax
public enum ExceptionHandling

Fields

Name Description
Ignore

Ignores the errors.

Propagate

Let the errors propagate up after they have been retried if they continually fail. This may kill the running process, if an exception occurs when the retry limit has been reached.

Back to top