Navigation
API > API/Runtime > API/Runtime/Core > API/Runtime/Core/Serialization > API/Runtime/Core/Serialization/FCbWriter
References
| Module | Core |
| Header | /Engine/Source/Runtime/Core/Private/Serialization/CompactBinaryWriter.cpp |
| Include | #include "Serialization/CompactBinaryWriter.cpp" |
Syntax
enum EStateFlags
&123;
None = 0,
Name = 1 << 0,
Field = 1 << 1,
Array = 1 << 2,
Object = 1 << 3,
&125;
Values
| Name | Description |
|---|---|
| None | |
| Name | Whether a name has been written for the current field. |
| Field | Whether this state is in the process of writing a field. |
| Array | Whether this state is for array fields. |
| Object | Whether this state is for object fields. |