UDocumentation UE5.7 10.02.2026 (Source)
API documentation for Unreal Engine 5.7
HttpConstants.h
Go to the documentation of this file.
1// Copyright Epic Games, Inc. All Rights Reserved.
2
3#pragma once
4
5#include "HAL/Platform.h"
7#define UE_API HTTP_API
15 static UE_API const TCHAR* const AUTH_BASIC;
17 static UE_API const TCHAR* const AUTH_BEARER;
20 static UE_API const TCHAR* const VERB_DELETE;
22 static UE_API const TCHAR* const VERB_GET;
24 static UE_API const TCHAR* const VERB_HEAD;
26 static UE_API const TCHAR* const VERB_PATCH;
28 static UE_API const TCHAR* const VERB_POST;
30 static UE_API const TCHAR* const VERB_PUT;
33 static UE_API const TCHAR* const HEADER_ACCEPT;
35 static UE_API const TCHAR* const HEADER_ACCEPT_ENCODING;
37 static UE_API const TCHAR* const HEADER_AUTHORIZATION;
39 static UE_API const TCHAR* const HEADER_CONTENT_LENGTH;
41 static UE_API const TCHAR* const HEADER_CONTENT_TYPE;
43 static UE_API const TCHAR* const HEADER_DATE;
45 static UE_API const TCHAR* const HEADER_USER_AGENT;
46
48 static UE_API const TCHAR* const MEDIATYPE_JSON;
50 static UE_API const TCHAR* const MEDIATYPE_FORM_URLENCODED;
52 static UE_API const TCHAR* const MEDIATYPE_OCTET_STREAM;
53
55 static UE_API const TCHAR* const MEDIAENCODING_GZIP;
56
58 static UE_API const TCHAR* const VERSION_2TLS;
59 static UE_API const TCHAR* const VERSION_1_1;
60};
61
62#undef UE_API
FPlatformTypes::TCHAR TCHAR
Either ANSICHAR or WIDECHAR, depending on whether the platform supports wide characters or the requir...
Definition Platform.h:1135
#define UE_API
Definition HttpConstants.h:7
Definition HttpConstants.h:13
static UE_API const TCHAR *const AUTH_BEARER
Definition HttpConstants.h:6
static UE_API const TCHAR *const VERSION_1_1
Definition HttpConstants.h:31
static UE_API const TCHAR *const VERB_GET
Definition HttpConstants.h:9
static UE_API const TCHAR *const MEDIATYPE_OCTET_STREAM
Definition HttpConstants.h:25
static UE_API const TCHAR *const HEADER_DATE
Definition HttpConstants.h:20
static UE_API const TCHAR *const VERB_POST
Definition HttpConstants.h:12
static UE_API const TCHAR *const HEADER_CONTENT_TYPE
Definition HttpConstants.h:19
static UE_API const TCHAR *const HEADER_CONTENT_LENGTH
Definition HttpConstants.h:18
static UE_API const TCHAR *const HEADER_ACCEPT_ENCODING
Definition HttpConstants.h:16
static UE_API const TCHAR *const HEADER_AUTHORIZATION
Definition HttpConstants.h:17
static UE_API const TCHAR *const MEDIATYPE_FORM_URLENCODED
Definition HttpConstants.h:24
static UE_API const TCHAR *const AUTH_BASIC
Definition HttpConstants.h:5
static UE_API const TCHAR *const MEDIAENCODING_GZIP
Definition HttpConstants.h:27
static UE_API const TCHAR *const HEADER_ACCEPT
Definition HttpConstants.h:15
static UE_API const TCHAR *const VERSION_2TLS
Definition HttpConstants.h:30
static UE_API const TCHAR *const VERB_DELETE
Definition HttpConstants.h:8
static UE_API const TCHAR *const VERB_PUT
Definition HttpConstants.h:13
static UE_API const TCHAR *const VERB_HEAD
Definition HttpConstants.h:10
static UE_API const TCHAR *const VERB_PATCH
Definition HttpConstants.h:11
static UE_API const TCHAR *const HEADER_USER_AGENT
Definition HttpConstants.h:21
static UE_API const TCHAR *const MEDIATYPE_JSON
Definition HttpConstants.h:23