Navigation
API > API/Runtime > API/Runtime/Serialization > API/Runtime/Serialization/FCborStructDeserializerBackend
Description
Reads the specified POD Array property from the stream.
implementations will support only a Int8 or Byte array at the moment
Virtual Inheritance
- IStructDeserializerBackend::ReadPODArray → FCborStructDeserializerBackend::ReadPODArray
| Name | ReadPODArray |
| Type | function |
| Header File | /Engine/Source/Runtime/Serialization/Public/Backends/CborStructDeserializerBackend.h |
| Include Path | #include "Backends/CborStructDeserializerBackend.h" |
| Source | /Engine/Source/Runtime/Serialization/Private/Backends/CborStructDeserializerBackend.cpp |
virtual bool ReadPODArray
(
FArrayProperty * ArrayProperty,
void * Data
)
true on success, false if need to fall back to per element array serialization.
Parameters
| Name | Remarks |
|---|---|
| ArrayProperty | The array property to read into. |
| Data | The location of array to read the data into. |