Share via


ClientErrorBehaviors Enum

Definition

ClientErrorBehaviors controls the behavior of a service method when an unexpected response status code is received.

This enumeration supports a bitwise combination of its member values.

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

Fields

Default 0

The client will throw an exception from a service method if the service returns an error response.

NoThrow 1

The client will not throw an exception from a service method if the service returns an error response. Callers of the service method must check the Response.IsError property before accessing the response content.

Applies to