Table of Contents

Class AssetPartCollectionSerializer<TAssetPartDesign, TAssetPart>

Namespace
Stride.Core.Assets
Assembly
Stride.Core.Assets.dll
public class AssetPartCollectionSerializer<TAssetPartDesign, TAssetPart> : DataSerializer<AssetPartCollection<TAssetPartDesign, TAssetPart>>, IDataSerializerGenericInstantiation where TAssetPartDesign : IAssetPartDesign<TAssetPart> where TAssetPart : IIdentifiable

Type Parameters

TAssetPartDesign
TAssetPart
Inheritance
DataSerializer<AssetPartCollection<TAssetPartDesign, TAssetPart>>
AssetPartCollectionSerializer<TAssetPartDesign, TAssetPart>
Implements
Inherited Members

Methods

EnumerateGenericInstantiations(SerializerSelector, IList<Type>)

Enumerates required DataSerializer required by this instance of DataSerializer.

public void EnumerateGenericInstantiations(SerializerSelector serializerSelector, IList<Type> genericInstantiations)

Parameters

serializerSelector SerializerSelector
genericInstantiations IList<Type>

Remarks

The code won't be executed, it will only be scanned for typeof() operands by the assembly processor. Null is authorized in enumeration (for now).

Initialize(SerializerSelector)

Initializes the specified serializer.

public override void Initialize(SerializerSelector serializerSelector)

Parameters

serializerSelector SerializerSelector

The serializer.

Remarks

This method should be thread-safe and OK to call multiple times.

PreSerialize(ref AssetPartCollection<TAssetPartDesign, TAssetPart>, ArchiveMode, SerializationStream)

Performs the first step of serialization or deserialization.

public override void PreSerialize(ref AssetPartCollection<TAssetPartDesign, TAssetPart> obj, ArchiveMode mode, SerializationStream stream)

Parameters

obj AssetPartCollection<TAssetPartDesign, TAssetPart>

The object to process.

mode ArchiveMode

The serialization mode.

stream SerializationStream

The stream to serialize or deserialize to.

Remarks

Typically, it will instantiate the object if [null], and if it's a collection clear it.

Serialize(ref AssetPartCollection<TAssetPartDesign, TAssetPart>, ArchiveMode, SerializationStream)

Serializes or deserializes the given object obj.

public override void Serialize(ref AssetPartCollection<TAssetPartDesign, TAssetPart> obj, ArchiveMode mode, SerializationStream stream)

Parameters

obj AssetPartCollection<TAssetPartDesign, TAssetPart>

The object to serialize or deserialize.

mode ArchiveMode

The serialization mode.

stream SerializationStream

The stream to serialize or deserialize to.