Navigation
API > API/Runtime > API/Runtime/HTTP
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
HTTP_RESPONSE_CODE
(
Unknown, |
Status code not set yet | ||
HTTP_RESPONSE_CODE
(
SwitchProtocol, |
The server has switched protocols in an upgrade header. | ||
HTTP_RESPONSE_CODE
(
Created, |
The request has been fulfilled and resulted in the creation of a new resource. | ||
HTTP_RESPONSE_CODE
(
Partial, |
The returned meta information in the entity-header is not the definitive set available from the origin server. | ||
HTTP_RESPONSE_CODE
(
ResetContent, |
The request has been completed, and the client program should reset the document view that caused the request to be sent to allow the user to easily initiate another input action. | ||
HTTP_RESPONSE_CODE
(
Ambiguous, |
The server couldn't decide what to return. | ||
HTTP_RESPONSE_CODE
(
Redirect, |
The requested resource resides temporarily under a different uri (uniform resource identifier). | ||
HTTP_RESPONSE_CODE
(
NotModified, |
The requested resource has not been modified. | ||
HTTP_RESPONSE_CODE
(
RedirectKeepVerb, |
The redirected request keeps the same http verb. http/1.1 behavior. | ||
HTTP_RESPONSE_CODE
(
Denied, |
The requested resource requires user authentication. | ||
HTTP_RESPONSE_CODE
(
Forbidden, |
The server understood the request, but is refusing to fulfill it. | ||
HTTP_RESPONSE_CODE
(
BadMethod, |
The http verb used is not allowed. | ||
HTTP_RESPONSE_CODE
(
ProxyAuthReq, |
Proxy authentication required. | ||
HTTP_RESPONSE_CODE
(
Conflict, |
The request could not be completed due to a conflict with the current state of the resource. the user should resubmit with more information. | ||
HTTP_RESPONSE_CODE
(
LengthRequired, |
The server refuses to accept the request without a defined content length. | ||
HTTP_RESPONSE_CODE
(
RequestTooLarge, |
The server is refusing to process a request because the request entity is larger than the server is willing or able to process. | ||
HTTP_RESPONSE_CODE
(
UnsupportedMedia, |
The server is refusing to service the request because the entity of the request is in a format not supported by the requested resource for the requested method. | ||
HTTP_RESPONSE_CODE
(
RetryWith, |
The request should be retried after doing the appropriate action. | ||
HTTP_RESPONSE_CODE
(
NotSupported, |
The server does not support the functionality required to fulfill the request. | ||
HTTP_RESPONSE_CODE
(
ServiceUnavail, |
The service is temporarily overloaded. |
HTTP_RESPONSE_CODE(Unknown, 0)
Description
The request can be continued.
| Name | HTTP_RESPONSE_CODE |
| Type | function |
| Header File | /Engine/Source/Runtime/Online/HTTP/Public/Interfaces/IHttpResponseCodes.inl |
| Include Path | #include "Interfaces/IHttpResponseCodes.inl" |
HTTP_RESPONSE_CODE
(
Unknown ,
0
)
HTTP_RESPONSE_CODE(SwitchProtocol, 101)
Description
The request completed successfully.
| Name | HTTP_RESPONSE_CODE |
| Type | function |
| Header File | /Engine/Source/Runtime/Online/HTTP/Public/Interfaces/IHttpResponseCodes.inl |
| Include Path | #include "Interfaces/IHttpResponseCodes.inl" |
HTTP_RESPONSE_CODE
(
SwitchProtocol,
101
)
HTTP_RESPONSE_CODE(Created, 201)
Description
The request has been accepted for processing, but the processing has not been completed.
| Name | HTTP_RESPONSE_CODE |
| Type | function |
| Header File | /Engine/Source/Runtime/Online/HTTP/Public/Interfaces/IHttpResponseCodes.inl |
| Include Path | #include "Interfaces/IHttpResponseCodes.inl" |
HTTP_RESPONSE_CODE
(
Created,
201
)
HTTP_RESPONSE_CODE(Partial, 203)
Description
The server has fulfilled the request, but there is no new information to send back.
| Name | HTTP_RESPONSE_CODE |
| Type | function |
| Header File | /Engine/Source/Runtime/Online/HTTP/Public/Interfaces/IHttpResponseCodes.inl |
| Include Path | #include "Interfaces/IHttpResponseCodes.inl" |
HTTP_RESPONSE_CODE
(
Partial ,
203
)
HTTP_RESPONSE_CODE(ResetContent, 205)
Description
The server has fulfilled the partial get request for the resource.
| Name | HTTP_RESPONSE_CODE |
| Type | function |
| Header File | /Engine/Source/Runtime/Online/HTTP/Public/Interfaces/IHttpResponseCodes.inl |
| Include Path | #include "Interfaces/IHttpResponseCodes.inl" |
HTTP_RESPONSE_CODE
(
ResetContent,
205
)
HTTP_RESPONSE_CODE(Ambiguous, 300)
Description
The requested resource has been assigned to a new permanent uri (uniform resource identifier), and any future references to this resource should be done using one of the returned uris.
| Name | HTTP_RESPONSE_CODE |
| Type | function |
| Header File | /Engine/Source/Runtime/Online/HTTP/Public/Interfaces/IHttpResponseCodes.inl |
| Include Path | #include "Interfaces/IHttpResponseCodes.inl" |
HTTP_RESPONSE_CODE
(
Ambiguous,
300
)
HTTP_RESPONSE_CODE(Redirect, 302)
Description
The response to the request can be found under a different uri (uniform resource identifier) and should be retrieved using a get http verb on that resource.
| Name | HTTP_RESPONSE_CODE |
| Type | function |
| Header File | /Engine/Source/Runtime/Online/HTTP/Public/Interfaces/IHttpResponseCodes.inl |
| Include Path | #include "Interfaces/IHttpResponseCodes.inl" |
HTTP_RESPONSE_CODE
(
Redirect,
302
)
HTTP_RESPONSE_CODE(NotModified, 304)
Description
The requested resource must be accessed through the proxy given by the location field.
| Name | HTTP_RESPONSE_CODE |
| Type | function |
| Header File | /Engine/Source/Runtime/Online/HTTP/Public/Interfaces/IHttpResponseCodes.inl |
| Include Path | #include "Interfaces/IHttpResponseCodes.inl" |
HTTP_RESPONSE_CODE
(
NotModified,
304
)
HTTP_RESPONSE_CODE(RedirectKeepVerb, 307)
Description
The request could not be processed by the server due to invalid syntax.
| Name | HTTP_RESPONSE_CODE |
| Type | function |
| Header File | /Engine/Source/Runtime/Online/HTTP/Public/Interfaces/IHttpResponseCodes.inl |
| Include Path | #include "Interfaces/IHttpResponseCodes.inl" |
HTTP_RESPONSE_CODE
(
RedirectKeepVerb,
307
)
HTTP_RESPONSE_CODE(Denied, 401)
Description
Not currently implemented in the http protocol.
| Name | HTTP_RESPONSE_CODE |
| Type | function |
| Header File | /Engine/Source/Runtime/Online/HTTP/Public/Interfaces/IHttpResponseCodes.inl |
| Include Path | #include "Interfaces/IHttpResponseCodes.inl" |
HTTP_RESPONSE_CODE
(
Denied,
401
)
HTTP_RESPONSE_CODE(Forbidden, 403)
Description
The server has not found anything matching the requested uri (uniform resource identifier).
| Name | HTTP_RESPONSE_CODE |
| Type | function |
| Header File | /Engine/Source/Runtime/Online/HTTP/Public/Interfaces/IHttpResponseCodes.inl |
| Include Path | #include "Interfaces/IHttpResponseCodes.inl" |
HTTP_RESPONSE_CODE
(
Forbidden,
403
)
HTTP_RESPONSE_CODE(BadMethod, 405)
Description
No responses acceptable to the client were found.
| Name | HTTP_RESPONSE_CODE |
| Type | function |
| Header File | /Engine/Source/Runtime/Online/HTTP/Public/Interfaces/IHttpResponseCodes.inl |
| Include Path | #include "Interfaces/IHttpResponseCodes.inl" |
HTTP_RESPONSE_CODE
(
BadMethod,
405
)
HTTP_RESPONSE_CODE(ProxyAuthReq, 407)
Description
The server timed out waiting for the request.
| Name | HTTP_RESPONSE_CODE |
| Type | function |
| Header File | /Engine/Source/Runtime/Online/HTTP/Public/Interfaces/IHttpResponseCodes.inl |
| Include Path | #include "Interfaces/IHttpResponseCodes.inl" |
HTTP_RESPONSE_CODE
(
ProxyAuthReq,
407
)
HTTP_RESPONSE_CODE(Conflict, 409)
Description
The requested resource is no longer available at the server, and no forwarding address is known.
| Name | HTTP_RESPONSE_CODE |
| Type | function |
| Header File | /Engine/Source/Runtime/Online/HTTP/Public/Interfaces/IHttpResponseCodes.inl |
| Include Path | #include "Interfaces/IHttpResponseCodes.inl" |
HTTP_RESPONSE_CODE
(
Conflict,
409
)
HTTP_RESPONSE_CODE(LengthRequired, 411)
Description
The precondition given in one or more of the request header fields evaluated to false when it was tested on the server.
| Name | HTTP_RESPONSE_CODE |
| Type | function |
| Header File | /Engine/Source/Runtime/Online/HTTP/Public/Interfaces/IHttpResponseCodes.inl |
| Include Path | #include "Interfaces/IHttpResponseCodes.inl" |
HTTP_RESPONSE_CODE
(
LengthRequired,
411
)
HTTP_RESPONSE_CODE(RequestTooLarge, 413)
Description
The server is refusing to service the request because the request uri (uniform resource identifier) is longer than the server is willing to interpret.
| Name | HTTP_RESPONSE_CODE |
| Type | function |
| Header File | /Engine/Source/Runtime/Online/HTTP/Public/Interfaces/IHttpResponseCodes.inl |
| Include Path | #include "Interfaces/IHttpResponseCodes.inl" |
HTTP_RESPONSE_CODE
(
RequestTooLarge,
413
)
HTTP_RESPONSE_CODE(UnsupportedMedia, 415)
Description
Too many requests, the server is throttling
| Name | HTTP_RESPONSE_CODE |
| Type | function |
| Header File | /Engine/Source/Runtime/Online/HTTP/Public/Interfaces/IHttpResponseCodes.inl |
| Include Path | #include "Interfaces/IHttpResponseCodes.inl" |
HTTP_RESPONSE_CODE
(
UnsupportedMedia,
415
)
HTTP_RESPONSE_CODE(RetryWith, 449)
Description
The server encountered an unexpected condition that prevented it from fulfilling the request.
| Name | HTTP_RESPONSE_CODE |
| Type | function |
| Header File | /Engine/Source/Runtime/Online/HTTP/Public/Interfaces/IHttpResponseCodes.inl |
| Include Path | #include "Interfaces/IHttpResponseCodes.inl" |
HTTP_RESPONSE_CODE
(
RetryWith,
449
)
HTTP_RESPONSE_CODE(NotSupported, 501)
Description
The server, while acting as a gateway or proxy, received an invalid response from the upstream server it accessed in attempting to fulfill the request.
| Name | HTTP_RESPONSE_CODE |
| Type | function |
| Header File | /Engine/Source/Runtime/Online/HTTP/Public/Interfaces/IHttpResponseCodes.inl |
| Include Path | #include "Interfaces/IHttpResponseCodes.inl" |
HTTP_RESPONSE_CODE
(
NotSupported ,
501
)
HTTP_RESPONSE_CODE(ServiceUnavail, 503)
Description
The request was timed out waiting for a gateway.
| Name | HTTP_RESPONSE_CODE |
| Type | function |
| Header File | /Engine/Source/Runtime/Online/HTTP/Public/Interfaces/IHttpResponseCodes.inl |
| Include Path | #include "Interfaces/IHttpResponseCodes.inl" |
HTTP_RESPONSE_CODE
(
ServiceUnavail,
503
)