class HTTPStatus;
Description
The complete set of HTTP Status codes, as defined in RFC2616.
Members
Defined in HTTPStatus
:
EAccepted
, EBadGateway
, EBadRequest
, EConflict
, EContinue
, ECreated
, EExpectationFailed
, EForbidden
, EFound
, EGatewayTimeout
, EGone
, EHTTPVersionNotSupported
, EInternalServerError
, ELengthRequired
, EMethodNotAllowed
, EMovedPermanently
, EMultipleChoices
, ENoContent
, ENonAuthoritativeInfo
, ENotAcceptable
, ENotFound
, ENotImplemented
, ENotModified
, EOk
, EPartialContent
, EPaymentRequired
, EPreconditionFailed
, EProxyAuthenticationRequired
, ERequestEntityTooLarge
, ERequestTimeout
, ERequestURITooLong
, ERequestedRangeNotSatisfiable
, EResetContent
, ESeeOther
, EServiceUnavailable
, ESwitchingProtocols
, ETemporaryRedirect
, EUnauthorized
, EUnsupportedMediaType
, EUnused
, EUseProxy
, IsClientError()
, IsInformational()
, IsRedirection()
, IsServerError()
, IsSuccessful()
, anonymous
static inline TBool IsInformational(TInt aStatus);
Description
Is the supplied status code in the 1xx Informational range?
Parameters
TInt aStatus |
Is the supplied status code in the 1xx Informational range?
|
|
Return value
TBool
|
ETrue if the specified status code is in the 1xx Informational range. ##ModelId=3C4C18750162
|
|
static inline TBool IsSuccessful(TInt aStatus);
Description
Is the supplied status code in the 2xx Successful range?
Parameters
TInt aStatus |
Is the supplied status code in the 2xx Successful range?
|
|
Return value
TBool
|
ETrue if the specified status code is in the 2xx Successful range ##ModelId=3C4C18750160
|
|
static inline TBool IsRedirection(TInt aStatus);
Description
Is the supplied status code in the 3xx Redirection range?
Parameters
TInt aStatus |
Is the supplied status code in the 3xx Redirection range?
|
|
Return value
TBool
|
ETrue if the specified status code is in the 3xx Redirection range. ##ModelId=3C4C18750159
|
|
static inline TBool IsClientError(TInt aStatus);
Description
Is the supplied status code in the 4xx Client Error range?
Parameters
TInt aStatus |
Is the supplied status code in the 4xx Client Error range?
|
|
Return value
TBool
|
ETrue if the specified status code is in the 4xx Client Error range. ##ModelId=3C4C18750157
|
|
static inline TBool IsServerError(TInt aStatus);
Description
Is the supplied status code in the 5xx Server Error range?
Parameters
TInt aStatus |
Is the supplied status code in the 5xx Server Error range?
|
|
Return value
TBool
|
ETrue if the specified status code is in the 5xx Server Error range. ##ModelId=3C4C18750155
|
|