public sealed class ConverterRegistry : IEnumerable
Registry of custom converters. This is used to avoid requiring Firestore-specific attributes on types
which may be intended to be non-Firestore-specific. The registry may be specified when creating a FirestoreDb
via ConverterRegistry.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Hard to understand","hardToUnderstand","thumb-down"],["Incorrect information or sample code","incorrectInformationOrSampleCode","thumb-down"],["Missing the information/samples I need","missingTheInformationSamplesINeed","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2025-04-01 UTC."],[[["The `ConverterRegistry` class allows you to register custom converters for types that don't have Firestore-specific attributes."],["This registry is used when creating a `FirestoreDb` instance, allowing for type conversions within Firestore operations."],["The `Add\u003cT\u003e(IFirestoreConverter\u003cT\u003e)` method enables the addition of a new converter to the registry, associating it with a specific type."],["The `ConverterRegistry` implements `IEnumerable`, providing a way to enumerate through the registered converters."],["The `ConverterRegistry` allows the custom conversion of data to and from Firestore in an instance of `FirestoreDb` by creating an instance of `ConverterRegistry` during the construction of the `FirestoreDb` with the `FirestoreDbBuilder` class."]]],[]]