Navigation
API > API/Runtime > API/Runtime/HTTP > API/Runtime/HTTP/FRequestPayload
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
size_t FillOutputBuffer
(
TArrayView< uint8 > OutputBuffer, |
Read part of the underlying request payload into an output buffer. | GenericPlatform/HttpRequestPayload.h | |
size_t FillOutputBuffer
(
void* OutputBuffer, |
Read part of the underlying request payload into an output buffer. | GenericPlatform/HttpRequestPayload.h |
FillOutputBuffer(TArrayView< uint8 >, size_t)
Description
Read part of the underlying request payload into an output buffer.
| Name | FillOutputBuffer |
| Type | function |
| Header File | /Engine/Source/Runtime/Online/HTTP/Public/GenericPlatform/HttpRequestPayload.h |
| Include Path | #include "GenericPlatform/HttpRequestPayload.h" |
size_t FillOutputBuffer
(
TArrayView < uint8 > OutputBuffer,
size_t SizeAlreadySent
)
Returns the number of bytes copied into OutputBuffer
Parameters
| Name | Remarks |
|---|---|
| OutputBuffer | the destination memory address where the payload should be copied |
| MaxOutputBufferSize | capacity of OutputBuffer in bytes |
| SizeAlreadySent | how much of payload has previously been sent. |
FillOutputBuffer(void *, size_t, size_t)
Description
Read part of the underlying request payload into an output buffer.
| Name | FillOutputBuffer |
| Type | function |
| Header File | /Engine/Source/Runtime/Online/HTTP/Public/GenericPlatform/HttpRequestPayload.h |
| Include Path | #include "GenericPlatform/HttpRequestPayload.h" |
size_t FillOutputBuffer
(
void * OutputBuffer,
size_t MaxOutputBufferSize,
size_t SizeAlreadySent
)
Returns the number of bytes copied into OutputBuffer
Parameters
| Name | Remarks |
|---|---|
| OutputBuffer | the destination memory address where the payload should be copied |
| MaxOutputBufferSize | capacity of OutputBuffer in bytes |
| SizeAlreadySent | how much of payload has previously been sent. |