Navigation
API > API/Runtime > API/Runtime/Serialization > API/Runtime/Serialization/IStructDeserializerBackend
Description
Reads the specified POD Array property from the stream.
implementations will support only a Int8 or Byte array at the moment
Derived Overrides
| Name | ReadPODArray |
| Type | function |
| Header File | /Engine/Source/Runtime/Serialization/Public/IStructDeserializerBackend.h |
| Include Path | #include "IStructDeserializerBackend.h" |
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. |