confluent-kafka-dotnet
Show / Hide Table of Contents

Delegate AsyncSubjectNameStrategyDelegate

Asynchronously construct the subject name under which the schema associated with a record should be registered in Schema Registry.

Namespace: Confluent.SchemaRegistry
Assembly: Confluent.SchemaRegistry.dll
Syntax
public delegate Task<string> AsyncSubjectNameStrategyDelegate(SerializationContext context, string recordType)
Parameters
TypeNameDescription
SerializationContextcontext

The serialization context.

stringrecordType

The type name of the data being written.

Returns
TypeDescription
Task<string>Asynchronously construct the subject name under which the schema associated with a record should be registered in Schema Registry.
In this article