public KafkaJsonSerializer()

in csharp/json/src/KafkaJsonSerializer.cs [32:44]


        public KafkaJsonSerializer(string schemaRegistryUrl, TokenCredential credential, string schemaGroup, bool autoRegisterSchemas = false)
        {
            this.schemaRegistryClient = new SchemaRegistryClient(schemaRegistryUrl, credential, new SchemaRegistryClientOptions
            {
                Diagnostics =
                {
                    ApplicationId = "net-json-kafka-ser-1.0"
                }
            });
            this.autoRegisterSchemas = autoRegisterSchemas;
            this.schemaGroup = schemaGroup;
            this.schemaGenerator = new JsonSchemaGenerator();
        }