in csharp/avro/src/KafkaAvroAsyncSerializer.cs [26:37]
public KafkaAvroAsyncSerializer(string schemaRegistryUrl, TokenCredential credential, string schemaGroup, Boolean autoRegisterSchemas = false)
{
this.serializer = new SchemaRegistryAvroSerializer(
new SchemaRegistryClient(
schemaRegistryUrl,
credential),
schemaGroup,
new SchemaRegistryAvroSerializerOptions()
{
AutoRegisterSchemas = autoRegisterSchemas
});
}