DictionarySerializer<TKey, TValue> Class
Namespace: Stride.Core.Serialization.SerializersAssembly: Stride.Core.dll
Data serializer for Dictionary{TKey, TValue}.
[DataSerializerGlobal(typeof(DictionarySerializer<, >), typeof(Dictionary<, >), DataSerializerGenericMode.GenericArguments, false, false)]
public class DictionarySerializer<TKey, TValue> : DataSerializer<Dictionary<TKey, TValue>>, IDataSerializerGenericInstantiation
Type Parameters
Name | Description |
---|---|
TKey | The type of the key in Dictionary{TKey, TValue}. |
TValue | The type of the value in Dictionary{TKey, TValue}. |
Name | Description | |
---|---|---|
Methods | ||
EnumerateGenericInstantiations(SerializerSelector, IList<Type>) | Enumerates required DataSerializer required by this instance of DataSerializer. |
|
Initialize(SerializerSelector) | Initializes the specified serializer. |
|
PreSerialize(ref Dictionary<TKey, TValue>, ArchiveMode, SerializationStream) | Performs the first step of serialization or deserialization. |
|
Serialize(ref Dictionary<TKey, TValue>, ArchiveMode, SerializationStream) | Serializes or deserializes the given object |
Methods
EnumerateGenericInstantiations(SerializerSelector, IList<Type>)
Enumerates required DataSerializer required by this instance of DataSerializer.
public void EnumerateGenericInstantiations(SerializerSelector serializerSelector, IList<Type> genericInstantiations)
Parameters
Type | Name | Description |
---|---|---|
SerializerSelector | serializerSelector | |
System.Collections.Generic.IList<System.Type> | genericInstantiations |
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
Type | Name | Description |
---|---|---|
SerializerSelector | serializerSelector | The serializer. |
Overrides
Remarks
This method should be thread-safe and OK to call multiple times.
PreSerialize(ref Dictionary<TKey, TValue>, ArchiveMode, SerializationStream)
Performs the first step of serialization or deserialization.
public override void PreSerialize(ref Dictionary<TKey, TValue> obj, ArchiveMode mode, SerializationStream stream)
Parameters
Type | Name | Description |
---|---|---|
System.Collections.Generic.Dictionary<TKey, TValue> | obj | |
ArchiveMode | mode | The serialization mode. |
SerializationStream | stream | The stream to serialize or deserialize to. |
Overrides
Remarks
Typically, it will instantiate the object if [null], and if it's a collection clear it.
Serialize(ref Dictionary<TKey, TValue>, ArchiveMode, SerializationStream)
Serializes or deserializes the given object obj
.
public override void Serialize(ref Dictionary<TKey, TValue> obj, ArchiveMode mode, SerializationStream stream)
Parameters
Type | Name | Description |
---|---|---|
System.Collections.Generic.Dictionary<TKey, TValue> | obj | |
ArchiveMode | mode | The serialization mode. |
SerializationStream | stream | The stream to serialize or deserialize to. |