DictionaryInterfaceImplementerSerializerTDictionary, TKey, TValueWithKeySerializer Method |
Returns a serializer that has been reconfigured with the specified key serializer.
Namespace:
MongoDB.Bson.Serialization.Serializers
Assembly:
MongoDB.Bson (in MongoDB.Bson.dll) Version: 2.22.0+75246110ed1247226fcc7f8eb2c54ffab745693e
Syntax public DictionaryInterfaceImplementerSerializer<TDictionary, TKey, TValue> WithKeySerializer(
IBsonSerializer<TKey> keySerializer
)
Public Function WithKeySerializer (
keySerializer As IBsonSerializer(Of TKey)
) As DictionaryInterfaceImplementerSerializer(Of TDictionary, TKey, TValue)
member WithKeySerializer :
keySerializer : IBsonSerializer<'TKey> -> DictionaryInterfaceImplementerSerializer<'TDictionary, 'TKey, 'TValue>
Parameters
- keySerializer
- Type: MongoDB.Bson.SerializationIBsonSerializerTKey
The key serializer.
Return Value
Type:
DictionaryInterfaceImplementerSerializerTDictionary,
TKey,
TValueThe reconfigured serializer.
See Also