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
Type Name Description
SerializationContext context

The serialization context.

string recordType

The type name of the data being written.

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