DictionaryInterfaceImplementerSerializerTDictionaryWithDictionaryRepresentation Method (DictionaryRepresentation, IBsonSerializer, IBsonSerializer) | 
 
            Returns a serializer that has been reconfigured with the specified dictionary representation and key value serializers.
            
 
    Namespace: 
   MongoDB.Bson.Serialization.Serializers
    Assembly:
   MongoDB.Bson (in MongoDB.Bson.dll) Version: 2.19.1+3a2a09dd959482f665ffbb5df2557ec541597af4
Syntaxpublic DictionaryInterfaceImplementerSerializer<TDictionary> WithDictionaryRepresentation(
	DictionaryRepresentation dictionaryRepresentation,
	IBsonSerializer keySerializer,
	IBsonSerializer valueSerializer
)
Public Function WithDictionaryRepresentation ( 
	dictionaryRepresentation As DictionaryRepresentation,
	keySerializer As IBsonSerializer,
	valueSerializer As IBsonSerializer
) As DictionaryInterfaceImplementerSerializer(Of TDictionary)
member WithDictionaryRepresentation : 
        dictionaryRepresentation : DictionaryRepresentation * 
        keySerializer : IBsonSerializer * 
        valueSerializer : IBsonSerializer -> DictionaryInterfaceImplementerSerializer<'TDictionary> 
Parameters
- dictionaryRepresentation
 - Type: MongoDB.Bson.Serialization.OptionsDictionaryRepresentation
The dictionary representation. - keySerializer
 - Type: MongoDB.Bson.SerializationIBsonSerializer
The key serializer. - valueSerializer
 - Type: MongoDB.Bson.SerializationIBsonSerializer
The value serializer. 
Return Value
Type: 
DictionaryInterfaceImplementerSerializerTDictionaryThe reconfigured serializer.
See Also