ErrorOptions Enum

Definition

ErrorOptions controls the behavior of an operation when an unexpected response status code is received.

This enumeration supports a bitwise combination of its member values.

[System.Flags]
public enum ErrorOptions
[<System.Flags>]
type ErrorOptions = 
Public Enum ErrorOptions
Inheritance
ErrorOptions
Attributes

Fields

Default 0

Indicates that an operation should throw an exception when the response indicates a failure.

NoThrow 1

Indicates that an operation should not throw an exception when the response indicates a failure. Callers should check the Response.IsError property instead of catching exceptions.

Applies to