Soap.SOAPHTTPTrans.TSOAPHttpErrorAction

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

TSOAPHttpErrorAction = (heaSuccess, heaError, heaAbort, heaRetry);

C++

enum DECLSPEC_DENUM TSOAPHttpErrorAction : unsigned char { heaSuccess, heaError, heaAbort, heaRetry };

Properties

Type Visibility Source Unit Parent
enum public
Soap.SOAPHTTPTrans.pas
Soap.SOAPHTTPTrans.hpp
Soap.SOAPHTTPTrans Soap.SOAPHTTPTrans

Description

Enumerated type specifying an action that THTTPReqResp takes when a request returned an HTTP status code greater or equal to 300.

  • heaSuccess. Consider the request as finished successfully
  • heaError. Raise corresponding exception
  • heaAbort. Call Abort procedure
  • heaRetry. Retry the request

See Also