Enum SerializeClassFlags
- Namespace
 - Stride.Core.Serialization
 
- Assembly
 - Stride.Core.dll
 
Specifies flags used when serializing reference types.
[Flags]
public enum SerializeClassFlags
  Fields
IsExternalIdentifiable = 8Specifies that the object is an IIdentifiable instance has not been serialized, and only its Id has been stored.
IsNull = 1Specifies that the object is null.
IsReference = 4Specifies that the object has already been serialized previously in the stream, and is only stored as an index.
IsTypeInfo = 2Specifies that additional type info is necessary and is stored in the stream.
None = 0Default value.