Сценарии
Редактировал(а) Alexandr Fokin 2024/12/24 14:59
Получение схемы из хранилища по id | public async Task GetSchemaAsync(int schemaId) { Confluent.SchemaRegistry.ISchemaRegistryClient client = new Confluent.SchemaRegistry.CachedSchemaRegistryClient( new Confluent.SchemaRegistry.SchemaRegistryConfig { Url = @"http://127.0.0.1:8081" } ); var schema = await client.GetSchemaAsync(schemaId); } |