Class DictionaryReader<TKey, TValue>
This type is not meant to be used directly by MonoGame users. Its purpose is to allow to work-around AOT issues when loading assets with the ContentManager fail due to the absence of runtime-reflection support in that context (i.e. missing types due to trimming and inability to statically discover them at compile-time). If ContentManager.Load() throws an NotSupportedExeception, the message should provide insights on how to fix it.
public class DictionaryReader<TKey, TValue> : ContentTypeReader<Dictionary<TKey, TValue>>
  Type Parameters
TKey- This type is not meant to be used directly by MonoGame users. Its purpose is to allow to work-around AOT issues when loading assets with the ContentManager fail due to the absence of runtime-reflection support in that context (i.e. missing types due to trimming and inability to statically discover them at compile-time). If ContentManager.Load() throws an NotSupportedExeception, the message should provide insights on how to fix it.
 TValue- This type is not meant to be used directly by MonoGame users. Its purpose is to allow to work-around AOT issues when loading assets with the ContentManager fail due to the absence of runtime-reflection support in that context (i.e. missing types due to trimming and inability to statically discover them at compile-time). If ContentManager.Load() throws an NotSupportedExeception, the message should provide insights on how to fix it.
 
- Inheritance
 - 
      
      
      ContentTypeReader<Dictionary<TKey, TValue>>DictionaryReader<TKey, TValue>
 
- Inherited Members
 
Constructors
DictionaryReader()
public DictionaryReader()
  Properties
CanDeserializeIntoExistingObject
public override bool CanDeserializeIntoExistingObject { get; }
  Property Value
Methods
Initialize(ContentTypeReaderManager)
protected override void Initialize(ContentTypeReaderManager manager)
  Parameters
managerContentTypeReaderManager
Read(ContentReader, Dictionary<TKey, TValue>)
protected override Dictionary<TKey, TValue> Read(ContentReader input, Dictionary<TKey, TValue> existingInstance)
  Parameters
inputContentReaderexistingInstanceDictionary<TKey, TValue>
Returns
- Dictionary<TKey, TValue>