ClientErrorBehaviors
ClientErrorBehaviors controls the behavior of a service method when an unexpected
response status code is received.
namespace System.ClientModel.Primitives
{
[Flags]
public enum ClientErrorBehaviors
{
Default = 0,
NoThrow = 1
}
}